source: trunk/MagicSoft/Mars/mmain/MMars.h@ 958

Last change on this file since 958 was 946, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 653 bytes
Line 
1#ifndef MMARS_H
2#define MMARS_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7
8#ifndef ROOT_TGFrame
9#include <TGFrame.h>
10#endif
11
12class TList;
13
14class MMars : public TGMainFrame
15{
16private:
17
18 TList *fList;
19
20 const TGPicture *fPic1;
21 const TGPicture *fPic2;
22
23 void CreateMenuBar();
24 void CreateTopFrame(TGHorizontalFrame *top);
25 void CreateBottomFrame(TGHorizontalFrame *low);
26
27 void DisplWarning(const char *txt);
28
29public:
30 MMars(UInt_t w=400, UInt_t h=500);
31
32 ~MMars();
33
34 void CloseWindow();
35
36 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
37
38 ClassDef(MMars, 0) // GUI: Mars - the main window
39};
40
41#endif
42
43
Note: See TracBrowser for help on using the repository browser.