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

Lines Matching defs:wxPropertyValue

33 class wxPropertyValue;
56 virtual bool SetProperty(const wxString& name, const wxPropertyValue& value);
191 class WXDLLIMPEXP_DEPRECATED wxPropertyValue: public wxObject
193 DECLARE_DYNAMIC_CLASS(wxPropertyValue)
195 wxPropertyValue(void); // Unknown type
196 wxPropertyValue(const wxPropertyValue& copyFrom); // Copy constructor
197 wxPropertyValue(const wxChar *val);
198 wxPropertyValue(const wxString& val);
199 wxPropertyValue(long val);
200 wxPropertyValue(bool val);
201 wxPropertyValue(float val);
202 wxPropertyValue(double the_real);
203 wxPropertyValue(wxList *val);
204 wxPropertyValue(wxStringList *val);
206 wxPropertyValue(wxChar **val);
207 wxPropertyValue(long *val);
208 wxPropertyValue(bool *val);
209 wxPropertyValue(float *val);
211 ~wxPropertyValue(void);
225 virtual wxPropertyValue *Arg(wxPropertyValueType type, int arg) const;
228 virtual wxPropertyValue *Nth(int arg) const;
232 virtual wxPropertyValue *NewCopy(void) const;
233 virtual void Copy(wxPropertyValue& copyFrom);
239 virtual void Append(wxPropertyValue *expr);
241 virtual void Insert(wxPropertyValue *expr);
244 virtual inline wxPropertyValue *GetFirst(void) const
245 { return ((m_type == wxPropertyValueList) ? m_value.first : (wxPropertyValue*)NULL); }
248 virtual inline wxPropertyValue *GetNext(void) const
252 virtual inline wxPropertyValue *GetLast(void) const
253 { return ((m_type == wxPropertyValueList) ? m_last : (wxPropertyValue*)NULL); }
256 virtual void Delete(wxPropertyValue *node);
270 void operator=(const wxPropertyValue& val);
294 wxPropertyValue *first; // If is a list expr, points to the first node
297 wxPropertyValue* m_next; // If this is a node in a list, points to the next node
298 wxPropertyValue* m_last; // If is a list expr, points to the last node
312 wxPropertyValue m_value;
321 wxProperty(wxString name, const wxPropertyValue& val, wxString role, wxPropertyValidator *ed = NULL);
324 virtual wxPropertyValue& GetValue(void) const;
328 virtual void SetValue(const wxPropertyValue& val);
332 void operator=(const wxPropertyValue& val);