home *** CD-ROM | disk | FTP | other *** search
- // Program : EXPDEMO.H
- // Author : Eric Woodruff, CIS ID: 72134,1150
- // Updated : Wed 08/25/93 09:37:01
- // Note : Copyright 1993, Eric Woodruff, All rights reserved
- // Compiler: Borland C++ 3.1
- //
- // Header file for the demo.
- //
-
- const int
- cmAboutCmd = 100,
- cmScreenSize = 101,
- cmDemo1 = 102,
- cmDemo2 = 103,
- cmDemo3 = 104,
- cmDemo4 = 105,
- cmCloseTileable = 106;
-
- // ****************************************************************************
- // The demo application class
- class TMyApplication : public TApplication
- {
- public:
- TMyApplication(void);
-
- static TMenuBar *initMenuBar(TRect r);
- static TStatusLine *initStatusLine(TRect r);
-
- virtual void handleEvent(TEvent &event);
-
- private:
- void Demo1(void), Demo2(void);
- };
-