home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-30 | 1.0 KB | 48 lines | [TEXT/MMCC] |
- // CAboutDialog.h -- dialog class
- // Created 01/01/95 12:01 PM by AppMaker
-
- #pragma once
-
- #include <LDialogBox.h>
- #define cmd_AboutDialog 'Abog'
-
- class LStream;
-
- class LStdButton;
-
-
-
- //----------
- class CAboutDialog : public LDialogBox {
- public: // these comprise the programming interface for using the dialog
- static CAboutDialog* CreateAboutDialog (LCommander *inSuperCommander);
-
-
- public: // these comprise the implementation
- static CAboutDialog* CreateAboutDialogStream (LStream *inStream);
-
- CAboutDialog();
- CAboutDialog (LStream *inStream);
- virtual ~CAboutDialog();
-
-
- virtual void ListenToMessage (MessageT inMessage,
- void *ioParam);
-
- virtual Boolean ObeyCommand (CommandT inCommand,
- void *ioParam = nil);
- virtual void FindCommandStatus (CommandT inCommand,
- Boolean &outEnabled,
- Boolean &outUsesMark,
- Char16 &outMark,
- Str255 outName);
- virtual Boolean FocusDraw();
-
- protected:
- virtual void FinishCreateSelf();
-
- protected:
- LStdButton *mOKButton;
-
- };
-