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