Warning, file /include/root/TGPasswdDialog.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TGPasswdDialog
0013 #define ROOT_TGPasswdDialog
0014
0015
0016 #include "Rtypes.h"
0017
0018 class TGTransientFrame;
0019 class TGTextButton;
0020 class TGTextEntry;
0021 class TGTextBuffer;
0022
0023
0024 class TGPasswdDialog {
0025
0026 private:
0027 char *fPwdBuf;
0028 Int_t fPwdLenMax;
0029 TGTransientFrame *fDialog;
0030 TGTextButton *fOk;
0031 TGTextEntry *fPasswd;
0032 TGTextBuffer *fPasswdText;
0033
0034 public:
0035 TGPasswdDialog(const char *prompt, char *pwdbuf, Int_t pwdlenmax,
0036 UInt_t w = 400, UInt_t h = 400);
0037 virtual ~TGPasswdDialog();
0038
0039 void ReturnPressed();
0040
0041
0042 void CloseWindow();
0043 void DoClose();
0044
0045 ClassDef(TGPasswdDialog,0)
0046 };
0047
0048 #endif