]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/TGCommandPlugin.h
Dummy methods DefineParticle required by the interface added.
[u/mrichter/AliRoot.git] / EVE / Reve / TGCommandPlugin.h
1 #ifndef ROOT_TGCommandPlugin
2 #define ROOT_TGCommandPlugin
3
4 #ifndef ROOT_TGFrame
5 #include "TGFrame.h"
6 #endif
7
8 class TGLabel;
9 class TGComboBox;
10 class TGTextEntry;
11 class TGTextBuffer;
12 class TGTextView;
13
14 class TGCommandPlugin : public TGMainFrame {
15
16 protected:
17    Int_t              fPid;               // current process id
18    TGHorizontalFrame *fHf;
19    TGLabel           *fLabel;             // "command :" label
20    TGComboBox        *fComboCmd;          // commands combobox
21    TGTextEntry       *fCommand;           // command text entry widget
22    TGTextBuffer      *fCommandBuf;        // command text buffer
23    TGTextView        *fStatus;
24
25 public:
26
27    TGCommandPlugin(const TGWindow *p, UInt_t w, UInt_t h);
28    virtual ~TGCommandPlugin();
29
30    void     CheckRemote(const char * /*str*/);
31    void     HandleCommand();
32
33    ClassDef(TGCommandPlugin, 0)
34 };
35
36 #endif