Main Page   Class Hierarchy   Compound List   File List   Compound Members  

gdsapp.h

00001 /*
00002 Program                 GDSAPP.H
00003 Purpose                 A postprocessing program for MIC
00004 Programmers             R. Spekreijse & N. Noorlander
00005 Last Update             22-09-1995
00006 */
00007 
00008 #ifndef _GDSAPP_H
00009 #define _GDSAPP_H
00010 
00011 #ifdef __GNUG__
00012 #pragma interface
00013 #endif
00014 
00015 #include "mainwin.h"
00016 #include "winmess.h"
00017 
00018 extern StatusBar        *_statusbar;
00019 extern GDSMessage       *_messagehandler;
00020 
00021 class GDSMainWindow;
00022 
00023 
00024 class GDS_application : public wxApp
00025 {
00026         public:
00027            GDS_application();
00028                 bool                    OnInit(void);
00029       int                               OnExit(void);
00030                 WINMessage*     _win_messagehandler;
00031 
00032                 virtual void    InitMainWindow();
00033                 GDSMainWindow*  GetMainWindow();
00034 
00035         protected:
00036                 wxMenuBar               *SetupMenuBar();
00037                 GDSMainWindow   *_GDSMainWindow;
00038 };
00039 DECLARE_APP(GDS_application)
00040 
00041 #endif
00042 
gdsapp.h Source File -- Thu Nov 28 21:24:56 2002 -- 28 Nov 2002 -- 1.2.18 -- -- . -- Main Page