Logo ROOT   6.08/07
Reference Guide
TGInputDialog.h
Go to the documentation of this file.
1 // @(#)root/gui:$Id$
2 // Author: David Gonzalez Maline 19/07/2006
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TGInputDialog
13 #define ROOT_TGInputDialog
14 
15 ///////////////////////////////////////////////////////////////////////////
16 // //
17 // Input Dialog Widget //
18 // //
19 // An Input dialog box //
20 // //
21 ///////////////////////////////////////////////////////////////////////////
22 
23 #ifndef ROOT_TGFrame
24 #include "TGFrame.h"
25 #endif
26 
27 class TGLabel;
28 class TGTextEntry;
29 class TGTextButton;
30 
32 
33 private:
34  TGLabel *fLabel; // text entry label
35  TGTextEntry *fTE; // text entry widget
36  TGTextButton *fOk; // ok button
37  TGTextButton *fCancel; // cancel button
38  char *fRetStr; // address to store return string
39 
40  TGInputDialog(const TGInputDialog&); // Not implemented
41  TGInputDialog &operator= (const TGInputDialog&); // Not implemented
42 
43 public:
44  TGInputDialog(const TGWindow *p = 0, const TGWindow *main = 0,
45  const char *prompt =0, const char *defval = 0,
46  char *retstr = 0, UInt_t options = kVerticalFrame);
48  virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t);
49 
50  ClassDef(TGInputDialog, 0) // Simple input dialog
51 
52 };
53 
54 #endif
TGTextButton * fCancel
Definition: TGInputDialog.h:37
bool Bool_t
Definition: RtypesCore.h:59
TGLabel * fLabel
Definition: TGInputDialog.h:34
#define ClassDef(name, id)
Definition: Rtypes.h:254
~TGInputDialog()
Cleanup dialog.
unsigned int UInt_t
Definition: RtypesCore.h:42
TGInputDialog(const TGInputDialog &)
TGTextEntry * fTE
Definition: TGInputDialog.h:35
long Long_t
Definition: RtypesCore.h:50
TGTextButton * fOk
Definition: TGInputDialog.h:36
TGInputDialog & operator=(const TGInputDialog &)
virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t)
Handle button and text enter events.
int main(int argc, char **argv)