Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITKeyCombo.h
old mode 100755 (executable)
new mode 100644 (file)
index 5bda4c5..32eb0ea
@@ -1,28 +1,27 @@
-//
-//  ITKeyCombo.h
-//
-//  Created by Quentin Carnicelli on Sat Aug 02 2003.
-//  Copyright (c) 2003 iThink Software. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-
-
-@interface ITKeyCombo : NSObject <NSCopying>
-{
-       int     mKeyCode;
-       int     mModifiers;
+/*
+ *     ITKit
+ *     ITKeyCombo.h
+ *
+ *     Copyright (c) 2005 iThink Software
+ *
+ */
+
+#import <Cocoa/Cocoa.h>
+
+@interface ITKeyCombo : NSObject <NSCopying> {
+       int mKeyCode;
+       int mModifiers;
 }
 
 + (id)clearKeyCombo;
-+ (id)keyComboWithKeyCode: (int)keyCode modifiers: (int)modifiers;
-+ (id)keyComboWithPlistRepresentation: (id)plist;
-- (id)initWithKeyCode: (int)keyCode modifiers: (int)modifiers;
++ (id)keyComboWithKeyCode:(int)keyCode modifiers:(int)modifiers;
++ (id)keyComboWithPlistRepresentation:(id)plist;
+- (id)initWithKeyCode:(int)keyCode modifiers:(int)modifiers;
 
-- (id)initWithPlistRepresentation: (id)plist;
+- (id)initWithPlistRepresentation:(id)plist;
 - (id)plistRepresentation;
 
-- (BOOL)isEqual: (ITKeyCombo*)combo;
+- (BOOL)isEqual:(ITKeyCombo *)combo;
 
 - (int)keyCode;
 - (int)modifiers;
@@ -34,6 +33,6 @@
 
 @interface ITKeyCombo (UserDisplayAdditions)
 
-- (NSString*)description;
+- (NSString *)description;
 
 @end
\ No newline at end of file