| 74 | virtual bool IsNativeObject() { return true; } |
| 75 | virtual bool DrawDottedOutline() { return false; } |
| 76 | virtual wxWindow *CreateNative( wxWindow *parent ) { |
| 77 | AFSchedNumeric *sn = new AFSchedNumeric( parent, wxID_ANY ) ; |
| 78 | sn->SetLabel( Property("Label").GetString() ); |
| 79 | sn->UseSchedule( Property("UseSchedule").GetBoolean() ); |
| 80 | sn->ScheduleOnly( Property("ScheduleOnly").GetBoolean() ); |
| 81 | sn->SetFixedLen( Property("FixedLength").GetInteger() ); |
| 82 | sn->SetDescription( Property("Description").GetString() ); |
| 83 | return AssignNative( sn ); |
| 84 | } |
| 85 | virtual void OnPropertyChanged( const wxString &id, wxUIProperty *p ) |
| 86 | { |
| 87 | if ( AFSchedNumeric *sn = GetNative<AFSchedNumeric>() ) |
nothing calls this directly
no test coverage detected