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