• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/deprecated/

Lines Matching refs:property

420 bool wxRealFormValidator::OnCheckValue( wxProperty *property, wxPropertyFormView *WXUNUSED(view),
427 wxWindow *m_propertyWindow = property->GetWindow();
452 bool wxRealFormValidator::OnRetrieveValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
456 wxWindow *m_propertyWindow = property->GetWindow();
466 property->GetValue() = f;
470 bool wxRealFormValidator::OnDisplayValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
474 wxWindow *m_propertyWindow = property->GetWindow();
479 textItem->SetValue(FloatToString(property->GetValue().RealValue()));
488 bool wxIntegerFormValidator::OnCheckValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
495 wxWindow *m_propertyWindow = property->GetWindow();
530 bool wxIntegerFormValidator::OnRetrieveValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
534 wxWindow *m_propertyWindow = property->GetWindow();
546 property->GetValue() = i;
550 property->GetValue() = (long)((wxSlider *)m_propertyWindow)->GetValue();
558 bool wxIntegerFormValidator::OnDisplayValue( wxProperty *property, wxPropertyFormView *WXUNUSED(view),
562 wxWindow *m_propertyWindow = property->GetWindow();
569 textItem->SetValue(LongToString(property->GetValue().IntegerValue()));
573 ((wxSlider *)m_propertyWindow)->SetValue((int)property->GetValue().IntegerValue());
585 bool wxBoolFormValidator::OnCheckValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
589 wxWindow *m_propertyWindow = property->GetWindow();
596 bool wxBoolFormValidator::OnRetrieveValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
600 wxWindow *m_propertyWindow = property->GetWindow();
606 property->GetValue() = (bool)checkBox->GetValue();
610 bool wxBoolFormValidator::OnDisplayValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
614 wxWindow *m_propertyWindow = property->GetWindow();
619 checkBox->SetValue((bool)property->GetValue().BoolValue());
634 bool wxStringFormValidator::OnCheckValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
641 wxWindow *m_propertyWindow = property->GetWindow();
664 bool wxStringFormValidator::OnRetrieveValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
668 wxWindow *m_propertyWindow = property->GetWindow();
674 property->GetValue() = text->GetValue();
680 property->GetValue() = lbox->GetStringSelection();
688 property->GetValue() = rbox->GetString(n);
695 property->GetValue() = choice->GetStringSelection();
702 bool wxStringFormValidator::OnDisplayValue(wxProperty *property, wxPropertyFormView *WXUNUSED(view),
706 wxWindow *m_propertyWindow = property->GetWindow();
712 text->SetValue(property->GetValue().StringValue());
728 lbox->SetStringSelection(property->GetValue().StringValue());
734 rbox->SetStringSelection(property->GetValue().StringValue());
752 choice->SetStringSelection(property->GetValue().StringValue());