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