• 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 defs:wxPropertyValue

39 IMPLEMENT_DYNAMIC_CLASS(wxPropertyValue, wxObject)
41 wxPropertyValue::wxPropertyValue(void)
51 wxPropertyValue::wxPropertyValue(const wxPropertyValue& copyFrom)
56 Copy((wxPropertyValue& )copyFrom);
59 wxPropertyValue::wxPropertyValue(const wxChar *val)
70 wxPropertyValue::wxPropertyValue(const wxString& val)
81 wxPropertyValue::wxPropertyValue(long the_integer)
90 wxPropertyValue::wxPropertyValue(bool val)
99 wxPropertyValue::wxPropertyValue(float the_real)
108 wxPropertyValue::wxPropertyValue(double the_real)
118 wxPropertyValue::wxPropertyValue(wxChar **val)
129 wxPropertyValue::wxPropertyValue(long *val)
138 wxPropertyValue::wxPropertyValue(bool *val)
147 wxPropertyValue::wxPropertyValue(float *val)
156 wxPropertyValue::wxPropertyValue(wxList *the_list)
167 wxPropertyValue *expr = (wxPropertyValue *)node->GetData();
175 wxPropertyValue::wxPropertyValue(wxStringList *the_list)
187 Append(new wxPropertyValue(s));
193 wxPropertyValue::~wxPropertyValue(void)
210 wxPropertyValue *expr = m_value.first;
213 wxPropertyValue *expr1 = expr->m_next;
225 void wxPropertyValue::Append(wxPropertyValue *expr)
236 void wxPropertyValue::Insert(wxPropertyValue *expr)
247 void wxPropertyValue::Delete(wxPropertyValue *node)
249 wxPropertyValue *expr = GetFirst();
251 wxPropertyValue *previous = NULL;
285 void wxPropertyValue::ClearList(void)
287 wxPropertyValue *val = GetFirst();
293 wxPropertyValue *next = val->GetNext();
301 wxPropertyValue *wxPropertyValue::NewCopy(void) const
306 return new wxPropertyValue(m_value.integer);
308 return new wxPropertyValue((bool) (m_value.integer != 0));
310 return new wxPropertyValue(m_value.real);
312 return new wxPropertyValue(m_value.string);
315 wxPropertyValue *expr = m_value.first;
316 wxPropertyValue *new_list = new wxPropertyValue;
320 wxPropertyValue *expr2 = expr->NewCopy();
327 return new wxPropertyValue(m_value.integerPtr);
329 return new wxPropertyValue(m_value.realPtr);
331 return new wxPropertyValue(m_value.boolPtr);
333 return new wxPropertyValue(m_value.stringPtr);
342 void wxPropertyValue::Copy(wxPropertyValue& copyFrom)
402 wxPropertyValue *expr = copyFrom.m_value.first;
405 wxPropertyValue *expr2 = expr->NewCopy();
418 wxPropertyValue *wxPropertyValue::Arg(wxPropertyValueType type, int arg) const
420 wxPropertyValue *expr = m_value.first;
432 wxPropertyValue *wxPropertyValue::Nth(int arg) const
437 wxPropertyValue *expr = m_value.first;
450 int wxPropertyValue::Number(void) const
456 wxPropertyValue *expr = m_value.first;
465 void wxPropertyValue::WritePropertyClause(wxString& stream) // Write this expression as a top-level clause
470 wxPropertyValue *node = m_value.first;
491 void wxPropertyValue::WritePropertyType(wxString& stream) // Write as any other subexpression
545 wxFAIL_MSG( wxT("wxPropertyValue::WritePropertyType( wxPropertyValueStringPtr ) not implemented") );
563 wxPropertyValue *expr = m_value.first;
581 wxString wxPropertyValue::GetStringRepresentation(void)
588 void wxPropertyValue::operator=(const wxPropertyValue& val)
591 Copy((wxPropertyValue&)val);
594 // void wxPropertyValue::operator=(const char *val)
595 void wxPropertyValue::operator=(const wxString& val1)
633 void wxPropertyValue::operator=(const long val)
659 void wxPropertyValue::operator=(const bool val)
681 void wxPropertyValue::operator=(const float val)
707 void wxPropertyValue::operator=(const wxChar **val)
729 void wxPropertyValue::operator=(const long *val)
738 void wxPropertyValue::operator=(const bool *val)
747 void wxPropertyValue::operator=(const float *val)
756 long wxPropertyValue::IntegerValue(void) const
769 long *wxPropertyValue::IntegerValuePtr(void) const
774 float wxPropertyValue::RealValue(void) const {
786 float *wxPropertyValue::RealValuePtr(void) const
791 bool wxPropertyValue::BoolValue(void) const {
807 bool *wxPropertyValue::BoolValuePtr(void) const
812 wxChar *wxPropertyValue::StringValue(void) const {
820 wxChar **wxPropertyValue::StringValuePtr(void) const
857 wxProperty::wxProperty(wxString nm, const wxPropertyValue& val, wxString role, wxPropertyValidator *ed):
871 wxPropertyValue& wxProperty::GetValue(void) const
873 return (wxPropertyValue&) m_value;
891 void wxProperty::SetValue(const wxPropertyValue& val)
911 void wxProperty::operator=(const wxPropertyValue& val)
997 bool wxPropertySheet::SetProperty(const wxString& name, const wxPropertyValue& value)