home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-31 | 499 b | 23 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All Rights reserved
-
- #ifndef __ACTIONHANDLER_H
- #define __ACTIONHANDLER_H
-
- #include <Types.h>
-
- class MActionHandler {
- protected:
- Boolean mActive;
- MActionHandler *mSuperHandler;
- virtual SInt8 MakeInactive();
- static void OpenDeskAcc( UInt32 action );
- public:
- static MActionHandler *sCurHandler;
- MActionHandler( MActionHandler* );
- virtual Boolean SetSuperHandler( MActionHandler* );
- virtual SInt8 HandleAction( UInt32 );
- virtual SInt8 MakeActive();
- };
-
- #endif