Changed the NSMenu category from NSMenuItem * to id <NSMenuItem>
[ITKit.git] / ITWindowEffect.h
index bd5985b..9b6c0bd 100755 (executable)
@@ -3,8 +3,8 @@
  *  ITWindowEffect
  *    Protocal and abstract superclass for performing effects on windows.
  *
- *  Original Author : Matt Judy <mjudy@ithinksw.com>
- *   Responsibility : Matt Judy <mjudy@ithinksw.com>
+ *  Original Author : Matthew Judy <mjudy@ithinksw.com>
+ *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
  *
  *  Copyright (c) 2002 - 2003 iThink Software.
  *  All Rights Reserved
@@ -30,6 +30,9 @@ typedef enum {
 
 
 @protocol ITWindowEffect
++ (NSString *)effectName;
++ (NSDictionary *)supportedPositions;
++ (unsigned int)listOrder;
 - (void)performAppear;
 - (void)performVanish;
 - (void)cancelAppear;
@@ -57,7 +60,7 @@ typedef enum {
     BOOL                       __shouldReleaseWhenIdle;
 }
 
-+ (NSArray *)effectsInfo;
++ (NSArray *)effectClasses;
 
 // Designated initializer
 - (id)initWithWindow:(NSWindow *)window;