#ifndef ROOT_TRootDialog
#define ROOT_TRootDialog
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TRootContextMenu;
class TRootDialog : public TGTransientFrame {
private:
TRootContextMenu *fMenu;
TGLayoutHints *fL1;
TGLayoutHints *fL2;
TList *fWidgets;
Bool_t fOk;
Bool_t fCancel;
Bool_t fApply;
public:
TRootDialog(TRootContextMenu *cmenu = 0, const TGWindow *main = 0,
const char *title = "ROOT Dialog", Bool_t okB = kTRUE,
Bool_t cancelB = kTRUE, Bool_t applyB = kFALSE);
virtual ~TRootDialog();
virtual void Add(const char *argname, const char *value, const char *type);
virtual const char *GetParameters();
virtual void CloseWindow();
virtual void Popup();
void TabPressed();
ClassDef(TRootDialog,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
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.