Some more code cleanup, converting spaces to tabs. Redid ITKit.h framework
[ITKit.git] / Showcase / Controller.h
old mode 100755 (executable)
new mode 100644 (file)
index 18ea801..3931837
@@ -1,8 +1,18 @@
-#import <ITKit/ITKit.h>
+/*
+ *     ITKitShowcase
+ *     Controller.h
+ *
+ *     Copyright (c) 2005 by iThink Software.
+ *     All Rights Reserved.
+ *
+ *     $Id$
+ *
+ */
+
 #import <Cocoa/Cocoa.h>
+#import <ITKit/ITKit.h>
 
-@interface Controller : NSObject
-{
+@interface Controller : NSObject {
     IBOutlet NSWindow *window;
     
     // ITStatusItem Support
@@ -26,6 +36,8 @@
     IBOutlet ITTextField *testTextField;
 
     // ITTransientStatusWindow Support
+    IBOutlet NSPopUpButton      *entryEffectPopup;
+    IBOutlet NSPopUpButton      *exitEffectPopup;
     ITIconAndTextStatusWindow   *statusWindow;
     IBOutlet NSTextView         *swSampleTextView;
     IBOutlet NSPopUpButton      *swVanishModePopup;
@@ -35,6 +47,9 @@
     IBOutlet NSTextField        *swShadowSaturation;
     IBOutlet NSSlider           *swEntrySpeedSlider;
     IBOutlet NSSlider           *swExitSpeedSlider;
+    
+    // ITMultilineTextFieldCell Support
+    IBOutlet NSTableView        *tableView;
 }
 
 // ITStatusItem Support
@@ -47,6 +62,7 @@
 - (IBAction)toggleCastsShadow:(id)sender;
 
 // ITTransientStatusWindow Support
+- (void)populateEffectPopups;
 - (IBAction)buildStatusWindow:(id)sender;
 - (IBAction)toggleStatusWindow:(id)sender;
 - (IBAction)changeWindowSetting:(id)sender;