00001
00002
00003
00004
00005
00006
00007
00008 #ifndef EVDB_GOTODIALOG_H
00009 #define EVDB_GOTODIALOG_H
00010 #include "TQObject.h"
00011 #include "RQ_OBJECT.h"
00012 #include "TGFrame.h"
00013
00014 class TGButton;
00015 class TGLabel;
00016 class TGTextEntry;
00017 class TGLayoutHints;
00018
00019 namespace evdb {
00020 class GoToDialog : public TGTransientFrame {
00021 RQ_OBJECT("evdb::GoToDialog");
00022
00023 public:
00024 GoToDialog();
00025 ~GoToDialog();
00026
00027 void CloseWindow();
00028 void DoGo();
00029 void DoClose();
00030
00031 private:
00032 TGCompositeFrame* fF1;
00033 TGLayoutHints* fL1;
00034 TGButton* fGoButton;
00035 TGButton* fCancelButton;
00036 TGButton* fCloseButton;
00037 TGLabel* fRunLabel;
00038 TGLabel* fEventLabel;
00039 TGTextEntry* fRunTextEntry;
00040 TGTextEntry* fEventTextEntry;
00041
00042 ClassDef(evdb::GoToDialog,0);
00043 };
00044 }
00045 #endif
00046
00047
00048