00001 00002 00003 #ifndef __GINPUT_H 00004 #define __GINPUT_H 00005 00009 class LgiClass GInput : public GDialog 00010 { 00011 GEdit *Edit; 00012 00013 public: 00014 char *Str; 00015 00017 GInput 00018 ( 00020 GViewI *parent, 00022 char *InitStr = "", 00024 char *Msg = "Enter String", 00026 char *Title = "Input", 00028 bool Password = false 00029 ); 00030 ~GInput(); 00031 00032 int OnNotify(GViewI *Ctrl, int Flags); 00033 }; 00034 00035 #endif
1.4.1