Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/appkit/event/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ impl Event {
characters.to_string()
}

/// The characters associated with a key-up or key-down event as if no modifier key (except for Shift) applies.
pub fn characters_no_mods(&self) -> String {
// @TODO: Check here if key event, invalid otherwise.
// @TODO: Figure out if we can just return &str here, since the Objective-C side
// should... make it work, I think.
let characters = NSString::retain(unsafe { msg_send![&*self.0, charactersIgnoringModifiers] });

characters.to_string()
}

/// An integer bit field that indicates the pressed modifier keys
pub fn modifier_flags(&self) -> EventModifierBitFlag {
let flags: NSUInteger = unsafe { msg_send![&*self.0, modifierFlags] };
Expand Down