Fairly large ITTSW checkin.
[ITKit.git] / Showcase / Controller.m
index 16b5c0b..f2680bd 100755 (executable)
@@ -2,6 +2,8 @@
 #import "ITTransientStatusWindow.h"
 #import "ITTextField.h"
 #import "ITPivotWindowEffect.h"
+#import "ITDissolveWindowEffect.h"
+#import "ITCutWindowEffect.h"
 
 #define SW_PAD    24.0
 #define SW_SPACE  24.0
 
     [[statusWindow contentView] setNeedsDisplay:YES];
 
-    [statusWindow setEntryEffect:[[ITPivotWindowEffect alloc] initWithWindow:statusWindow]];
-    [statusWindow setExitEffect:[[ITPivotWindowEffect alloc] initWithWindow:statusWindow]];
+//    [statusWindow setEntryEffect:[[ITPivotWindowEffect alloc] initWithWindow:statusWindow]];
+//    [statusWindow setExitEffect:[[ITPivotWindowEffect alloc] initWithWindow:statusWindow]];
+    [statusWindow setEntryEffect:[[ITCutWindowEffect alloc]      initWithWindow:statusWindow]];
+    [statusWindow setExitEffect: [[ITDissolveWindowEffect alloc] initWithWindow:statusWindow]];
 }
 
 - (IBAction)toggleStatusWindow:(id)sender