home *** CD-ROM | disk | FTP | other *** search
- #import "MultApp.h"
-
- /* Version 1.0b Apr-19-92 Third Public Release */
-
- @interface Briefcase: MultApp
- {
- int timeDelay; /* time delay before window update */
- }
-
- /* Public Methods */
-
- - (int)delay;
- - setDelay:(int)value;
-
- /* Target/Action Methods */
-
- - addFile:sender;
-
- /* Menu updating method */
-
- - (BOOL)validateCommand:menuCell;
-
- /* Application Delegate Methods */
-
- - appWillInit:sender;
- - appWillTerminate:sender;
- - appDidBecomeActive:sender;
-
- /* Listener Methods */
-
- // Drag & Drop
- - (int)iconEntered:(int)windowNum at:(double)x :(double)y iconWindow:(int)iconWindowNum iconX:(double)iconX iconY:(double)iconY iconWidth:(double)iconWidth iconHeight:(double)iconHeight pathList:(const char *)pathList;
- - (int)iconExitedAt:(double)x :(double)y;
- - (int)iconReleasedAt:(double)x :(double)y ok:(int *)flag;
-
- @end
-