]>
Commit | Line | Data |
---|---|---|
1c4293cb VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/propgeid/propgridiface.h | |
3 | // Purpose: wxPropertyGridInterface class | |
4 | // Author: Jaakko Salli | |
5 | // Modified by: | |
6 | // Created: 2008-08-24 | |
ea5af9c5 | 7 | // RCS-ID: $Id$ |
1c4293cb VZ |
8 | // Copyright: (c) Jaakko Salli |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __WX_PROPGRID_PROPGRIDIFACE_H__ | |
13 | #define __WX_PROPGRID_PROPGRIDIFACE_H__ | |
14 | ||
f4bc1aa2 JS |
15 | #if wxUSE_PROPGRID |
16 | ||
1c4293cb VZ |
17 | #include "wx/propgrid/property.h" |
18 | #include "wx/propgrid/propgridpagestate.h" | |
19 | ||
20 | // ----------------------------------------------------------------------- | |
21 | ||
22 | #ifndef SWIG | |
23 | ||
24 | /** @section wxPGPropArgCls | |
25 | ||
26 | Most property grid functions have this type as their argument, as it can | |
27 | convey a property by either a pointer or name. | |
28 | */ | |
29 | class WXDLLIMPEXP_PROPGRID wxPGPropArgCls | |
30 | { | |
31 | public: | |
32 | wxPGPropArgCls() { } | |
33 | wxPGPropArgCls( const wxPGProperty* property ) | |
34 | { | |
35 | m_ptr.property = (wxPGProperty*) property; | |
f3793429 | 36 | m_flags = IsProperty; |
1c4293cb VZ |
37 | } |
38 | wxPGPropArgCls( const wxString& str ) | |
39 | { | |
f3793429 JS |
40 | m_ptr.stringName = &str; |
41 | m_flags = IsWxString; | |
1c4293cb VZ |
42 | } |
43 | wxPGPropArgCls( const wxPGPropArgCls& id ) | |
44 | { | |
45 | m_ptr = id.m_ptr; | |
f3793429 | 46 | m_flags = id.m_flags; |
1c4293cb VZ |
47 | } |
48 | // This is only needed for wxPython bindings | |
49 | wxPGPropArgCls( wxString* str, bool WXUNUSED(deallocPtr) ) | |
50 | { | |
f3793429 JS |
51 | m_ptr.stringName = str; |
52 | m_flags = IsWxString | OwnsWxString; | |
1c4293cb VZ |
53 | } |
54 | ~wxPGPropArgCls() | |
55 | { | |
f3793429 JS |
56 | if ( m_flags & OwnsWxString ) |
57 | delete m_ptr.stringName; | |
1c4293cb VZ |
58 | } |
59 | wxPGProperty* GetPtr() const | |
60 | { | |
f3793429 | 61 | wxCHECK( m_flags == IsProperty, NULL ); |
1c4293cb VZ |
62 | return m_ptr.property; |
63 | } | |
f3793429 | 64 | wxPGPropArgCls( const char* str ) |
1c4293cb | 65 | { |
f3793429 JS |
66 | m_ptr.charName = str; |
67 | m_flags = IsCharPtr; | |
1c4293cb | 68 | } |
f3793429 JS |
69 | #if wxUSE_WCHAR_T |
70 | wxPGPropArgCls( const wchar_t* str ) | |
71 | { | |
72 | m_ptr.wcharName = str; | |
73 | m_flags = IsWCharPtr; | |
74 | } | |
75 | #endif | |
1c4293cb VZ |
76 | /** This constructor is required for NULL. */ |
77 | wxPGPropArgCls( int ) | |
78 | { | |
79 | m_ptr.property = (wxPGProperty*) NULL; | |
f3793429 | 80 | m_flags = IsProperty; |
1c4293cb | 81 | } |
f3793429 JS |
82 | wxPGProperty* GetPtr( wxPropertyGridInterface* iface ) const; |
83 | wxPGProperty* GetPtr( const wxPropertyGridInterface* iface ) const | |
1c4293cb | 84 | { |
f3793429 | 85 | return GetPtr((wxPropertyGridInterface*)iface); |
1c4293cb VZ |
86 | } |
87 | wxPGProperty* GetPtr0() const { return m_ptr.property; } | |
f3793429 JS |
88 | bool HasName() const { return (m_flags != IsProperty); } |
89 | const wxString& GetName() const { return *m_ptr.stringName; } | |
1c4293cb | 90 | private: |
f3793429 JS |
91 | |
92 | enum | |
93 | { | |
94 | IsProperty = 0x00, | |
95 | IsWxString = 0x01, | |
96 | IsCharPtr = 0x02, | |
97 | IsWCharPtr = 0x04, | |
98 | OwnsWxString = 0x10, | |
99 | }; | |
100 | ||
1c4293cb VZ |
101 | union |
102 | { | |
103 | wxPGProperty* property; | |
f3793429 JS |
104 | const char* charName; |
105 | #if wxUSE_WCHAR_T | |
106 | const wchar_t* wcharName; | |
107 | #endif | |
108 | const wxString* stringName; | |
1c4293cb | 109 | } m_ptr; |
f3793429 | 110 | unsigned char m_flags; |
1c4293cb VZ |
111 | }; |
112 | ||
113 | #endif | |
114 | ||
115 | typedef const wxPGPropArgCls& wxPGPropArg; | |
116 | ||
117 | // ----------------------------------------------------------------------- | |
118 | ||
119 | WXDLLIMPEXP_PROPGRID | |
120 | void wxPGTypeOperationFailed( const wxPGProperty* p, | |
0372d42e JS |
121 | const wxString& typestr, |
122 | const wxString& op ); | |
1c4293cb | 123 | WXDLLIMPEXP_PROPGRID |
0372d42e | 124 | void wxPGGetFailed( const wxPGProperty* p, const wxString& typestr ); |
1c4293cb VZ |
125 | |
126 | // ----------------------------------------------------------------------- | |
127 | ||
128 | // Helper macro that does necessary preparations when calling | |
129 | // some wxPGProperty's member function. | |
130 | #define wxPG_PROP_ARG_CALL_PROLOG_0(PROPERTY) \ | |
131 | PROPERTY *p = (PROPERTY*)id.GetPtr(this); \ | |
132 | if ( !p ) return; | |
133 | ||
134 | #define wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(PROPERTY, RETVAL) \ | |
135 | PROPERTY *p = (PROPERTY*)id.GetPtr(this); \ | |
136 | if ( !p ) return RETVAL; | |
137 | ||
138 | #define wxPG_PROP_ARG_CALL_PROLOG() \ | |
139 | wxPG_PROP_ARG_CALL_PROLOG_0(wxPGProperty) | |
140 | ||
141 | #define wxPG_PROP_ARG_CALL_PROLOG_RETVAL(RVAL) \ | |
142 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(wxPGProperty, RVAL) | |
143 | ||
144 | #define wxPG_PROP_ID_CONST_CALL_PROLOG() \ | |
145 | wxPG_PROP_ARG_CALL_PROLOG_0(const wxPGProperty) | |
146 | ||
147 | #define wxPG_PROP_ID_CONST_CALL_PROLOG_RETVAL(RVAL) \ | |
148 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(const wxPGProperty, RVAL) | |
149 | ||
150 | // ----------------------------------------------------------------------- | |
151 | ||
152 | ||
153 | /** @class wxPropertyGridInterface | |
154 | ||
155 | Most of the shared property manipulation interface shared by wxPropertyGrid, | |
156 | wxPropertyGridPage, and wxPropertyGridManager is defined in this class. | |
157 | ||
158 | @remarks | |
159 | - In separate wxPropertyGrid component this class was known as | |
160 | wxPropertyContainerMethods. | |
161 | ||
162 | @library{wxpropgrid} | |
163 | @category{propgrid} | |
164 | */ | |
165 | class WXDLLIMPEXP_PROPGRID wxPropertyGridInterface | |
166 | { | |
167 | public: | |
168 | ||
169 | /** Destructor */ | |
170 | virtual ~wxPropertyGridInterface() { } | |
171 | ||
1c4293cb VZ |
172 | /** |
173 | Appends property to the list. | |
174 | ||
175 | wxPropertyGrid assumes ownership of the object. | |
176 | Becomes child of most recently added category. | |
177 | @remarks | |
178 | - wxPropertyGrid takes the ownership of the property pointer. | |
179 | - If appending a category with name identical to a category already in | |
180 | the wxPropertyGrid, then newly created category is deleted, and most | |
181 | recently added category (under which properties are appended) is set | |
182 | to the one with same name. This allows easier adding of items to same | |
183 | categories in multiple passes. | |
184 | - Does not automatically redraw the control, so you may need to call | |
185 | Refresh when calling this function after control has been shown for | |
186 | the first time. | |
187 | */ | |
188 | wxPGProperty* Append( wxPGProperty* property ); | |
189 | ||
190 | wxPGProperty* AppendIn( wxPGPropArg id, wxPGProperty* newproperty ); | |
191 | ||
192 | /** | |
193 | In order to add new items into a property with fixed children (for | |
194 | instance, wxFlagsProperty), you need to call this method. After | |
195 | populating has been finished, you need to call EndAddChildren. | |
196 | */ | |
197 | void BeginAddChildren( wxPGPropArg id ); | |
198 | ||
199 | /** Deletes all properties. | |
200 | */ | |
201 | virtual void Clear() = 0; | |
202 | ||
1621f192 JS |
203 | /** |
204 | Clears current selection, if any. | |
205 | ||
206 | @param validation | |
207 | If set to @false, deselecting the property will always work, | |
208 | even if its editor had invalid value in it. | |
209 | ||
210 | @return Returns @true if successful or if there was no selection. May | |
211 | fail if validation was enabled and active editor had invalid | |
212 | value. | |
213 | */ | |
214 | bool ClearSelection( bool validation = false); | |
1c4293cb VZ |
215 | |
216 | /** Resets modified status of all properties. | |
217 | */ | |
89b44158 | 218 | void ClearModifiedStatus(); |
1c4293cb VZ |
219 | |
220 | /** Collapses given category or property with children. | |
221 | Returns true if actually collapses. | |
222 | */ | |
223 | bool Collapse( wxPGPropArg id ); | |
224 | ||
225 | /** Collapses all items that can be collapsed. | |
226 | ||
227 | @return | |
228 | Return false if failed (may fail if editor value cannot be validated). | |
229 | */ | |
230 | bool CollapseAll() { return ExpandAll(false); } | |
231 | ||
232 | /** | |
233 | Changes value of a property, as if from an editor. | |
234 | Use this instead of SetPropertyValue() if you need the value to run | |
235 | through validation process, and also send the property change event. | |
236 | ||
237 | @return | |
238 | Returns true if value was successfully changed. | |
239 | */ | |
240 | bool ChangePropertyValue( wxPGPropArg id, wxVariant newValue ); | |
241 | ||
1c4293cb VZ |
242 | /** |
243 | Deletes a property by id. If category is deleted, all children are | |
244 | automatically deleted as well. | |
245 | */ | |
246 | void DeleteProperty( wxPGPropArg id ); | |
247 | ||
1c4293cb VZ |
248 | /** Disables property. */ |
249 | bool DisableProperty( wxPGPropArg id ) { return EnableProperty(id,false); } | |
250 | ||
251 | /** | |
252 | Returns true if all property grid data changes have been committed. | |
253 | ||
254 | Usually only returns false if value in active editor has been | |
255 | invalidated by a wxValidator. | |
256 | */ | |
257 | bool EditorValidate(); | |
258 | ||
259 | /** | |
260 | Enables or disables property, depending on whether enable is true or | |
261 | false. | |
262 | */ | |
263 | bool EnableProperty( wxPGPropArg id, bool enable = true ); | |
264 | ||
265 | /** Called after population of property with fixed children has finished. | |
266 | */ | |
267 | void EndAddChildren( wxPGPropArg id ); | |
268 | ||
269 | /** Expands given category or property with children. | |
270 | Returns true if actually expands. | |
271 | */ | |
272 | bool Expand( wxPGPropArg id ); | |
273 | ||
274 | /** Expands all items that can be expanded. | |
275 | */ | |
276 | bool ExpandAll( bool expand = true ); | |
277 | ||
1c4293cb VZ |
278 | /** Returns id of first child of given property. |
279 | @remarks | |
280 | Does not return sub-properties! | |
281 | */ | |
282 | wxPGProperty* GetFirstChild( wxPGPropArg id ) | |
283 | { | |
284 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullProperty) | |
285 | ||
286 | if ( !p->GetChildCount() || p->HasFlag(wxPG_PROP_AGGREGATE) ) | |
287 | return wxNullProperty; | |
288 | ||
289 | return p->Item(0); | |
290 | } | |
291 | ||
292 | //@{ | |
293 | /** Returns iterator class instance. | |
294 | @param flags | |
295 | See @ref propgrid_iterator_flags. Value wxPG_ITERATE_DEFAULT causes | |
296 | iteration over everything except private child properties. | |
297 | @param firstProp | |
298 | Property to start iteration from. If NULL, then first child of root | |
299 | is used. | |
300 | @param startPos | |
301 | Either wxTOP or wxBOTTOM. wxTOP will indicate that iterations start | |
302 | from the first property from the top, and wxBOTTOM means that the | |
303 | iteration will instead begin from bottommost valid item. | |
304 | */ | |
305 | wxPropertyGridIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT, | |
306 | wxPGProperty* firstProp = NULL ) | |
307 | { | |
308 | return wxPropertyGridIterator( m_pState, flags, firstProp ); | |
309 | } | |
310 | ||
311 | wxPropertyGridConstIterator | |
312 | GetIterator( int flags = wxPG_ITERATE_DEFAULT, | |
313 | wxPGProperty* firstProp = NULL ) const | |
314 | { | |
315 | return wxPropertyGridConstIterator( m_pState, flags, firstProp ); | |
316 | } | |
317 | ||
318 | wxPropertyGridIterator GetIterator( int flags, int startPos ) | |
319 | { | |
320 | return wxPropertyGridIterator( m_pState, flags, startPos ); | |
321 | } | |
322 | ||
323 | wxPropertyGridConstIterator GetIterator( int flags, int startPos ) const | |
324 | { | |
325 | return wxPropertyGridConstIterator( m_pState, flags, startPos ); | |
326 | } | |
327 | //@} | |
328 | ||
329 | /** Returns id of first item, whether it is a category or property. | |
330 | @param flags | |
331 | @link iteratorflags List of iterator flags@endlink | |
332 | */ | |
333 | wxPGProperty* GetFirst( int flags = wxPG_ITERATE_ALL ) | |
334 | { | |
335 | wxPropertyGridIterator it( m_pState, flags, wxNullProperty, 1 ); | |
336 | return *it; | |
337 | } | |
338 | ||
339 | const wxPGProperty* GetFirst( int flags = wxPG_ITERATE_ALL ) const | |
340 | { | |
341 | return ((wxPropertyGridInterface*)this)->GetFirst(flags); | |
342 | } | |
343 | ||
344 | /** | |
345 | Returns id of property with given name (case-sensitive). | |
346 | ||
347 | If there is no property with such name, returned property id is invalid | |
348 | ( i.e. it will return false with IsOk method). | |
349 | @remarks | |
350 | - Sub-properties (i.e. properties which have parent that is not | |
351 | category or root) can not be accessed globally by their name. | |
352 | Instead, use "<property>.<subproperty>" in place of "<subproperty>". | |
353 | */ | |
354 | wxPGProperty* GetProperty( const wxString& name ) const | |
355 | { | |
356 | return GetPropertyByName(name); | |
357 | } | |
358 | ||
359 | /** Returns map-like storage of property's attributes. | |
360 | @remarks | |
361 | Note that if extra style wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES is set, | |
362 | then builtin-attributes are not included in the storage. | |
363 | */ | |
364 | const wxPGAttributeStorage& GetPropertyAttributes( wxPGPropArg id ) const | |
365 | { | |
e9cc4973 JS |
366 | // If 'id' refers to invalid property, then we will return dummy |
367 | // attributes (ie. root property's attributes, which contents should | |
368 | // should always be empty and of no consequence). | |
369 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_pState->DoGetRoot()->GetAttributes()); | |
1c4293cb VZ |
370 | return p->GetAttributes(); |
371 | } | |
372 | ||
373 | /** Adds to 'targetArr' pointers to properties that have given | |
374 | flags 'flags' set. However, if 'inverse' is set to true, then | |
375 | only properties without given flags are stored. | |
376 | @param flags | |
377 | Property flags to use. | |
378 | @param iterFlags | |
379 | Iterator flags to use. Default is everything expect private children. | |
380 | */ | |
381 | void GetPropertiesWithFlag( wxArrayPGProperty* targetArr, | |
382 | wxPGProperty::FlagType flags, | |
383 | bool inverse = false, | |
384 | int iterFlags = wxPG_ITERATE_PROPERTIES | | |
385 | wxPG_ITERATE_HIDDEN | | |
386 | wxPG_ITERATE_CATEGORIES) const; | |
387 | ||
388 | /** Returns value of given attribute. If none found, returns NULL-variant. | |
389 | */ | |
390 | wxVariant GetPropertyAttribute( wxPGPropArg id, | |
391 | const wxString& attrName ) const | |
392 | { | |
393 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullVariant) | |
394 | return p->GetAttribute(attrName); | |
395 | } | |
396 | ||
397 | /** Returns pointer of property's nearest parent category. If no category | |
398 | found, returns NULL. | |
399 | */ | |
400 | wxPropertyCategory* GetPropertyCategory( wxPGPropArg id ) const | |
401 | { | |
402 | wxPG_PROP_ID_CONST_CALL_PROLOG_RETVAL(NULL) | |
403 | return m_pState->GetPropertyCategory(p); | |
404 | } | |
405 | ||
406 | #ifndef SWIG | |
407 | /** Returns client data (void*) of a property. */ | |
408 | void* GetPropertyClientData( wxPGPropArg id ) const | |
409 | { | |
410 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL) | |
411 | return p->GetClientData(); | |
412 | } | |
413 | #endif | |
414 | ||
415 | /** | |
416 | Returns first property which label matches given string. | |
417 | ||
418 | NULL if none found. Note that this operation is extremely slow when | |
419 | compared to GetPropertyByName(). | |
420 | */ | |
421 | wxPGProperty* GetPropertyByLabel( const wxString& label ) const; | |
422 | ||
423 | /** Returns property with given name. NULL if none found. | |
424 | */ | |
425 | wxPGProperty* GetPropertyByName( const wxString& name ) const; | |
426 | ||
427 | /** Returns child property 'subname' of property 'name'. Same as | |
428 | calling GetPropertyByName("name.subname"), albeit slightly faster. | |
429 | */ | |
430 | wxPGProperty* GetPropertyByName( const wxString& name, | |
431 | const wxString& subname ) const; | |
432 | ||
1c4293cb VZ |
433 | /** Returns property's editor. */ |
434 | const wxPGEditor* GetPropertyEditor( wxPGPropArg id ) const | |
435 | { | |
436 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL) | |
437 | return p->GetEditorClass(); | |
438 | } | |
439 | ||
440 | /** Returns help string associated with a property. */ | |
441 | wxString GetPropertyHelpString( wxPGPropArg id ) const | |
442 | { | |
443 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_emptyString) | |
444 | return p->GetHelpString(); | |
445 | } | |
446 | ||
447 | /** Returns property's custom value image (NULL of none). */ | |
448 | wxBitmap* GetPropertyImage( wxPGPropArg id ) const | |
449 | { | |
450 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL) | |
451 | return p->GetValueImage(); | |
452 | } | |
453 | ||
1c4293cb VZ |
454 | /** Returns label of a property. */ |
455 | const wxString& GetPropertyLabel( wxPGPropArg id ) | |
456 | { | |
457 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_emptyString) | |
458 | return p->GetLabel(); | |
459 | } | |
460 | ||
461 | /** Returns name of a property, by which it is globally accessible. */ | |
effb029c | 462 | wxString GetPropertyName( wxPGProperty* property ) |
1c4293cb | 463 | { |
effb029c | 464 | return property->GetName(); |
1c4293cb VZ |
465 | } |
466 | ||
467 | /** Returns parent item of a property. */ | |
468 | wxPGProperty* GetPropertyParent( wxPGPropArg id ) | |
469 | { | |
470 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullProperty) | |
471 | return p->GetParent(); | |
472 | } | |
473 | ||
474 | #if wxUSE_VALIDATORS | |
475 | /** Returns validator of a property as a reference, which you | |
476 | can pass to any number of SetPropertyValidator. | |
477 | */ | |
478 | wxValidator* GetPropertyValidator( wxPGPropArg id ) | |
479 | { | |
480 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL) | |
481 | return p->GetValidator(); | |
482 | } | |
483 | #endif | |
484 | ||
485 | /** Returns value as wxVariant. To get wxObject pointer from it, | |
486 | you will have to use WX_PG_VARIANT_TO_WXOBJECT(VARIANT,CLASSNAME) macro. | |
487 | ||
488 | If property value is unspecified, Null variant is returned. | |
489 | */ | |
490 | wxVariant GetPropertyValue( wxPGPropArg id ) | |
491 | { | |
492 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxVariant()) | |
493 | return p->GetValue(); | |
494 | } | |
495 | ||
496 | wxString GetPropertyValueAsString( wxPGPropArg id ) const; | |
497 | long GetPropertyValueAsLong( wxPGPropArg id ) const; | |
498 | unsigned long GetPropertyValueAsULong( wxPGPropArg id ) const | |
499 | { | |
500 | return (unsigned long) GetPropertyValueAsLong(id); | |
501 | } | |
502 | #ifndef SWIG | |
503 | int GetPropertyValueAsInt( wxPGPropArg id ) const | |
504 | { return (int)GetPropertyValueAsLong(id); } | |
505 | #endif | |
506 | bool GetPropertyValueAsBool( wxPGPropArg id ) const; | |
507 | double GetPropertyValueAsDouble( wxPGPropArg id ) const; | |
1c4293cb VZ |
508 | |
509 | #define wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL(TYPENAME, DEFVAL) \ | |
510 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(DEFVAL) \ | |
0372d42e JS |
511 | wxString typeName(wxS(TYPENAME)); \ |
512 | wxVariant value = p->GetValue(); \ | |
513 | if ( value.GetType() != typeName ) \ | |
1c4293cb | 514 | { \ |
0372d42e | 515 | wxPGGetFailed(p, typeName); \ |
1c4293cb VZ |
516 | return DEFVAL; \ |
517 | } | |
518 | ||
519 | #define wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK(TYPENAME, DEFVAL) \ | |
520 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(DEFVAL) \ | |
0372d42e JS |
521 | wxVariant value = p->GetValue(); \ |
522 | if ( value.GetType() != wxS(TYPENAME) ) \ | |
1c4293cb VZ |
523 | return DEFVAL; \ |
524 | ||
525 | wxArrayString GetPropertyValueAsArrayString( wxPGPropArg id ) const | |
526 | { | |
0372d42e | 527 | wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("arrstring", |
1c4293cb | 528 | wxArrayString()) |
0372d42e | 529 | return value.GetArrayString(); |
1c4293cb VZ |
530 | } |
531 | ||
0dc44cac | 532 | #if wxUSE_LONGLONG_NATIVE |
1c4293cb VZ |
533 | wxLongLong_t GetPropertyValueAsLongLong( wxPGPropArg id ) const |
534 | { | |
0372d42e | 535 | wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK("wxLongLong", |
1c4293cb | 536 | (long) GetPropertyValueAsLong(id)) |
0372d42e JS |
537 | wxLongLong ll; |
538 | ll << value; | |
539 | return ll.GetValue(); | |
1c4293cb VZ |
540 | } |
541 | ||
542 | wxULongLong_t GetPropertyValueAsULongLong( wxPGPropArg id ) const | |
543 | { | |
0372d42e | 544 | wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK("wxULongLong", |
1c4293cb | 545 | (unsigned long) GetPropertyValueAsULong(id)) |
0372d42e JS |
546 | wxULongLong ull; |
547 | ull << value; | |
548 | return ull.GetValue(); | |
1c4293cb | 549 | } |
0dc44cac | 550 | #endif |
1c4293cb VZ |
551 | |
552 | wxArrayInt GetPropertyValueAsArrayInt( wxPGPropArg id ) const | |
553 | { | |
0372d42e | 554 | wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("wxArrayInt", |
1c4293cb | 555 | wxArrayInt()) |
0372d42e JS |
556 | wxArrayInt arr; |
557 | arr << value; | |
1c4293cb VZ |
558 | return arr; |
559 | } | |
560 | ||
561 | #if wxUSE_DATETIME | |
562 | wxDateTime GetPropertyValueAsDateTime( wxPGPropArg id ) const | |
563 | { | |
0372d42e JS |
564 | wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("datetime", |
565 | wxDateTime()) | |
566 | return value.GetDateTime(); | |
1c4293cb VZ |
567 | } |
568 | #endif | |
569 | ||
570 | #ifndef SWIG | |
571 | /** Returns a wxVariant list containing wxVariant versions of all | |
572 | property values. Order is not guaranteed. | |
573 | @param flags | |
574 | Use wxPG_KEEP_STRUCTURE to retain category structure; each sub | |
575 | category will be its own wxVariantList of wxVariant. | |
576 | Use wxPG_INC_ATTRIBUTES to include property attributes as well. | |
577 | Each attribute will be stored as list variant named | |
578 | "@@<propname>@@attr." | |
579 | @remarks | |
580 | */ | |
581 | wxVariant GetPropertyValues( const wxString& listname = wxEmptyString, | |
582 | wxPGProperty* baseparent = NULL, long flags = 0 ) const | |
583 | { | |
584 | return m_pState->DoGetPropertyValues(listname, baseparent, flags); | |
585 | } | |
586 | #endif | |
587 | ||
1c4293cb VZ |
588 | /** Returns currently selected property. */ |
589 | wxPGProperty* GetSelection() const | |
590 | { | |
591 | return m_pState->GetSelection(); | |
592 | } | |
593 | ||
594 | #ifndef SWIG | |
595 | wxPropertyGridPageState* GetState() const { return m_pState; } | |
596 | #endif | |
597 | ||
598 | /** Similar to GetIterator(), but instead returns wxPGVIterator instance, | |
599 | which can be useful for forward-iterating through arbitrary property | |
600 | containers. | |
601 | ||
602 | @param flags | |
603 | See @ref propgrid_iterator_flags. | |
604 | */ | |
605 | virtual wxPGVIterator GetVIterator( int flags ) const; | |
606 | ||
607 | /** Hides or reveals a property. | |
608 | @param hide | |
609 | If true, hides property, otherwise reveals it. | |
610 | @param flags | |
611 | By default changes are applied recursively. Set this paramter | |
612 | wxPG_DONT_RECURSE to prevent this. | |
613 | */ | |
614 | bool HideProperty( wxPGPropArg id, | |
615 | bool hide = true, | |
616 | int flags = wxPG_RECURSE ); | |
617 | ||
618 | #if wxPG_INCLUDE_ADVPROPS | |
619 | /** Initializes *all* property types. Causes references to most object | |
620 | files in the library, so calling this may cause significant increase | |
621 | in executable size when linking with static library. | |
622 | */ | |
623 | static void InitAllTypeHandlers(); | |
624 | #else | |
625 | static void InitAllTypeHandlers() { } | |
626 | #endif | |
627 | ||
628 | //@{ | |
629 | /** Inserts property to the property container. | |
630 | ||
631 | @param priorThis | |
632 | New property is inserted just prior to this. Available only | |
633 | in the first variant. There are two versions of this function | |
634 | to allow this parameter to be either an id or name to | |
635 | a property. | |
636 | ||
637 | @param newproperty | |
638 | Pointer to the inserted property. wxPropertyGrid will take | |
639 | ownership of this object. | |
640 | ||
641 | @param parent | |
642 | New property is inserted under this category. Available only | |
643 | in the second variant. There are two versions of this function | |
644 | to allow this parameter to be either an id or name to | |
645 | a property. | |
646 | ||
647 | @param index | |
648 | Index under category. Available only in the second variant. | |
649 | If index is < 0, property is appended in category. | |
650 | ||
651 | @return | |
652 | Returns id for the property, | |
653 | ||
654 | @remarks | |
655 | ||
656 | - wxPropertyGrid takes the ownership of the property pointer. | |
657 | ||
658 | - While Append may be faster way to add items, make note that when | |
659 | both types of data storage (categoric and | |
660 | non-categoric) are active, Insert becomes even more slow. This is | |
661 | especially true if current mode is non-categoric. | |
662 | ||
663 | Example of use: | |
664 | ||
665 | @code | |
666 | ||
667 | // append category | |
668 | wxPGProperty* my_cat_id = propertygrid->Append( | |
669 | new wxPropertyCategory("My Category") ); | |
670 | ||
671 | ... | |
672 | ||
673 | // insert into category - using second variant | |
674 | wxPGProperty* my_item_id_1 = propertygrid->Insert( | |
675 | my_cat_id, 0, new wxStringProperty("My String 1") ); | |
676 | ||
677 | // insert before to first item - using first variant | |
678 | wxPGProperty* my_item_id_2 = propertygrid->Insert( | |
679 | my_item_id, new wxStringProperty("My String 2") ); | |
680 | ||
681 | @endcode | |
682 | ||
683 | */ | |
684 | wxPGProperty* Insert( wxPGPropArg priorThis, wxPGProperty* newproperty ); | |
685 | wxPGProperty* Insert( wxPGPropArg parent, | |
686 | int index, | |
687 | wxPGProperty* newproperty ); | |
688 | //@} | |
689 | ||
690 | /** Returns true if property is a category. */ | |
691 | bool IsPropertyCategory( wxPGPropArg id ) const | |
692 | { | |
693 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false) | |
694 | return p->IsCategory(); | |
695 | } | |
696 | ||
1c4293cb VZ |
697 | /** Returns true if property is enabled. */ |
698 | bool IsPropertyEnabled( wxPGPropArg id ) const | |
699 | { | |
700 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false) | |
701 | return (!(p->GetFlags() & wxPG_PROP_DISABLED))?true:false; | |
702 | } | |
703 | ||
704 | /** | |
705 | Returns true if given property is expanded. | |
706 | ||
707 | Naturally, always returns false for properties that cannot be expanded. | |
708 | */ | |
709 | bool IsPropertyExpanded( wxPGPropArg id ) const; | |
710 | ||
711 | /** | |
712 | Returns true if property has been modified after value set or modify | |
713 | flag clear by software. | |
714 | */ | |
715 | bool IsPropertyModified( wxPGPropArg id ) const | |
716 | { | |
717 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false) | |
718 | return ( (p->GetFlags() & wxPG_PROP_MODIFIED) ? true : false ); | |
719 | } | |
720 | ||
721 | /** | |
722 | Returns true if property is shown (ie hideproperty with true not | |
723 | called for it). | |
724 | */ | |
725 | bool IsPropertyShown( wxPGPropArg id ) const | |
726 | { | |
727 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false) | |
728 | return (!(p->GetFlags() & wxPG_PROP_HIDDEN))?true:false; | |
729 | } | |
730 | ||
731 | /** Returns true if property value is set to unspecified. | |
732 | */ | |
733 | bool IsPropertyValueUnspecified( wxPGPropArg id ) const | |
734 | { | |
735 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false) | |
736 | return p->IsValueUnspecified(); | |
737 | } | |
738 | ||
739 | /** | |
740 | Disables (limit = true) or enables (limit = false) wxTextCtrl editor of | |
741 | a property, if it is not the sole mean to edit the value. | |
742 | */ | |
743 | void LimitPropertyEditing( wxPGPropArg id, bool limit = true ); | |
744 | ||
745 | /** If state is shown in it's grid, refresh it now. | |
746 | */ | |
747 | virtual void RefreshGrid( wxPropertyGridPageState* state = NULL ); | |
748 | ||
749 | #if wxPG_INCLUDE_ADVPROPS | |
750 | /** | |
751 | Initializes additional property editors (SpinCtrl etc.). Causes | |
752 | references to most object files in the library, so calling this may | |
753 | cause significant increase in executable size when linking with static | |
754 | library. | |
755 | */ | |
756 | static void RegisterAdditionalEditors(); | |
757 | #else | |
758 | static void RegisterAdditionalEditors() { } | |
759 | #endif | |
760 | ||
761 | /** Replaces property with id with newly created property. For example, | |
762 | this code replaces existing property named "Flags" with one that | |
763 | will have different set of items: | |
764 | @code | |
765 | pg->ReplaceProperty("Flags", | |
766 | wxFlagsProperty("Flags", wxPG_LABEL, newItems)) | |
767 | @endcode | |
768 | For more info, see wxPropertyGrid::Insert. | |
769 | */ | |
770 | wxPGProperty* ReplaceProperty( wxPGPropArg id, wxPGProperty* property ); | |
771 | ||
772 | /** @anchor propgridinterface_editablestate_flags | |
773 | ||
774 | Flags for wxPropertyGridInterface::SaveEditableState() and | |
775 | wxPropertyGridInterface::RestoreEditableState(). | |
776 | */ | |
777 | enum EditableStateFlags | |
778 | { | |
779 | /** Include selected property. */ | |
780 | SelectionState = 0x01, | |
781 | /** Include expanded/collapsed property information. */ | |
782 | ExpandedState = 0x02, | |
783 | /** Include scrolled position. */ | |
784 | ScrollPosState = 0x04, | |
785 | /** Include selected page information. | |
786 | Only applies to wxPropertyGridManager. */ | |
787 | PageState = 0x08, | |
788 | /** Include splitter position. Stored for each page. */ | |
789 | SplitterPosState = 0x10, | |
62805170 JS |
790 | /** Include description box size. |
791 | Only applies to wxPropertyGridManager. */ | |
792 | DescBoxState = 0x20, | |
1c4293cb VZ |
793 | |
794 | /** | |
795 | Include all supported user editable state information. | |
796 | This is usually the default value. */ | |
797 | AllStates = SelectionState | | |
798 | ExpandedState | | |
799 | ScrollPosState | | |
800 | PageState | | |
62805170 JS |
801 | SplitterPosState | |
802 | DescBoxState | |
1c4293cb VZ |
803 | }; |
804 | ||
805 | /** | |
806 | Restores user-editable state. | |
807 | ||
808 | See also wxPropertyGridInterface::SaveEditableState(). | |
809 | ||
810 | @param src | |
811 | String generated by SaveEditableState. | |
812 | ||
813 | @param restoreStates | |
814 | Which parts to restore from source string. See @ref | |
815 | propgridinterface_editablestate_flags "list of editable state | |
816 | flags". | |
817 | ||
818 | @return | |
819 | False if there was problem reading the string. | |
820 | ||
821 | @remarks | |
822 | If some parts of state (such as scrolled or splitter position) fail to | |
823 | restore correctly, please make sure that you call this function after | |
824 | wxPropertyGrid size has been set (this may sometimes be tricky when | |
825 | sizers are used). | |
826 | */ | |
827 | bool RestoreEditableState( const wxString& src, | |
828 | int restoreStates = AllStates ); | |
829 | ||
830 | /** | |
831 | Used to acquire user-editable state (selected property, expanded | |
832 | properties, scrolled position, splitter positions). | |
833 | ||
834 | @param includedStates | |
835 | Which parts of state to include. See @ref | |
836 | propgridinterface_editablestate_flags "list of editable state flags". | |
837 | */ | |
838 | wxString SaveEditableState( int includedStates = AllStates ) const; | |
839 | ||
840 | /** | |
841 | Lets user to set the strings listed in the choice dropdown of a | |
842 | wxBoolProperty. Defaults are "True" and "False", so changing them to, | |
843 | say, "Yes" and "No" may be useful in some less technical applications. | |
844 | */ | |
845 | static void SetBoolChoices( const wxString& trueChoice, | |
846 | const wxString& falseChoice ); | |
847 | ||
1c4293cb VZ |
848 | /** Sets an attribute for this property. |
849 | @param name | |
850 | Text identifier of attribute. See @ref propgrid_property_attributes. | |
851 | @param value | |
852 | Value of attribute. | |
853 | @param argFlags | |
854 | Optional. Use wxPG_RECURSE to set the attribute to child properties | |
855 | recursively. | |
856 | */ | |
857 | void SetPropertyAttribute( wxPGPropArg id, | |
858 | const wxString& attrName, | |
859 | wxVariant value, | |
860 | long argFlags = 0 ) | |
861 | { | |
862 | DoSetPropertyAttribute(id,attrName,value,argFlags); | |
863 | } | |
864 | ||
3c26d11b JS |
865 | /** Sets property attribute for all applicapple properties. |
866 | Be sure to use this method only after all properties have been | |
867 | added to the grid. | |
868 | */ | |
869 | void SetPropertyAttributeAll( const wxString& attrName, wxVariant value ); | |
870 | ||
e2ca6599 JS |
871 | /** |
872 | Sets background colour of a property. | |
873 | ||
874 | @param id | |
875 | Property name or pointer. | |
876 | ||
877 | @param colour | |
878 | New background colour. | |
879 | ||
880 | @param recursively | |
881 | If True, child properties are affected recursively. Property | |
882 | categories are skipped if this flag is used. | |
883 | */ | |
884 | void SetPropertyBackgroundColour( wxPGPropArg id, | |
885 | const wxColour& colour, | |
886 | bool recursively = true ); | |
887 | ||
888 | /** Resets text and background colours of given property. | |
889 | */ | |
890 | void SetPropertyColoursToDefault( wxPGPropArg id ); | |
891 | ||
892 | /** | |
893 | Sets text colour of a property. | |
894 | ||
895 | @param id | |
896 | Property name or pointer. | |
897 | ||
898 | @param colour | |
899 | New background colour. | |
900 | ||
901 | @param recursively | |
902 | If True, child properties are affected recursively. Property | |
903 | categories are skipped if this flag is used. | |
904 | */ | |
905 | void SetPropertyTextColour( wxPGPropArg id, | |
906 | const wxColour& col, | |
907 | bool recursively = true ); | |
908 | ||
909 | /** | |
910 | Returns background colour of first cell of a property. | |
911 | */ | |
912 | wxColour GetPropertyBackgroundColour( wxPGPropArg id ) const | |
913 | { | |
914 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour()) | |
915 | return p->GetCell(0).GetBgCol(); | |
916 | } | |
917 | ||
918 | /** | |
919 | Returns text colour of first cell of a property. | |
920 | */ | |
921 | wxColour GetPropertyTextColour( wxPGPropArg id ) const | |
922 | { | |
923 | wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour()) | |
924 | return p->GetCell(0).GetFgCol(); | |
925 | } | |
926 | ||
1c4293cb VZ |
927 | /** Sets text, bitmap, and colours for given column's cell. |
928 | ||
929 | @remarks | |
930 | - You can set label cell by setting column to 0. | |
931 | - You can use wxPG_LABEL as text to use default text for column. | |
932 | */ | |
933 | void SetPropertyCell( wxPGPropArg id, | |
934 | int column, | |
935 | const wxString& text = wxEmptyString, | |
936 | const wxBitmap& bitmap = wxNullBitmap, | |
937 | const wxColour& fgCol = wxNullColour, | |
d7e2b522 | 938 | const wxColour& bgCol = wxNullColour ); |
1c4293cb | 939 | |
1c4293cb VZ |
940 | #ifndef SWIG |
941 | /** Sets client data (void*) of a property. | |
942 | @remarks | |
943 | This untyped client data has to be deleted manually. | |
944 | */ | |
945 | void SetPropertyClientData( wxPGPropArg id, void* clientData ) | |
946 | { | |
947 | wxPG_PROP_ARG_CALL_PROLOG() | |
948 | p->SetClientData(clientData); | |
949 | } | |
950 | ||
951 | /** Sets editor for a property. | |
952 | ||
953 | @param editor | |
954 | For builtin editors, use wxPGEditor_X, where X is builtin editor's | |
955 | name (TextCtrl, Choice, etc. see wxPGEditor documentation for full | |
956 | list). | |
957 | ||
958 | For custom editors, use pointer you received from | |
959 | wxPropertyGrid::RegisterEditorClass(). | |
960 | */ | |
961 | void SetPropertyEditor( wxPGPropArg id, const wxPGEditor* editor ) | |
962 | { | |
963 | wxPG_PROP_ARG_CALL_PROLOG() | |
964 | wxCHECK_RET( editor, wxT("unknown/NULL editor") ); | |
965 | p->SetEditor(editor); | |
966 | RefreshProperty(p); | |
967 | } | |
968 | #endif | |
969 | ||
970 | /** Sets editor control of a property. As editor argument, use | |
971 | editor name string, such as "TextCtrl" or "Choice". | |
972 | */ | |
973 | void SetPropertyEditor( wxPGPropArg id, const wxString& editorName ) | |
974 | { | |
975 | SetPropertyEditor(id,GetEditorByName(editorName)); | |
976 | } | |
977 | ||
978 | /** Sets label of a property. | |
1c4293cb VZ |
979 | */ |
980 | void SetPropertyLabel( wxPGPropArg id, const wxString& newproplabel ); | |
981 | ||
020b0041 JS |
982 | /** |
983 | Sets name of a property. | |
984 | ||
985 | @param id | |
986 | Name or pointer of property which name to change. | |
987 | ||
988 | @param newName | |
989 | New name for property. | |
990 | */ | |
991 | void SetPropertyName( wxPGPropArg id, const wxString& newName ) | |
992 | { | |
993 | wxPG_PROP_ARG_CALL_PROLOG() | |
994 | m_pState->DoSetPropertyName( p, newName ); | |
995 | } | |
996 | ||
1c4293cb VZ |
997 | /** |
998 | Sets property (and, recursively, its children) to have read-only value. | |
999 | In other words, user cannot change the value in the editor, but they | |
1000 | can still copy it. | |
1001 | @remarks | |
1002 | This is mainly for use with textctrl editor. Not all other editors fully | |
1003 | support it. | |
1004 | @param flags | |
1005 | By default changes are applied recursively. Set this paramter | |
1006 | wxPG_DONT_RECURSE to prevent this. | |
1007 | */ | |
1008 | void SetPropertyReadOnly( wxPGPropArg id, | |
1009 | bool set = true, | |
1010 | int flags = wxPG_RECURSE ) | |
1011 | { | |
1012 | wxPG_PROP_ARG_CALL_PROLOG() | |
1013 | if ( flags & wxPG_RECURSE ) | |
1014 | p->SetFlagRecursively(wxPG_PROP_READONLY, set); | |
1015 | else | |
1016 | p->SetFlag(wxPG_PROP_READONLY); | |
1017 | } | |
1018 | ||
1019 | /** Sets property's value to unspecified. | |
1020 | If it has children (it may be category), then the same thing is done to | |
1021 | them. | |
1022 | */ | |
1023 | void SetPropertyValueUnspecified( wxPGPropArg id ); | |
1024 | ||
1025 | #ifndef SWIG | |
1026 | /** Sets various property values from a list of wxVariants. If property with | |
1027 | name is missing from the grid, new property is created under given | |
1028 | default category (or root if omitted). | |
1029 | */ | |
1030 | void SetPropertyValues( const wxVariantList& list, | |
1031 | wxPGPropArg defaultCategory = wxNullProperty ) | |
1032 | { | |
1033 | wxPGProperty *p; | |
1034 | if ( defaultCategory.HasName() ) p = defaultCategory.GetPtr(this); | |
1035 | else p = defaultCategory.GetPtr0(); | |
1036 | m_pState->DoSetPropertyValues(list, p); | |
1037 | } | |
1038 | ||
1039 | void SetPropertyValues( const wxVariant& list, | |
1040 | wxPGPropArg defaultCategory = wxNullProperty ) | |
1041 | { | |
1042 | SetPropertyValues(list.GetList(),defaultCategory); | |
1043 | } | |
1044 | #endif | |
1045 | ||
1046 | /** Associates the help string with property. | |
1047 | @remarks | |
1048 | By default, text is shown either in the manager's "description" | |
1049 | text box or in the status bar. If extra window style | |
1050 | wxPG_EX_HELP_AS_TOOLTIPS is used, then the text will appear as a | |
1051 | tooltip. | |
1052 | */ | |
1053 | void SetPropertyHelpString( wxPGPropArg id, const wxString& helpString ) | |
1054 | { | |
1055 | wxPG_PROP_ARG_CALL_PROLOG() | |
1056 | p->SetHelpString(helpString); | |
1057 | } | |
1058 | ||
1059 | /** Set wxBitmap in front of the value. | |
1060 | @remarks | |
1061 | - Bitmap will be scaled to a size returned by | |
1062 | wxPropertyGrid::GetImageSize(); | |
1063 | */ | |
1064 | void SetPropertyImage( wxPGPropArg id, wxBitmap& bmp ) | |
1065 | { | |
1066 | wxPG_PROP_ARG_CALL_PROLOG() | |
1067 | p->SetValueImage(bmp); | |
1068 | RefreshProperty(p); | |
1069 | } | |
1070 | ||
1071 | /** Sets max length of property's text. | |
1072 | */ | |
1073 | bool SetPropertyMaxLength( wxPGPropArg id, int maxLen ); | |
1074 | ||
1075 | #if wxUSE_VALIDATORS | |
1076 | /** Sets validator of a property. | |
1077 | */ | |
1078 | void SetPropertyValidator( wxPGPropArg id, const wxValidator& validator ) | |
1079 | { | |
1080 | wxPG_PROP_ARG_CALL_PROLOG() | |
1081 | p->SetValidator(validator); | |
1082 | } | |
1083 | #endif | |
1084 | ||
1085 | #ifndef SWIG | |
1086 | /** Sets value (long integer) of a property. | |
1087 | */ | |
1088 | void SetPropertyValue( wxPGPropArg id, long value ) | |
1089 | { | |
1090 | wxVariant v(value); | |
1091 | SetPropVal( id, v ); | |
1092 | } | |
1093 | ||
1094 | /** Sets value (integer) of a property. | |
1095 | */ | |
1096 | void SetPropertyValue( wxPGPropArg id, int value ) | |
1097 | { | |
1098 | wxVariant v((long)value); | |
1099 | SetPropVal( id, v ); | |
1100 | } | |
1101 | /** Sets value (floating point) of a property. | |
1102 | */ | |
1103 | void SetPropertyValue( wxPGPropArg id, double value ) | |
1104 | { | |
1105 | wxVariant v(value); | |
1106 | SetPropVal( id, v ); | |
1107 | } | |
1108 | /** Sets value (bool) of a property. | |
1109 | */ | |
1110 | void SetPropertyValue( wxPGPropArg id, bool value ) | |
1111 | { | |
1112 | wxVariant v(value); | |
1113 | SetPropVal( id, v ); | |
1114 | } | |
a6f2417d JS |
1115 | #if wxUSE_WCHAR_T |
1116 | void SetPropertyValue( wxPGPropArg id, const wchar_t* value ) | |
1117 | { | |
1118 | SetPropertyValueString( id, wxString(value) ); | |
1119 | } | |
1120 | #endif | |
1121 | void SetPropertyValue( wxPGPropArg id, const char* value ) | |
1c4293cb VZ |
1122 | { |
1123 | SetPropertyValueString( id, wxString(value) ); | |
1124 | } | |
1125 | void SetPropertyValue( wxPGPropArg id, const wxString& value ) | |
1126 | { | |
1127 | SetPropertyValueString( id, value ); | |
1128 | } | |
1129 | ||
1130 | /** Sets value (wxArrayString) of a property. | |
1131 | */ | |
1132 | void SetPropertyValue( wxPGPropArg id, const wxArrayString& value ) | |
1133 | { | |
1134 | wxVariant v(value); | |
1135 | SetPropVal( id, v ); | |
1136 | } | |
1137 | ||
1138 | #if wxUSE_DATETIME | |
1139 | void SetPropertyValue( wxPGPropArg id, const wxDateTime& value ) | |
1140 | { | |
1141 | wxVariant v(value); | |
1142 | SetPropVal( id, v ); | |
1143 | } | |
1144 | #endif | |
1145 | ||
1146 | /** Sets value (wxObject*) of a property. | |
1147 | */ | |
1148 | void SetPropertyValue( wxPGPropArg id, wxObject* value ) | |
1149 | { | |
1150 | wxVariant v(value); | |
1151 | SetPropVal( id, v ); | |
1152 | } | |
1153 | ||
1154 | void SetPropertyValue( wxPGPropArg id, wxObject& value ) | |
1155 | { | |
1156 | wxVariant v(&value); | |
1157 | SetPropVal( id, v ); | |
1158 | } | |
1159 | ||
0dc44cac | 1160 | #if wxUSE_LONGLONG_NATIVE |
1c4293cb VZ |
1161 | /** Sets value (wxLongLong&) of a property. |
1162 | */ | |
1163 | void SetPropertyValue( wxPGPropArg id, wxLongLong_t value ) | |
1164 | { | |
1165 | wxVariant v = WXVARIANT(wxLongLong(value)); | |
1166 | SetPropVal( id, v ); | |
1167 | } | |
1168 | /** Sets value (wxULongLong&) of a property. | |
1169 | */ | |
1170 | void SetPropertyValue( wxPGPropArg id, wxULongLong_t value ) | |
1171 | { | |
1172 | wxVariant v = WXVARIANT(wxULongLong(value)); | |
1173 | SetPropVal( id, v ); | |
1174 | } | |
0dc44cac JS |
1175 | #endif |
1176 | ||
1c4293cb VZ |
1177 | /** Sets value (wxArrayInt&) of a property. |
1178 | */ | |
1179 | void SetPropertyValue( wxPGPropArg id, const wxArrayInt& value ) | |
1180 | { | |
1181 | wxVariant v = WXVARIANT(value); | |
1182 | SetPropVal( id, v ); | |
1183 | } | |
1184 | #endif // !SWIG | |
1185 | ||
1186 | /** Sets value (wxString) of a property. | |
1187 | ||
1188 | @remarks | |
1189 | This method uses wxPGProperty::SetValueFromString, which all properties | |
1190 | should implement. This means that there should not be a type error, | |
1191 | and instead the string is converted to property's actual value type. | |
1192 | */ | |
1193 | void SetPropertyValueString( wxPGPropArg id, const wxString& value ); | |
1194 | ||
1195 | /** Sets value (wxVariant&) of a property. | |
1196 | ||
1197 | @remarks | |
1198 | Use wxPropertyGrid::ChangePropertyValue() instead if you need to run | |
1199 | through validation process and send property change event. | |
1200 | */ | |
1201 | void SetPropertyValue( wxPGPropArg id, wxVariant value ) | |
1202 | { | |
1203 | SetPropVal( id, value ); | |
1204 | } | |
1205 | ||
1206 | #ifndef SWIG | |
1207 | /** Sets value (wxVariant&) of a property. Same as SetPropertyValue, but | |
1208 | accepts reference. */ | |
1209 | void SetPropVal( wxPGPropArg id, wxVariant& value ); | |
1210 | #endif | |
1211 | ||
1212 | /** Adjusts how wxPropertyGrid behaves when invalid value is entered | |
1213 | in a property. | |
1214 | @param vfbFlags | |
1215 | See @link vfbflags list of valid flags values@endlink | |
1216 | */ | |
1217 | void SetValidationFailureBehavior( int vfbFlags ); | |
1218 | ||
1219 | #ifdef SWIG | |
1220 | %pythoncode { | |
1221 | def MapType(class_,factory): | |
1222 | "Registers Python type/class to property mapping.\n\nfactory: Property builder function/class." | |
1223 | global _type2property | |
1224 | try: | |
1225 | mappings = _type2property | |
1226 | except NameError: | |
1227 | raise AssertionError("call only after a propertygrid or manager instance constructed") | |
1228 | ||
1229 | mappings[class_] = factory | |
1230 | ||
1231 | ||
1232 | def DoDefaultTypeMappings(self): | |
1233 | "Map built-in properties." | |
1234 | global _type2property | |
1235 | try: | |
1236 | mappings = _type2property | |
1237 | ||
1238 | return | |
1239 | except NameError: | |
1240 | mappings = {} | |
1241 | _type2property = mappings | |
1242 | ||
1243 | mappings[str] = StringProperty | |
1244 | mappings[unicode] = StringProperty | |
1245 | mappings[int] = IntProperty | |
1246 | mappings[float] = FloatProperty | |
1247 | mappings[bool] = BoolProperty | |
1248 | mappings[list] = ArrayStringProperty | |
1249 | mappings[tuple] = ArrayStringProperty | |
1250 | mappings[wx.Font] = FontProperty | |
1251 | mappings[wx.Colour] = ColourProperty | |
1252 | "mappings[wx.Size] = SizeProperty" | |
1253 | "mappings[wx.Point] = PointProperty" | |
1254 | "mappings[wx.FontData] = FontDataProperty" | |
1255 | ||
1256 | def DoDefaultValueTypeMappings(self): | |
1257 | "Map pg value type ids to getter methods." | |
1258 | global _vt2getter | |
1259 | try: | |
1260 | vt2getter = _vt2getter | |
1261 | ||
1262 | return | |
1263 | except NameError: | |
1264 | vt2getter = {} | |
1265 | _vt2getter = vt2getter | |
1266 | ||
1267 | def GetPropertyValues(self,dict_=None, as_strings=False, inc_attributes=False): | |
1268 | "Returns values in the grid." | |
1269 | "" | |
1270 | "dict_: if not given, then a new one is created. dict_ can be" | |
1271 | " object as well, in which case it's __dict__ is used." | |
1272 | "as_strings: if True, then string representations of values" | |
1273 | " are fetched instead of native types. Useful for config and such." | |
1274 | "inc_attributes: if True, then property attributes are added" | |
1275 | " as @<propname>@<attr>." | |
1276 | "" | |
1277 | "Return value: dictionary with values. It is always a dictionary," | |
1278 | "so if dict_ was object with __dict__ attribute, then that attribute" | |
1279 | "is returned." | |
1280 | ||
1281 | if dict_ is None: | |
1282 | dict_ = {} | |
1283 | elif hasattr(dict_,'__dict__'): | |
1284 | dict_ = dict_.__dict__ | |
1285 | ||
1286 | if not as_strings: | |
1287 | getter = self.GetPropertyValue | |
1288 | else: | |
1289 | getter = self.GetPropertyValueAsString | |
1290 | ||
1291 | it = self.GetVIterator(PG_ITERATE_PROPERTIES) | |
1292 | while not it.AtEnd(): | |
1293 | p = it.GetProperty() | |
1294 | name = p.GetName() | |
1295 | ||
1296 | dict_[name] = getter(p) | |
1297 | ||
1298 | if inc_attributes: | |
1299 | attrs = p.GetAttributes() | |
1300 | if attrs and len(attrs): | |
1301 | dict_['@%s@attr'%name] = attrs | |
1302 | ||
1303 | it.Next() | |
1304 | ||
1305 | return dict_ | |
1306 | ||
1307 | GetValues = GetPropertyValues | |
1308 | ||
1309 | ||
1310 | def SetPropertyValues(self,dict_): | |
1311 | "Sets property values from dict_, which can be either\ndictionary or an object with __dict__ attribute." | |
1312 | "" | |
1313 | "autofill: If true, keys with not relevant properties" | |
1314 | " are auto-created. For more info, see AutoFill." | |
1315 | "" | |
1316 | "Notes:" | |
1317 | " * Keys starting with underscore are ignored." | |
1318 | " * Attributes can be set with entries named @<propname>@<attr>." | |
1319 | "" | |
1320 | ||
1321 | autofill = False | |
1322 | ||
1323 | if dict_ is None: | |
1324 | dict_ = {} | |
1325 | elif hasattr(dict_,'__dict__'): | |
1326 | dict_ = dict_.__dict__ | |
1327 | ||
1328 | attr_dicts = [] | |
1329 | ||
1330 | def set_sub_obj(k0,dict_): | |
1331 | for k,v in dict_.iteritems(): | |
1332 | if k[0] != '_': | |
1333 | if k.endswith('@attr'): | |
1334 | attr_dicts.append((k[1:-5],v)) | |
1335 | else: | |
1336 | try: | |
1337 | self.SetPropertyValue(k,v) | |
1338 | except: | |
1339 | try: | |
1340 | if autofill: | |
1341 | self._AutoFillOne(k0,k,v) | |
1342 | continue | |
1343 | except: | |
1344 | if isinstance(v,dict): | |
1345 | set_sub_obj(k,v) | |
1346 | elif hasattr(v,'__dict__'): | |
1347 | set_sub_obj(k,v.__dict__) | |
1348 | ||
1349 | ||
1350 | for k,v in attr_dicts: | |
1351 | p = GetPropertyByName(k) | |
1352 | if not p: | |
1353 | raise AssertionError("No such property: '%s'"%k) | |
1354 | for an,av in v.iteritems(): | |
1355 | p.SetAttribute(an, av) | |
1356 | ||
1357 | ||
1358 | cur_page = False | |
1359 | is_manager = isinstance(self,PropertyGridManager) | |
1360 | ||
1361 | try: | |
1362 | set_sub_obj(self.GetGrid().GetRoot(),dict_) | |
1363 | except: | |
1364 | import traceback | |
1365 | traceback.print_exc() | |
1366 | ||
1367 | self.Refresh() | |
1368 | ||
1369 | SetValues = SetPropertyValues | |
1370 | ||
1371 | def _AutoFillMany(self,cat,dict_): | |
1372 | for k,v in dict_.iteritems(): | |
1373 | self._AutoFillOne(cat,k,v) | |
1374 | ||
1375 | ||
1376 | def _AutoFillOne(self,cat,k,v): | |
1377 | global _type2property | |
1378 | ||
1379 | factory = _type2property.get(v.__class__,None) | |
1380 | ||
1381 | if factory: | |
1382 | self.AppendIn( cat, factory(k,k,v) ) | |
1383 | elif hasattr(v,'__dict__'): | |
1384 | cat2 = self.AppendIn( cat, PropertyCategory(k) ) | |
1385 | self._AutoFillMany(cat2,v.__dict__) | |
1386 | elif isinstance(v,dict): | |
1387 | cat2 = self.AppendIn( cat, PropertyCategory(k) ) | |
1388 | self._AutoFillMany(cat2,v) | |
1389 | elif not k.startswith('_'): | |
1390 | raise AssertionError("member '%s' is of unregisted type/class '%s'"%(k,v.__class__)) | |
1391 | ||
1392 | ||
1393 | def AutoFill(self,obj,parent=None): | |
1394 | "Clears properties and re-fills to match members and\nvalues of given object or dictionary obj." | |
1395 | ||
1396 | self.edited_objects[parent] = obj | |
1397 | ||
1398 | cur_page = False | |
1399 | is_manager = isinstance(self,PropertyGridManager) | |
1400 | ||
1401 | if not parent: | |
1402 | if is_manager: | |
1403 | page = self.GetCurrentPage() | |
1404 | page.Clear() | |
1405 | parent = page.GetRoot() | |
1406 | else: | |
1407 | self.Clear() | |
1408 | parent = self.GetGrid().GetRoot() | |
1409 | else: | |
1410 | it = self.GetIterator(PG_ITERATE_PROPERTIES, parent) | |
1411 | it.Next() # Skip the parent | |
1412 | while not it.AtEnd(): | |
1413 | p = it.GetProperty() | |
1414 | if not p.IsSomeParent(parent): | |
1415 | break | |
1416 | ||
1417 | self.DeleteProperty(p) | |
1418 | ||
1419 | name = p.GetName() | |
1420 | it.Next() | |
1421 | ||
1422 | if not is_manager or page == self.GetCurrentPage(): | |
1423 | self.Freeze() | |
1424 | cur_page = True | |
1425 | ||
1426 | try: | |
1427 | self._AutoFillMany(parent,obj.__dict__) | |
1428 | except: | |
1429 | import traceback | |
1430 | traceback.print_exc() | |
1431 | ||
1432 | if cur_page: | |
1433 | self.Thaw() | |
1434 | ||
1435 | def RegisterEditor(self, editor, editorName=None): | |
1436 | "Transform class into instance, if necessary." | |
1437 | if not isinstance(editor, PGEditor): | |
1438 | editor = editor() | |
1439 | if not editorName: | |
1440 | editorName = editor.__class__.__name__ | |
1441 | try: | |
1442 | self._editor_instances.append(editor) | |
1443 | except: | |
1444 | self._editor_instances = [editor] | |
1445 | RegisterEditor(editor, editorName) | |
1446 | ||
1447 | def GetPropertyClientData(self, p): | |
1448 | if isinstance(p, basestring): | |
1449 | p = self.GetPropertyByName(p) | |
1450 | return p.GetClientData() | |
1451 | ||
1452 | def SetPropertyClientData(self, p, data): | |
1453 | if isinstance(p, basestring): | |
1454 | p = self.GetPropertyByName(p) | |
1455 | return p.SetClientData(data) | |
1456 | } | |
1457 | #endif | |
1458 | ||
1459 | // GetPropertyByName With nice assertion error message. | |
1460 | wxPGProperty* GetPropertyByNameA( const wxString& name ) const; | |
1461 | ||
1462 | static wxPGEditor* GetEditorByName( const wxString& editorName ); | |
1463 | ||
1464 | virtual void RefreshProperty( wxPGProperty* p ) = 0; | |
1465 | ||
1466 | protected: | |
1467 | ||
62805170 JS |
1468 | /** |
1469 | In derived class, implement to set editable state component with | |
1470 | given name to given value. | |
1471 | */ | |
1472 | virtual bool SetEditableStateItem( const wxString& name, wxVariant value ) | |
1473 | { | |
1474 | wxUnusedVar(name); | |
1475 | wxUnusedVar(value); | |
1476 | return false; | |
1477 | } | |
1478 | ||
1479 | /** | |
1480 | In derived class, implement to return editable state component with | |
1481 | given name. | |
1482 | */ | |
1483 | virtual wxVariant GetEditableStateItem( const wxString& name ) const | |
1484 | { | |
1485 | wxUnusedVar(name); | |
1486 | return wxNullVariant; | |
1487 | } | |
1488 | ||
1c4293cb VZ |
1489 | // Returns page state data for given (sub) page (-1 means current page). |
1490 | virtual wxPropertyGridPageState* GetPageState( int pageIndex ) const | |
1491 | { | |
1492 | if ( pageIndex <= 0 ) | |
1493 | return m_pState; | |
1494 | return NULL; | |
1495 | } | |
1496 | ||
1497 | virtual bool DoSelectPage( int WXUNUSED(index) ) { return true; } | |
1498 | ||
1499 | // Default call's m_pState's BaseGetPropertyByName | |
1500 | virtual wxPGProperty* DoGetPropertyByName( const wxString& name ) const; | |
1501 | ||
1502 | #ifndef SWIG | |
1503 | ||
1504 | // Deriving classes must set this (it must be only or current page). | |
1505 | wxPropertyGridPageState* m_pState; | |
1506 | ||
1507 | // Intermediate version needed due to wxVariant copying inefficiency | |
1508 | void DoSetPropertyAttribute( wxPGPropArg id, | |
1509 | const wxString& name, | |
1510 | wxVariant& value, long argFlags ); | |
1511 | ||
1512 | // Empty string object to return from member functions returning const | |
1513 | // wxString&. | |
1514 | wxString m_emptyString; | |
1515 | ||
1516 | private: | |
1517 | // Cannot be GetGrid() due to ambiguity issues. | |
1518 | wxPropertyGrid* GetPropertyGrid() | |
1519 | { | |
1520 | return m_pState->GetGrid(); | |
1521 | } | |
1522 | ||
1523 | // Cannot be GetGrid() due to ambiguity issues. | |
1524 | const wxPropertyGrid* GetPropertyGrid() const | |
1525 | { | |
1526 | return (const wxPropertyGrid*) m_pState->GetGrid(); | |
1527 | } | |
1528 | #endif // #ifndef SWIG | |
1529 | ||
1530 | friend class wxPropertyGrid; | |
1531 | friend class wxPropertyGridManager; | |
1532 | }; | |
1533 | ||
f4bc1aa2 JS |
1534 | #endif // wxUSE_PROPGRID |
1535 | ||
1c4293cb | 1536 | #endif // __WX_PROPGRID_PROPGRIDIFACE_H__ |