Public Member Functions | |
wxTextValidatorFixed (long style=wxFILTER_NONE, wxString *val=0) | |
wxTextValidatorFixed (const wxTextValidator &val) | |
~wxTextValidatorFixed () | |
virtual wxObject * | Clone () const |
virtual bool | TransferToWindow (void) |
virtual bool | TransferFromWindow (void) |
Private Member Functions | |
DECLARE_DYNAMIC_CLASS (wxTextValidatorFixed) |
Definition at line 6030 of file dlgmgr.cpp.
|
Definition at line 6034 of file dlgmgr.cpp.
|
|
Definition at line 6035 of file dlgmgr.cpp.
|
|
Definition at line 6036 of file dlgmgr.cpp.
|
|
Definition at line 6037 of file dlgmgr.cpp. 06037 { return new wxTextValidatorFixed(*this); }
|
|
|
|
Definition at line 6048 of file dlgmgr.cpp. 06048 : Correct*/ 06049 { 06050 if ( m_stringValue ) 06051 { 06052 if( !CheckValidator() ) return false; /*TYPENOTE: Correct*/ 06053 wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; 06054 *m_stringValue = control->GetValue(); 06055 } 06056 return true; /*TYPENOTE: Correct*/ 06057 }
|
|
Definition at line 6038 of file dlgmgr.cpp. 06038 : Correct*/ 06039 { 06040 if ( m_stringValue ) 06041 { 06042 if( !CheckValidator() ) return false; /*TYPENOTE: Correct*/ 06043 wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; 06044 control->SetValue(* m_stringValue); 06045 } 06046 return true; /*TYPENOTE: Correct*/ 06047 }
|