Sizing is now in, with appropriate UI. Still working on the last of the positioning...
[MenuTunes.git] / StatusWindow.h
index 8432e05..c956be7 100755 (executable)
 #import <ITKit/ITKit.h>
 
 
-#define SW_PAD            24.00
-#define SW_SPACE          24.00
-#define SW_MINW          211.00
-#define SW_BORDER         32.00
-#define SW_METER_PAD       4.00
-#define SW_BUTTON_PAD_R   30.00
-#define SW_BUTTON_PAD_B   24.00
-#define SW_BUTTON_DIV     12.00
-#define SW_BUTTON_EXTRA_W  8.00
-#define SW_SHADOW_SAT      1.25
+typedef enum _StatusWindowSizing {
+    StatusWindowRegular,
+    StatusWindowSmall,
+    StatusWindowMini
+} StatusWindowSizing;
+
 
 @interface StatusWindow : ITTransientStatusWindow {
-    NSImage  *_image;
-    BOOL      _locked;
+    NSImage            *_image;
+    BOOL                _locked;
+    StatusWindowSizing  _sizing;
 }
 
 - (void)setImage:(NSImage *)newImage;
 - (void)setLocked:(BOOL)flag;
+- (void)setSizing:(StatusWindowSizing)newSizing;
 
 - (void)buildTextWindowWithString:(NSString *)text;
 - (void)buildMeterWindowWithCharacter:(NSString *)character
@@ -45,6 +43,6 @@
                      alternateButton:(NSString *)title
                               target:(id)target
                        defaultAction:(SEL)okAction
-                     alternateAction:(SEL)alternateAction;           
+                     alternateAction:(SEL)alternateAction;
                          
 @end