Line | |
---|
1 | #ifndef MGCOSY_H
|
---|
2 | #define MGCOSY_H
|
---|
3 |
|
---|
4 | #ifndef ROOT_TGFrame
|
---|
5 | #include <TGFrame.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | //#ifndef ROOT_TOrdCollection
|
---|
9 | //#include <TOrdCollection.h>
|
---|
10 | //#endif
|
---|
11 |
|
---|
12 | #ifndef ROOT_TGWidget
|
---|
13 | #include <TGWidget.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include <iostream.h>
|
---|
17 |
|
---|
18 | class TGLabel;
|
---|
19 | class TGPopupMenu;
|
---|
20 | class TGMenuBar;
|
---|
21 | class TGHorizontal3DLine;
|
---|
22 | class TGLayoutHints;
|
---|
23 | class MsgQueue;
|
---|
24 | class TIterator;
|
---|
25 | class MGImage;
|
---|
26 | class MGList;
|
---|
27 | class MGCoordinates;
|
---|
28 |
|
---|
29 | class MGCosy : public TGMainFrame
|
---|
30 | {
|
---|
31 | private:
|
---|
32 |
|
---|
33 | //
|
---|
34 | // Create a main frame with a number of different buttons.
|
---|
35 | //
|
---|
36 | TGLayoutHints *fLayMenuBar;
|
---|
37 | TGLayoutHints *fLayMenuItem;
|
---|
38 |
|
---|
39 | MGList *fList;
|
---|
40 |
|
---|
41 | TGLabel **fLabel1;
|
---|
42 | TGLabel **fLabel2;
|
---|
43 | TGLabel **fLabel3;
|
---|
44 |
|
---|
45 | MGCoordinates *fCoord;
|
---|
46 |
|
---|
47 | MsgQueue *fQueue;
|
---|
48 |
|
---|
49 | void CreateMenu();
|
---|
50 | void CreateLabel();
|
---|
51 | void CreateButton();
|
---|
52 |
|
---|
53 | public:
|
---|
54 | MGCosy(MsgQueue *q, const TGWindow *p, UInt_t w, UInt_t h);
|
---|
55 | ~MGCosy();
|
---|
56 |
|
---|
57 | void CloseWindow();
|
---|
58 |
|
---|
59 | TGLabel **GetLabel1() { return fLabel1; }
|
---|
60 | TGLabel **GetLabel2() { return fLabel2; }
|
---|
61 | TGLabel **GetLabel3() { return fLabel3; }
|
---|
62 |
|
---|
63 | Bool_t ProcessMessage(Long_t msg, Long_t mp1, Long_t mp2);
|
---|
64 | };
|
---|
65 |
|
---|
66 | #endif
|
---|
67 |
|
---|
68 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.