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 |
|
---|
12 | class TList;
|
---|
13 |
|
---|
14 | class MMars : public TGMainFrame
|
---|
15 | {
|
---|
16 | private:
|
---|
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 |
|
---|
29 | public:
|
---|
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.