NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
Popup.h
1 #ifndef POPUP_
2 #define POPUP_
3 
4 #include "TGWindow.h"
5 #include "TGFrame.h"
6 #include "TGTextEntry.h"
7 #include "TGLabel.h"
8 #include "TGButton.h"
9 
10 using namespace std;
11 
12 class Popup: public TGTransientFrame
13 {
14  public:
15  Popup(const TGWindow * p, const TGWindow * main, /*char **/string message);
16  virtual ~Popup();
17 
18  private:
19  Pixel_t color;
20 
21  Bool_t ProcessMessage (Long_t msg, Long_t parm1, Long_t parm2);
22 
23  enum Commands
24  {
25  OK
26  };
27 };
28 
29 #endif
Definition: ddaschannelDictionary.cpp:37
Definition: Popup.h:12