Added a disable/enable method to the hotkey center
[ITKit.git] / ITKeyComboPanel.h
index fbe18aa..3df295a 100755 (executable)
@@ -1,24 +1,31 @@
-//
-//  ITKeyComboPanel.h
+/*
+ *     ITKit
+ *  ITKeyComboPanel
+ *
+ *  Original Author : Quentin Carnicelli <...>
+ *   Responsibility : Kent Sutherland <kent.sutherland@ithinksw.com>
+ *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
+ *
+ *  Copyright (c) 2002 - 2003 iThink Software.
+ *  All Rights Reserved
+ *
+ */
 
-//
-//  Created by Quentin Carnicelli on Sun Aug 03 2003.
-//  Copyright (c) 2003 iThink Software. All rights reserved.
-//
 
 #import <AppKit/AppKit.h>
 
+
 @class ITKeyBroadcaster;
 @class ITKeyCombo;
 @class ITHotKey;
 
+
 @interface ITKeyComboPanel : NSWindowController
 {
        IBOutlet NSTextField*           mTitleField;
        IBOutlet NSTextField*           mComboField;
        IBOutlet ITKeyBroadcaster*      mKeyBcaster;
 
-       NSString*                               mTitleFormat;
        NSString*                               mKeyName;
        ITKeyCombo*                             mKeyCombo;
 }
@@ -37,4 +44,6 @@
 - (IBAction)ok: (id)sender;
 - (IBAction)cancel: (id)sender;
 - (IBAction)clear: (id)sender;
+
+
 @end