summaryrefslogtreecommitdiff
path: root/QSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h
diff options
context:
space:
mode:
authorRob McBroom <github@skurfer.com>2014-02-17 14:36:23 -0500
committerRob McBroom <github@skurfer.com>2014-02-17 14:36:23 -0500
commit0cad0c9c58dc4386e95c2e2968ac376c68be96be (patch)
treee9866dcc8f3eade9e0edba0ce80aef7297e89337 /QSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h
parentaaff46c79008d6f39502e02ed7e7ccc2408828e4 (diff)
project updates, version bump
Diffstat (limited to 'QSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h')
-rwxr-xr-xQSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/QSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h b/QSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h
deleted file mode 100755
index 511d37f..0000000
--- a/QSFoundation.framework/Versions/A/PrivateHeaders/NDHotKeyControl.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*!
- @header NDHotKeyControl.h
- @abstract Header file for a subclass of NSTextField for getting hot key combinations from the user.
- @discussion The <tt>NDHotKeyControl</tt> can be used to get a <tt>NDHotKeyEvent</tt> for the last key combination pressed by the user.
-
- Created by Nathan Day on Wed Mar 05 2003.
- Copyright (c) 2002 Nathan Day. All rights reserved.
- */
-
-#import <AppKit/AppKit.h>
-
-@class NDHotKeyEvent;
-
-/*!
- @class NDHotKeyControl
- @abstract Subclass of NSTextField for getting hot key combinations from the user.
- @discussion The <tt>NDHotKeyControl</tt> can be used to get a <tt>NDHotKeyEvent</tt> for the last key combination pressed by the user.
- */
-@interface NDHotKeyControl : NSTextField
-{
-@private
- unsigned short keyCode;
- unichar character;
- unsigned long modifierFlags;
-}
-
-/*!
- @method keyCode
- @abstract Get key code.
- @discussion Returns the key code for the last key combination the user pressed while the reciever was active.
- @result A <tt>unsigned short</tt> containing key code.
- */
-- (unsigned short)keyCode;
-
-/*!
- @method character
- @abstract Get unicode character.
- @discussion Returns the unicode character for the last key combination the user pressed while the reciever was active.
- @result A <tt>unichar</tt> containing character.
- */
-- (unichar)character;
-
-/*!
- @method modifierFlags
- @abstract Get modifer flags.
- @discussion Returns the modifer flags for the last key combination the user pressed while the reciever was active.
- @result A <tt>unsigned long</tt> containing modifer flags.
- */
-- (unsigned long)modifierFlags;
-
-/*!
- @method hotKeyEvent
- @abstract Get <tt>NDHotKeyEvent</tt>
- @discussion Returns the <tt>NDHotKeyEvent</tt> instance for the last key combination the user pressed while the reciever was active. The <tt>NDHotKeyEvent</tt> returned will either be one that has already been created or a newly created one otherwise.
- @result A <tt>NDHotKeyEvent</tt> for the hot key event.
- */
-- (NDHotKeyEvent *)hotKeyEvent;
-
-@end