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