#import "Controller.h"
#import "ITTransientStatusWindow.h"
#import "ITTextField.h"
+#import "ITBevelView.h"
#import "ITCutWindowEffect.h"
#import "ITDissolveWindowEffect.h"
#import "ITSlideHorizontallyWindowEffect.h"
[self createStatusItem];
[testTextField setCastsShadow:YES];
[tabView setAllowsDragging:YES];
+ [bevelView setBevelDepth:10];
statusWindow = [ITTransientStatusWindow sharedWindow];
[statusWindow setEntryEffect:[[ITCutWindowEffect alloc] initWithWindow:statusWindow]];
[statusWindow setExitEffect:[[ITDissolveWindowEffect alloc] initWithWindow:statusWindow]];
}
[statusItem setMenu:statusItemMenu];
+
+ [statusItemMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★★"]
+ action:nil
+ keyEquivalent:@""];
}
- (void)removeStatusItem
}
+/*************************************************************************/
+#pragma mark -
+#pragma mark ITBevelView SUPPORT
+/*************************************************************************/
+
+- (IBAction)changeBevelViewSetting:(id)sender
+{
+ [bevelView setBevelDepth:[sender intValue]];
+}
+
/*************************************************************************/
#pragma mark -
#pragma mark NSWindow DELEGATE METHODS