#ifndef ROOT_TGInputDialog
#define ROOT_TGInputDialog
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TGLabel;
class TGTextEntry;
class TGTextButton;
class TGInputDialog : public TGTransientFrame {
private:
   TGLabel          *fLabel;   
   TGTextEntry      *fTE;      
   TGTextButton     *fOk;      
   TGTextButton     *fCancel;  
   char             *fRetStr;  
public:
   TGInputDialog(const TGWindow *p = 0, const TGWindow *main = 0,
                 const char *prompt =0, const char *defval = 0, 
                 char *retstr = 0, UInt_t options = kVerticalFrame);
   ~TGInputDialog();
   virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t);
   ClassDef(TGInputDialog, 0)  
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.