]> git.saurik.com Git - wxWidgets.git/blob - include/wx/propgrid/property.h
864227349de2df97c5ff7229e3e9dedff064023e
[wxWidgets.git] / include / wx / propgrid / property.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/property.h
3 // Purpose: wxPGProperty and related support classes
4 // Author: Jaakko Salli
5 // Modified by:
6 // Created: 2008-08-23
7 // RCS-ID: $Id$
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PROPGRID_PROPERTY_H_
13 #define _WX_PROPGRID_PROPERTY_H_
14
15 #if wxUSE_PROPGRID
16
17 #include "wx/propgrid/propgriddefs.h"
18
19 // -----------------------------------------------------------------------
20
21 #define wxNullProperty ((wxPGProperty*)NULL)
22
23
24 /** @class wxPGPaintData
25
26 Contains information relayed to property's OnCustomPaint.
27 */
28 struct wxPGPaintData
29 {
30 /** wxPropertyGrid. */
31 const wxPropertyGrid* m_parent;
32
33 /**
34 Normally -1, otherwise index to drop-down list item that has to be
35 drawn.
36 */
37 int m_choiceItem;
38
39 /** Set to drawn width in OnCustomPaint (optional). */
40 int m_drawnWidth;
41
42 /**
43 In a measure item call, set this to the height of item at m_choiceItem
44 index.
45 */
46 int m_drawnHeight;
47 };
48
49
50 #ifndef SWIG
51
52
53 // space between vertical sides of a custom image
54 #define wxPG_CUSTOM_IMAGE_SPACINGY 1
55
56 // space between caption and selection rectangle,
57 #define wxPG_CAPRECTXMARGIN 2
58
59 // horizontally and vertically
60 #define wxPG_CAPRECTYMARGIN 1
61
62
63 /** @class wxPGCellRenderer
64
65 Base class for wxPropertyGrid cell renderers.
66 */
67 class WXDLLIMPEXP_PROPGRID wxPGCellRenderer
68 {
69 public:
70
71 wxPGCellRenderer( unsigned int refCount = 1 )
72 : m_refCount(refCount) { }
73 virtual ~wxPGCellRenderer() { }
74
75 // Render flags
76 enum
77 {
78 // We are painting selected item
79 Selected = 0x00010000,
80
81 // We are painting item in choice popup
82 ChoicePopup = 0x00020000,
83
84 // We are rendering wxOwnerDrawnComboBox control
85 // (or other owner drawn control, but that is only
86 // officially supported one ATM).
87 Control = 0x00040000,
88
89 // We are painting a disable property
90 Disabled = 0x00080000,
91
92 // We are painting selected, disabled, or similar
93 // item that dictates fore- and background colours,
94 // overriding any cell values.
95 DontUseCellFgCol = 0x00100000,
96 DontUseCellBgCol = 0x00200000,
97 DontUseCellColours = DontUseCellFgCol |
98 DontUseCellBgCol
99 };
100
101 virtual void Render( wxDC& dc,
102 const wxRect& rect,
103 const wxPropertyGrid* propertyGrid,
104 wxPGProperty* property,
105 int column,
106 int item,
107 int flags ) const = 0;
108
109 /** Returns size of the image in front of the editable area.
110 @remarks
111 If property is NULL, then this call is for a custom value. In that case
112 the item is index to wxPropertyGrid's custom values.
113 */
114 virtual wxSize GetImageSize( const wxPGProperty* property,
115 int column,
116 int item ) const;
117
118 /** Paints property category selection rectangle.
119 */
120 virtual void DrawCaptionSelectionRect( wxDC& dc,
121 int x, int y,
122 int w, int h ) const;
123
124 /** Utility to draw vertically centered text.
125 */
126 void DrawText( wxDC& dc,
127 const wxRect& rect,
128 int imageWidth,
129 const wxString& text ) const;
130
131 /**
132 Utility to draw editor's value, or vertically aligned text if editor is
133 NULL.
134 */
135 void DrawEditorValue( wxDC& dc, const wxRect& rect,
136 int xOffset, const wxString& text,
137 wxPGProperty* property,
138 const wxPGEditor* editor ) const;
139
140 /** Utility to render cell bitmap and set text colour plus bg brush colour.
141
142 Returns image width that, for instance, can be passed to DrawText.
143 */
144 int PreDrawCell( wxDC& dc,
145 const wxRect& rect,
146 const wxPGCell& cell,
147 int flags ) const;
148
149 void IncRef()
150 {
151 m_refCount++;
152 }
153
154 void DecRef()
155 {
156 m_refCount--;
157 if ( !m_refCount )
158 delete this;
159 }
160 protected:
161
162 private:
163 unsigned int m_refCount;
164 };
165
166
167 class WXDLLIMPEXP_PROPGRID wxPGCellData : public wxObjectRefData
168 {
169 friend class wxPGCell;
170 public:
171 wxPGCellData();
172
173 void SetText( const wxString& text )
174 {
175 m_text = text;
176 m_hasValidText = true;
177 }
178 void SetBitmap( const wxBitmap& bitmap ) { m_bitmap = bitmap; }
179 void SetFgCol( const wxColour& col ) { m_fgCol = col; }
180 void SetBgCol( const wxColour& col ) { m_bgCol = col; }
181
182 protected:
183 virtual ~wxPGCellData() { }
184
185 wxString m_text;
186 wxBitmap m_bitmap;
187 wxColour m_fgCol;
188 wxColour m_bgCol;
189
190 // True if m_text is valid and specified
191 bool m_hasValidText;
192 };
193
194 /** @class wxPGCell
195
196 Base class for simple wxPropertyGrid cell information.
197 */
198 class WXDLLIMPEXP_PROPGRID wxPGCell : public wxObject
199 {
200 public:
201 wxPGCell();
202 wxPGCell(const wxPGCell& other)
203 : wxObject(other)
204 {
205 }
206
207 wxPGCell( const wxString& text,
208 const wxBitmap& bitmap = wxNullBitmap,
209 const wxColour& fgCol = wxNullColour,
210 const wxColour& bgCol = wxNullColour );
211
212 virtual ~wxPGCell() { }
213
214 wxPGCellData* GetData()
215 {
216 return (wxPGCellData*) m_refData;
217 }
218
219 const wxPGCellData* GetData() const
220 {
221 return (const wxPGCellData*) m_refData;
222 }
223
224 bool HasText() const
225 {
226 return (m_refData && GetData()->m_hasValidText);
227 }
228
229 /**
230 Merges valid data from srcCell into this.
231 */
232 void MergeFrom( const wxPGCell& srcCell );
233
234 void SetText( const wxString& text );
235 void SetBitmap( const wxBitmap& bitmap );
236 void SetFgCol( const wxColour& col );
237 void SetBgCol( const wxColour& col );
238
239 const wxString& GetText() const { return GetData()->m_text; }
240 const wxBitmap& GetBitmap() const { return GetData()->m_bitmap; }
241 const wxColour& GetFgCol() const { return GetData()->m_fgCol; }
242 const wxColour& GetBgCol() const { return GetData()->m_bgCol; }
243
244 wxPGCell& operator=( const wxPGCell& other )
245 {
246 if ( this != &other )
247 {
248 Ref(other);
249 }
250 return *this;
251 }
252
253 protected:
254 virtual wxObjectRefData *CreateRefData() const
255 { return new wxPGCellData(); }
256
257 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
258 };
259
260
261 /** @class wxPGDefaultRenderer
262
263 Default cell renderer, that can handles the common
264 scenarios.
265 */
266 class WXDLLIMPEXP_PROPGRID wxPGDefaultRenderer : public wxPGCellRenderer
267 {
268 public:
269 virtual void Render( wxDC& dc,
270 const wxRect& rect,
271 const wxPropertyGrid* propertyGrid,
272 wxPGProperty* property,
273 int column,
274 int item,
275 int flags ) const;
276
277 virtual wxSize GetImageSize( const wxPGProperty* property,
278 int column,
279 int item ) const;
280
281 protected:
282 };
283
284 // -----------------------------------------------------------------------
285
286 /** @class wxPGAttributeStorage
287
288 wxPGAttributeStorage is somewhat optimized storage for
289 key=variant pairs (ie. a map).
290 */
291 class WXDLLIMPEXP_PROPGRID wxPGAttributeStorage
292 {
293 public:
294 wxPGAttributeStorage();
295 ~wxPGAttributeStorage();
296
297 void Set( const wxString& name, const wxVariant& value );
298 unsigned int GetCount() const { return (unsigned int) m_map.size(); }
299 wxVariant FindValue( const wxString& name ) const
300 {
301 wxPGHashMapS2P::const_iterator it = m_map.find(name);
302 if ( it != m_map.end() )
303 {
304 wxVariantData* data = (wxVariantData*) it->second;
305 data->IncRef();
306 return wxVariant(data, it->first);
307 }
308 return wxVariant();
309 }
310
311 typedef wxPGHashMapS2P::const_iterator const_iterator;
312 const_iterator StartIteration() const
313 {
314 return m_map.begin();
315 }
316 bool GetNext( const_iterator& it, wxVariant& variant ) const
317 {
318 if ( it == m_map.end() )
319 return false;
320
321 wxVariantData* data = (wxVariantData*) it->second;
322 data->IncRef();
323 variant.SetData(data);
324 variant.SetName(it->first);
325 ++it;
326 return true;
327 }
328
329 protected:
330 wxPGHashMapS2P m_map;
331 };
332
333 #endif // !SWIG
334
335 // -----------------------------------------------------------------------
336
337 /** @section propgrid_propflags wxPGProperty Flags
338 @{
339 */
340
341 enum wxPG_PROPERTY_FLAGS
342 {
343
344 /** Indicates bold font.
345 */
346 wxPG_PROP_MODIFIED = 0x0001,
347
348 /** Disables ('greyed' text and editor does not activate) property.
349 */
350 wxPG_PROP_DISABLED = 0x0002,
351
352 /** Hider button will hide this property.
353 */
354 wxPG_PROP_HIDDEN = 0x0004,
355
356 /** This property has custom paint image just in front of its value.
357 If property only draws custom images into a popup list, then this
358 flag should not be set.
359 */
360 wxPG_PROP_CUSTOMIMAGE = 0x0008,
361
362 /** Do not create text based editor for this property (but button-triggered
363 dialog and choice are ok).
364 */
365 wxPG_PROP_NOEDITOR = 0x0010,
366
367 /** Property is collapsed, ie. it's children are hidden.
368 */
369 wxPG_PROP_COLLAPSED = 0x0020,
370
371 /**
372 If property is selected, then indicates that validation failed for pending
373 value.
374
375 If property is not selected, then indicates that the the actual property
376 value has failed validation (NB: this behavior is not currently supported,
377 but may be used in future).
378 */
379 wxPG_PROP_INVALID_VALUE = 0x0040,
380
381 // 0x0080,
382
383 /** Switched via SetWasModified(). Temporary flag - only used when
384 setting/changing property value.
385 */
386 wxPG_PROP_WAS_MODIFIED = 0x0200,
387
388 /**
389 If set, then child properties (if any) are private, and should be
390 "invisible" to the application.
391 */
392 wxPG_PROP_AGGREGATE = 0x0400,
393
394 /** If set, then child properties (if any) are copies and should not
395 be deleted in dtor.
396 */
397 wxPG_PROP_CHILDREN_ARE_COPIES = 0x0800,
398
399 /**
400 Classifies this item as a non-category.
401
402 Used for faster item type identification.
403 */
404 wxPG_PROP_PROPERTY = 0x1000,
405
406 /**
407 Classifies this item as a category.
408
409 Used for faster item type identification.
410 */
411 wxPG_PROP_CATEGORY = 0x2000,
412
413 /** Classifies this item as a property that has children, but is not aggregate
414 (ie children are not private).
415 */
416 wxPG_PROP_MISC_PARENT = 0x4000,
417
418 /** Property is read-only. Editor is still created.
419 */
420 wxPG_PROP_READONLY = 0x8000,
421
422 //
423 // NB: FLAGS ABOVE 0x8000 CANNOT BE USED WITH PROPERTY ITERATORS
424 //
425
426 /** Property's value is composed from values of child properties.
427 @remarks
428 This flag cannot be used with property iterators.
429 */
430 wxPG_PROP_COMPOSED_VALUE = 0x00010000,
431
432 /** Common value of property is selectable in editor.
433 @remarks
434 This flag cannot be used with property iterators.
435 */
436 wxPG_PROP_USES_COMMON_VALUE = 0x00020000,
437
438 /** Property can be set to unspecified value via editor.
439 Currently, this applies to following properties:
440 - wxIntProperty, wxUIntProperty, wxFloatProperty, wxEditEnumProperty:
441 Clear the text field
442
443 @remarks
444 This flag cannot be used with property iterators.
445 */
446 wxPG_PROP_AUTO_UNSPECIFIED = 0x00040000,
447
448 /** Indicates the bit useable by derived properties.
449 */
450 wxPG_PROP_CLASS_SPECIFIC_1 = 0x00080000,
451
452 /** Indicates the bit useable by derived properties.
453 */
454 wxPG_PROP_CLASS_SPECIFIC_2 = 0x00100000
455
456 };
457
458 /** Topmost flag.
459 */
460 #define wxPG_PROP_MAX wxPG_PROP_AUTO_UNSPECIFIED
461
462 /** Property with children must have one of these set, otherwise iterators
463 will not work correctly.
464 Code should automatically take care of this, however.
465 */
466 #define wxPG_PROP_PARENTAL_FLAGS \
467 (wxPG_PROP_AGGREGATE|wxPG_PROP_CATEGORY|wxPG_PROP_MISC_PARENT)
468
469 /** @}
470 */
471
472 // Combination of flags that can be stored by GetFlagsAsString
473 #define wxPG_STRING_STORED_FLAGS \
474 (wxPG_PROP_DISABLED|wxPG_PROP_HIDDEN|wxPG_PROP_NOEDITOR|wxPG_PROP_COLLAPSED)
475
476 // -----------------------------------------------------------------------
477
478 #ifndef SWIG
479
480 /**
481 @section propgrid_property_attributes wxPropertyGrid Property Attribute
482 Identifiers.
483
484 wxPGProperty::SetAttribute() and
485 wxPropertyGridInterface::SetPropertyAttribute() accept one of these as
486 attribute name argument.
487
488 You can use strings instead of constants. However, some of these
489 constants are redefined to use cached strings which may reduce
490 your binary size by some amount.
491
492 @{
493 */
494
495 /** Set default value for property.
496 */
497 #define wxPG_ATTR_DEFAULT_VALUE wxS("DefaultValue")
498
499 /** Universal, int or double. Minimum value for numeric properties.
500 */
501 #define wxPG_ATTR_MIN wxS("Min")
502
503 /** Universal, int or double. Maximum value for numeric properties.
504 */
505 #define wxPG_ATTR_MAX wxS("Max")
506
507 /** Universal, string. When set, will be shown as text after the displayed
508 text value. Alternatively, if third column is enabled, text will be shown
509 there (for any type of property).
510 */
511 #define wxPG_ATTR_UNITS wxS("Units")
512
513 /** Universal, string. When set, will be shown in property's value cell
514 when displayed value string is empty, or value is unspecified.
515 */
516 #define wxPG_ATTR_INLINE_HELP wxS("InlineHelp")
517
518 /** Universal, wxArrayString. Set to enable auto-completion in any
519 wxTextCtrl-based property editor.
520 */
521 #define wxPG_ATTR_AUTOCOMPLETE wxS("AutoComplete")
522
523 /** wxBoolProperty and wxFlagsProperty specific. Value type is bool.
524 Default value is False.
525
526 When set to True, bool property will use check box instead of a
527 combo box as its editor control. If you set this attribute
528 for a wxFlagsProperty, it is automatically applied to child
529 bool properties.
530 */
531 #define wxPG_BOOL_USE_CHECKBOX wxS("UseCheckbox")
532
533 /** wxBoolProperty and wxFlagsProperty specific. Value type is bool.
534 Default value is False.
535
536 Set to True for the bool property to cycle value on double click
537 (instead of showing the popup listbox). If you set this attribute
538 for a wxFlagsProperty, it is automatically applied to child
539 bool properties.
540 */
541 #define wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING wxS("UseDClickCycling")
542
543 /**
544 wxFloatProperty (and similar) specific, int, default -1.
545
546 Sets the (max) precision used when floating point value is rendered as
547 text. The default -1 means infinite precision.
548 */
549 #define wxPG_FLOAT_PRECISION wxS("Precision")
550
551 /**
552 The text will be echoed as asterisks (wxTE_PASSWORD will be passed to
553 textctrl etc).
554 */
555 #define wxPG_STRING_PASSWORD wxS("Password")
556
557 /** Define base used by a wxUIntProperty. Valid constants are
558 wxPG_BASE_OCT, wxPG_BASE_DEC, wxPG_BASE_HEX and wxPG_BASE_HEXL
559 (lowercase characters).
560 */
561 #define wxPG_UINT_BASE wxS("Base")
562
563 /** Define prefix rendered to wxUIntProperty. Accepted constants
564 wxPG_PREFIX_NONE, wxPG_PREFIX_0x, and wxPG_PREFIX_DOLLAR_SIGN.
565 <b>Note:</b> Only wxPG_PREFIX_NONE works with Decimal and Octal
566 numbers.
567 */
568 #define wxPG_UINT_PREFIX wxS("Prefix")
569
570 /**
571 wxFileProperty/wxImageFileProperty specific, wxChar*, default is
572 detected/varies.
573 Sets the wildcard used in the triggered wxFileDialog. Format is the same.
574 */
575 #define wxPG_FILE_WILDCARD wxS("Wildcard")
576
577 /** wxFileProperty/wxImageFileProperty specific, int, default 1.
578 When 0, only the file name is shown (i.e. drive and directory are hidden).
579 */
580 #define wxPG_FILE_SHOW_FULL_PATH wxS("ShowFullPath")
581
582 /** Specific to wxFileProperty and derived properties, wxString, default empty.
583 If set, then the filename is shown relative to the given path string.
584 */
585 #define wxPG_FILE_SHOW_RELATIVE_PATH wxS("ShowRelativePath")
586
587 /**
588 Specific to wxFileProperty and derived properties, wxString, default is
589 empty.
590
591 Sets the initial path of where to look for files.
592 */
593 #define wxPG_FILE_INITIAL_PATH wxS("InitialPath")
594
595 /** Specific to wxFileProperty and derivatives, wxString, default is empty.
596 Sets a specific title for the dir dialog.
597 */
598 #define wxPG_FILE_DIALOG_TITLE wxS("DialogTitle")
599
600 /** Specific to wxDirProperty, wxString, default is empty.
601 Sets a specific message for the dir dialog.
602 */
603 #define wxPG_DIR_DIALOG_MESSAGE wxS("DialogMessage")
604
605 /** Sets displayed date format for wxDateProperty.
606 */
607 #define wxPG_DATE_FORMAT wxS("DateFormat")
608
609 /** Sets wxDatePickerCtrl window style used with wxDateProperty. Default
610 is wxDP_DEFAULT | wxDP_SHOWCENTURY.
611 */
612 #define wxPG_DATE_PICKER_STYLE wxS("PickerStyle")
613
614 /** SpinCtrl editor, int or double. How much number changes when button is
615 pressed (or up/down on keybard).
616 */
617 #define wxPG_ATTR_SPINCTRL_STEP wxS("Step")
618
619 /** SpinCtrl editor, bool. If true, value wraps at Min/Max.
620 */
621 #define wxPG_ATTR_SPINCTRL_WRAP wxS("Wrap")
622
623 /**
624 wxMultiChoiceProperty, int.
625 If 0, no user strings allowed. If 1, user strings appear before list
626 strings. If 2, user strings appear after list string.
627 */
628 #define wxPG_ATTR_MULTICHOICE_USERSTRINGMODE wxS("UserStringMode")
629
630 /**
631 wxColourProperty and its kind, int, default 1.
632
633 Setting this attribute to 0 hides custom colour from property's list of
634 choices.
635 */
636 #define wxPG_COLOUR_ALLOW_CUSTOM wxS("AllowCustom")
637
638 /** @}
639 */
640
641 // Redefine attribute macros to use cached strings
642 #undef wxPG_ATTR_DEFAULT_VALUE
643 #define wxPG_ATTR_DEFAULT_VALUE wxPGGlobalVars->m_strDefaultValue
644 #undef wxPG_ATTR_MIN
645 #define wxPG_ATTR_MIN wxPGGlobalVars->m_strMin
646 #undef wxPG_ATTR_MAX
647 #define wxPG_ATTR_MAX wxPGGlobalVars->m_strMax
648 #undef wxPG_ATTR_UNITS
649 #define wxPG_ATTR_UNITS wxPGGlobalVars->m_strUnits
650 #undef wxPG_ATTR_INLINE_HELP
651 #define wxPG_ATTR_INLINE_HELP wxPGGlobalVars->m_strInlineHelp
652
653 #endif // !SWIG
654
655 // -----------------------------------------------------------------------
656
657 #ifndef SWIG
658
659 /** @class wxPGChoiceEntry
660 Data of a single wxPGChoices choice.
661 */
662 class WXDLLIMPEXP_PROPGRID wxPGChoiceEntry : public wxPGCell
663 {
664 public:
665 wxPGChoiceEntry();
666 wxPGChoiceEntry(const wxPGChoiceEntry& other)
667 : wxPGCell(other)
668 {
669 m_value = other.m_value;
670 }
671 wxPGChoiceEntry( const wxString& label,
672 int value = wxPG_INVALID_VALUE )
673 : wxPGCell(), m_value(value)
674 {
675 SetText(label);
676 }
677
678 virtual ~wxPGChoiceEntry() { }
679
680 void SetValue( int value ) { m_value = value; }
681 int GetValue() const { return m_value; }
682
683 wxPGChoiceEntry& operator=( const wxPGChoiceEntry& other )
684 {
685 if ( this != &other )
686 {
687 Ref(other);
688 }
689 m_value = other.m_value;
690 return *this;
691 }
692
693 protected:
694 int m_value;
695 };
696
697
698 typedef void* wxPGChoicesId;
699
700 class WXDLLIMPEXP_PROPGRID wxPGChoicesData
701 {
702 friend class wxPGChoices;
703 public:
704 // Constructor sets m_refCount to 1.
705 wxPGChoicesData();
706
707 void CopyDataFrom( wxPGChoicesData* data );
708
709 wxPGChoiceEntry& Insert( int index, const wxPGChoiceEntry& item );
710
711 // Delete all entries
712 void Clear();
713
714 unsigned int GetCount() const
715 {
716 return (unsigned int) m_items.size();
717 }
718
719 const wxPGChoiceEntry& Item( unsigned int i ) const
720 {
721 wxASSERT_MSG( i < GetCount(), "invalid index" );
722 return m_items[i];
723 }
724
725 wxPGChoiceEntry& Item( unsigned int i )
726 {
727 wxASSERT_MSG( i < GetCount(), "invalid index" );
728 return m_items[i];
729 }
730
731 void DecRef()
732 {
733 m_refCount--;
734 wxASSERT( m_refCount >= 0 );
735 if ( m_refCount == 0 )
736 delete this;
737 }
738
739 private:
740 wxVector<wxPGChoiceEntry> m_items;
741
742 // So that multiple properties can use the same set
743 int m_refCount;
744
745 virtual ~wxPGChoicesData();
746 };
747
748 #define wxPGChoicesEmptyData ((wxPGChoicesData*)NULL)
749
750 #endif // SWIG
751
752 /** @class wxPGChoices
753
754 Helper class for managing choices of wxPropertyGrid properties.
755 Each entry can have label, value, bitmap, text colour, and background
756 colour.
757
758 wxPGChoices uses reference counting, similar to other wxWidgets classes.
759 This means that assignment operator and copy constructor only copy the
760 reference and not the actual data. Use Copy() member function to create a
761 real copy.
762
763 @remarks If you do not specify value for entry, index is used.
764
765 @library{wxpropgrid}
766 @category{propgrid}
767 */
768 class WXDLLIMPEXP_PROPGRID wxPGChoices
769 {
770 public:
771 typedef long ValArrItem;
772
773 /** Default constructor. */
774 wxPGChoices()
775 {
776 Init();
777 }
778
779 /**
780 Copy constructor, uses reference counting. To create a real copy,
781 use Copy() member function instead.
782 */
783 wxPGChoices( const wxPGChoices& a )
784 {
785 if ( a.m_data != wxPGChoicesEmptyData )
786 {
787 m_data = a.m_data;
788 m_data->m_refCount++;
789 }
790 }
791
792 /**
793 Constructor.
794
795 @param labels
796 Labels for choices
797
798 @param values
799 Values for choices. If NULL, indexes are used.
800 */
801 wxPGChoices( const wxChar** labels, const long* values = NULL )
802 {
803 Init();
804 Set(labels,values);
805 }
806
807 /**
808 Constructor.
809
810 @param labels
811 Labels for choices
812
813 @param values
814 Values for choices. If empty, indexes are used.
815 */
816 wxPGChoices( const wxArrayString& labels,
817 const wxArrayInt& values = wxArrayInt() )
818 {
819 Init();
820 Set(labels,values);
821 }
822
823 /** Simple interface constructor. */
824 wxPGChoices( wxPGChoicesData* data )
825 {
826 wxASSERT(data);
827 m_data = data;
828 data->m_refCount++;
829 }
830
831 /** Destructor. */
832 ~wxPGChoices()
833 {
834 Free();
835 }
836
837 /**
838 Adds to current.
839
840 If did not have own copies, creates them now. If was empty, identical
841 to set except that creates copies.
842
843 @param labels
844 Labels for added choices.
845
846 @param values
847 Values for added choices. If empty, relevant entry indexes are used.
848 */
849 void Add( const wxChar** labels, const ValArrItem* values = NULL );
850
851 /** Version that works with wxArrayString and wxArrayInt. */
852 void Add( const wxArrayString& arr, const wxArrayInt& arrint = wxArrayInt() );
853
854 /**
855 Adds a single choice.
856
857 @param label
858 Label for added choice.
859
860 @param value
861 Value for added choice. If unspecified, index is used.
862 */
863 wxPGChoiceEntry& Add( const wxString& label,
864 int value = wxPG_INVALID_VALUE );
865
866 /** Adds a single item, with bitmap. */
867 wxPGChoiceEntry& Add( const wxString& label,
868 const wxBitmap& bitmap,
869 int value = wxPG_INVALID_VALUE );
870
871 /** Adds a single item with full entry information. */
872 wxPGChoiceEntry& Add( const wxPGChoiceEntry& entry )
873 {
874 return Insert(entry, -1);
875 }
876
877 /** Adds single item. */
878 wxPGChoiceEntry& AddAsSorted( const wxString& label,
879 int value = wxPG_INVALID_VALUE );
880
881 /**
882 Assigns choices data, using reference counting. To create a real copy,
883 use Copy() member function instead.
884 */
885 void Assign( const wxPGChoices& a )
886 {
887 AssignData(a.m_data);
888 }
889
890 void AssignData( wxPGChoicesData* data );
891
892 /** Delete all choices. */
893 void Clear();
894
895 /**
896 Returns a real copy of the choices.
897 */
898 wxPGChoices Copy() const
899 {
900 wxPGChoices dst;
901 dst.EnsureData();
902 dst.m_data->CopyDataFrom(m_data);
903 return dst;
904 }
905
906 void EnsureData()
907 {
908 if ( m_data == wxPGChoicesEmptyData )
909 m_data = new wxPGChoicesData();
910 }
911
912 /** Gets a unsigned number identifying this list. */
913 wxPGChoicesId GetId() const { return (wxPGChoicesId) m_data; };
914
915 const wxString& GetLabel( unsigned int ind ) const
916 {
917 return Item(ind).GetText();
918 }
919
920 unsigned int GetCount () const
921 {
922 if ( !m_data )
923 return 0;
924
925 return m_data->GetCount();
926 }
927
928 int GetValue( unsigned int ind ) const { return Item(ind).GetValue(); }
929
930 /** Returns array of values matching the given strings. Unmatching strings
931 result in wxPG_INVALID_VALUE entry in array.
932 */
933 wxArrayInt GetValuesForStrings( const wxArrayString& strings ) const;
934
935 /** Returns array of indices matching given strings. Unmatching strings
936 are added to 'unmatched', if not NULL.
937 */
938 wxArrayInt GetIndicesForStrings( const wxArrayString& strings,
939 wxArrayString* unmatched = NULL ) const;
940
941 int Index( const wxString& str ) const;
942 int Index( int val ) const;
943
944 /** Inserts single item. */
945 wxPGChoiceEntry& Insert( const wxString& label,
946 int index,
947 int value = wxPG_INVALID_VALUE );
948
949 /** Inserts a single item with full entry information. */
950 wxPGChoiceEntry& Insert( const wxPGChoiceEntry& entry, int index );
951
952 /** Returns false if this is a constant empty set of choices,
953 which should not be modified.
954 */
955 bool IsOk() const
956 {
957 return ( m_data != wxPGChoicesEmptyData );
958 }
959
960 const wxPGChoiceEntry& Item( unsigned int i ) const
961 {
962 wxASSERT( IsOk() );
963 return m_data->Item(i);
964 }
965
966 wxPGChoiceEntry& Item( unsigned int i )
967 {
968 wxASSERT( IsOk() );
969 return m_data->Item(i);
970 }
971
972 /** Removes count items starting at position nIndex. */
973 void RemoveAt(size_t nIndex, size_t count = 1);
974
975 #ifndef SWIG
976 /** Does not create copies for itself. */
977 void Set( const wxChar** labels, const long* values = NULL )
978 {
979 Free();
980 Add(labels,values);
981 }
982 #endif // SWIG
983
984 /** Version that works with wxArrayString and wxArrayInt. */
985 void Set( const wxArrayString& labels,
986 const wxArrayInt& values = wxArrayInt() )
987 {
988 Free();
989 if ( &values )
990 Add(labels,values);
991 else
992 Add(labels);
993 }
994
995 // Creates exclusive copy of current choices
996 void AllocExclusive();
997
998 // Returns data, increases refcount.
999 wxPGChoicesData* GetData()
1000 {
1001 wxASSERT( m_data->m_refCount != 0xFFFFFFF );
1002 m_data->m_refCount++;
1003 return m_data;
1004 }
1005
1006 // Returns plain data ptr - no refcounting stuff is done.
1007 wxPGChoicesData* GetDataPtr() const { return m_data; }
1008
1009 // Changes ownership of data to you.
1010 wxPGChoicesData* ExtractData()
1011 {
1012 wxPGChoicesData* data = m_data;
1013 m_data = wxPGChoicesEmptyData;
1014 return data;
1015 }
1016
1017 wxArrayString GetLabels() const;
1018
1019 #ifndef SWIG
1020 void operator= (const wxPGChoices& a)
1021 {
1022 if (this != &a)
1023 AssignData(a.m_data);
1024 }
1025
1026 wxPGChoiceEntry& operator[](unsigned int i)
1027 {
1028 return Item(i);
1029 }
1030
1031 const wxPGChoiceEntry& operator[](unsigned int i) const
1032 {
1033 return Item(i);
1034 }
1035
1036 protected:
1037 wxPGChoicesData* m_data;
1038
1039 void Init();
1040 void Free();
1041 #endif // !SWIG
1042 };
1043
1044 // -----------------------------------------------------------------------
1045
1046 /** @class wxPGProperty
1047
1048 wxPGProperty is base class for all wxPropertyGrid properties.
1049
1050 NB: Full class overview is now only present in
1051 interface/wx/propgrid/property.h.
1052
1053 @library{wxpropgrid}
1054 @category{propgrid}
1055 */
1056 class WXDLLIMPEXP_PROPGRID wxPGProperty : public wxObject
1057 {
1058 friend class wxPropertyGrid;
1059 friend class wxPropertyGridInterface;
1060 friend class wxPropertyGridPageState;
1061 friend class wxPropertyGridPopulator;
1062 friend class wxStringProperty; // Proper "<composed>" support requires this
1063
1064 DECLARE_ABSTRACT_CLASS(wxPGProperty)
1065 public:
1066 typedef wxUint32 FlagType;
1067
1068 /** Basic constructor.
1069 */
1070 wxPGProperty();
1071
1072 /** Constructor.
1073 Non-abstract property classes should have constructor of this style:
1074
1075 @code
1076
1077 // If T is a class, then it should be a constant reference
1078 // (e.g. const T& ) instead.
1079 MyProperty( const wxString& label, const wxString& name, T value )
1080 : wxPGProperty()
1081 {
1082 // Generally recommended way to set the initial value
1083 // (as it should work in pretty much 100% of cases).
1084 wxVariant variant;
1085 variant << value;
1086 SetValue(variant);
1087
1088 // If has private child properties then create them here. Also
1089 // set flag that indicates presence of private children. E.g.:
1090 //
1091 // AddPrivateChild( new wxStringProperty("Subprop 1",
1092 // wxPG_LABEL,
1093 // value.GetSubProp1() ) );
1094 }
1095
1096 @endcode
1097 */
1098 wxPGProperty( const wxString& label, const wxString& name );
1099
1100 /**
1101 Virtual destructor.
1102 It is customary for derived properties to implement this.
1103 */
1104 virtual ~wxPGProperty();
1105
1106 /** This virtual function is called after m_value has been set.
1107
1108 @remarks
1109 - If m_value was set to Null variant (ie. unspecified value),
1110 OnSetValue() will not be called.
1111 - m_value may be of any variant type. Typically properties internally
1112 support only one variant type, and as such OnSetValue() provides a
1113 good opportunity to convert
1114 supported values into internal type.
1115 - Default implementation does nothing.
1116 */
1117 virtual void OnSetValue();
1118
1119 /** Override this to return something else than m_value as the value.
1120 */
1121 virtual wxVariant DoGetValue() const { return m_value; }
1122
1123 #if !defined(SWIG) || defined(CREATE_VCW)
1124 /** Implement this function in derived class to check the value.
1125 Return true if it is ok. Returning false prevents property change events
1126 from occurring.
1127
1128 @remarks
1129 - Default implementation always returns true.
1130 */
1131 virtual bool ValidateValue( wxVariant& value,
1132 wxPGValidationInfo& validationInfo ) const;
1133
1134 /**
1135 Converts text into wxVariant value appropriate for this property.
1136
1137 @param variant
1138 On function entry this is the old value (should not be wxNullVariant
1139 in normal cases). Translated value must be assigned back to it.
1140
1141 @param text
1142 Text to be translated into variant.
1143
1144 @param argFlags
1145 If wxPG_FULL_VALUE is set, returns complete, storable value instead
1146 of displayable one (they may be different).
1147 If wxPG_COMPOSITE_FRAGMENT is set, text is interpreted as a part of
1148 composite property string value (as generated by ValueToString()
1149 called with this same flag).
1150
1151 @return Returns @true if resulting wxVariant value was different.
1152
1153 @remarks Default implementation converts semicolon delimited tokens into
1154 child values. Only works for properties with children.
1155
1156 You might want to take into account that m_value is Null variant
1157 if property value is unspecified (which is usually only case if
1158 you explicitly enabled that sort behavior).
1159 */
1160 virtual bool StringToValue( wxVariant& variant,
1161 const wxString& text,
1162 int argFlags = 0 ) const;
1163
1164 /**
1165 Converts integer (possibly a choice selection) into wxVariant value
1166 appropriate for this property.
1167
1168 @param variant
1169 On function entry this is the old value (should not be wxNullVariant
1170 in normal cases). Translated value must be assigned back to it.
1171
1172 @param number
1173 Integer to be translated into variant.
1174
1175 @param argFlags
1176 If wxPG_FULL_VALUE is set, returns complete, storable value instead
1177 of displayable one.
1178
1179 @return Returns @true if resulting wxVariant value was different.
1180
1181 @remarks
1182 - If property is not supposed to use choice or spinctrl or other editor
1183 with int-based value, it is not necessary to implement this method.
1184 - Default implementation simply assign given int to m_value.
1185 - If property uses choice control, and displays a dialog on some choice
1186 items, then it is preferred to display that dialog in IntToValue
1187 instead of OnEvent.
1188 - You might want to take into account that m_value is Null variant if
1189 property value is unspecified (which is usually only case if you
1190 explicitly enabled that sort behavior).
1191 */
1192 virtual bool IntToValue( wxVariant& value,
1193 int number,
1194 int argFlags = 0 ) const;
1195 #endif // !defined(SWIG) || defined(CREATE_VCW)
1196 /**
1197 Converts property value into a text representation.
1198
1199 @param value
1200 Value to be converted.
1201
1202 @param argFlags
1203 If 0 (default value), then displayed string is returned.
1204 If wxPG_FULL_VALUE is set, returns complete, storable string value
1205 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
1206 string value that must be editable in textctrl. If
1207 wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
1208 display as a part of string property's composite text
1209 representation.
1210
1211 @remarks Default implementation calls GenerateComposedValue().
1212 */
1213 virtual wxString ValueToString( wxVariant& value, int argFlags = 0 ) const;
1214
1215 /** Converts string to a value, and if successful, calls SetValue() on it.
1216 Default behavior is to do nothing.
1217 @param text
1218 String to get the value from.
1219 @return
1220 true if value was changed.
1221 */
1222 bool SetValueFromString( const wxString& text, int flags = wxPG_PROGRAMMATIC_VALUE );
1223
1224 /** Converts integer to a value, and if succesful, calls SetValue() on it.
1225 Default behavior is to do nothing.
1226 @param value
1227 Int to get the value from.
1228 @param flags
1229 If has wxPG_FULL_VALUE, then the value given is a actual value and
1230 not an index.
1231 @return
1232 True if value was changed.
1233 */
1234 bool SetValueFromInt( long value, int flags = 0 );
1235
1236 /**
1237 Returns size of the custom painted image in front of property.
1238
1239 This method must be overridden to return non-default value if
1240 OnCustomPaint is to be called.
1241 @param item
1242 Normally -1, but can be an index to the property's list of items.
1243 @remarks
1244 - Default behavior is to return wxSize(0,0), which means no image.
1245 - Default image width or height is indicated with dimension -1.
1246 - You can also return wxPG_DEFAULT_IMAGE_SIZE, i.e. wxSize(-1, -1).
1247 */
1248 virtual wxSize OnMeasureImage( int item = -1 ) const;
1249
1250 /**
1251 Events received by editor widgets are processed here.
1252
1253 Note that editor class usually processes most events. Some, such as
1254 button press events of TextCtrlAndButton class, can be handled here.
1255 Also, if custom handling for regular events is desired, then that can
1256 also be done (for example, wxSystemColourProperty custom handles
1257 wxEVT_COMMAND_CHOICE_SELECTED to display colour picker dialog when
1258 'custom' selection is made).
1259
1260 If the event causes value to be changed, SetValueInEvent()
1261 should be called to set the new value.
1262
1263 @param event
1264 Associated wxEvent.
1265 @return
1266 Should return true if any changes in value should be reported.
1267 @remarks
1268 If property uses choice control, and displays a dialog on some choice
1269 items, then it is preferred to display that dialog in IntToValue
1270 instead of OnEvent.
1271 */
1272 virtual bool OnEvent( wxPropertyGrid* propgrid,
1273 wxWindow* wnd_primary,
1274 wxEvent& event );
1275
1276 /**
1277 Called after value of a child property has been altered.
1278
1279 Note that this function is usually called at the time that value of
1280 this property, or given child property, is still pending for change.
1281
1282 Sample pseudo-code implementation:
1283
1284 @code
1285 void MyProperty::ChildChanged( wxVariant& thisValue,
1286 int childIndex,
1287 wxVariant& childValue ) const
1288 {
1289 // Acquire reference to actual type of data stored in variant
1290 // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros
1291 // were used to create the variant class).
1292 T& data = TFromVariant(thisValue);
1293
1294 // Copy childValue into data.
1295 switch ( childIndex )
1296 {
1297 case 0:
1298 data.SetSubProp1( childvalue.GetLong() );
1299 break;
1300 case 1:
1301 data.SetSubProp2( childvalue.GetString() );
1302 break;
1303 ...
1304 }
1305 }
1306 @endcode
1307
1308 @param thisValue
1309 Value of this property, that should be altered.
1310 @param childIndex
1311 Index of child changed (you can use Item(childIndex) to get).
1312 @param childValue
1313 Value of the child property.
1314 */
1315 virtual void ChildChanged( wxVariant& thisValue,
1316 int childIndex,
1317 wxVariant& childValue ) const;
1318
1319 /** Returns pointer to an instance of used editor.
1320 */
1321 virtual const wxPGEditor* DoGetEditorClass() const;
1322
1323 /** Returns pointer to the wxValidator that should be used
1324 with the editor of this property (NULL for no validator).
1325 Setting validator explicitly via SetPropertyValidator
1326 will override this.
1327
1328 In most situations, code like this should work well
1329 (macros are used to maintain one actual validator instance,
1330 so on the second call the function exits within the first
1331 macro):
1332
1333 @code
1334
1335 wxValidator* wxMyPropertyClass::DoGetValidator () const
1336 {
1337 WX_PG_DOGETVALIDATOR_ENTRY()
1338
1339 wxMyValidator* validator = new wxMyValidator(...);
1340
1341 ... prepare validator...
1342
1343 WX_PG_DOGETVALIDATOR_EXIT(validator)
1344 }
1345
1346 @endcode
1347
1348 @remarks
1349 You can get common filename validator by returning
1350 wxFileProperty::GetClassValidator(). wxDirProperty,
1351 for example, uses it.
1352 */
1353 virtual wxValidator* DoGetValidator () const;
1354
1355 /**
1356 Override to paint an image in front of the property value text or
1357 drop-down list item (but only if wxPGProperty::OnMeasureImage is
1358 overridden as well).
1359
1360 If property's OnMeasureImage() returns size that has height != 0 but
1361 less than row height ( < 0 has special meanings), wxPropertyGrid calls
1362 this method to draw a custom image in a limited area in front of the
1363 editor control or value text/graphics, and if control has drop-down
1364 list, then the image is drawn there as well (even in the case
1365 OnMeasureImage() returned higher height than row height).
1366
1367 NOTE: Following applies when OnMeasureImage() returns a "flexible"
1368 height ( using wxPG_FLEXIBLE_SIZE(W,H) macro), which implies variable
1369 height items: If rect.x is < 0, then this is a measure item call, which
1370 means that dc is invalid and only thing that should be done is to set
1371 paintdata.m_drawnHeight to the height of the image of item at index
1372 paintdata.m_choiceItem. This call may be done even as often as once
1373 every drop-down popup show.
1374
1375 @param dc
1376 wxDC to paint on.
1377 @param rect
1378 Box reserved for custom graphics. Includes surrounding rectangle,
1379 if any. If x is < 0, then this is a measure item call (see above).
1380 @param paintdata
1381 wxPGPaintData structure with much useful data.
1382
1383 @remarks
1384 - You can actually exceed rect width, but if you do so then
1385 paintdata.m_drawnWidth must be set to the full width drawn in
1386 pixels.
1387 - Due to technical reasons, rect's height will be default even if
1388 custom height was reported during measure call.
1389 - Brush is guaranteed to be default background colour. It has been
1390 already used to clear the background of area being painted. It
1391 can be modified.
1392 - Pen is guaranteed to be 1-wide 'black' (or whatever is the proper
1393 colour) pen for drawing framing rectangle. It can be changed as
1394 well.
1395
1396 @see ValueToString()
1397 */
1398 virtual void OnCustomPaint( wxDC& dc,
1399 const wxRect& rect,
1400 wxPGPaintData& paintdata );
1401
1402 /**
1403 Returns used wxPGCellRenderer instance for given property column
1404 (label=0, value=1).
1405
1406 Default implementation returns editor's renderer for all columns.
1407 */
1408 virtual wxPGCellRenderer* GetCellRenderer( int column ) const;
1409
1410 /** Returns which choice is currently selected. Only applies to properties
1411 which have choices.
1412
1413 Needs to reimplemented in derived class if property value does not
1414 map directly to a choice. Integer as index, bool, and string usually do.
1415 */
1416 virtual int GetChoiceSelection() const;
1417
1418 /**
1419 Refresh values of child properties.
1420
1421 Automatically called after value is set.
1422 */
1423 virtual void RefreshChildren();
1424
1425 /** Special handling for attributes of this property.
1426
1427 If returns false, then the attribute will be automatically stored in
1428 m_attributes.
1429
1430 Default implementation simply returns false.
1431 */
1432 virtual bool DoSetAttribute( const wxString& name, wxVariant& value );
1433
1434 /** Returns value of an attribute.
1435
1436 Override if custom handling of attributes is needed.
1437
1438 Default implementation simply return NULL variant.
1439 */
1440 virtual wxVariant DoGetAttribute( const wxString& name ) const;
1441
1442 /** Returns instance of a new wxPGEditorDialogAdapter instance, which is
1443 used when user presses the (optional) button next to the editor control;
1444
1445 Default implementation returns NULL (ie. no action is generated when
1446 button is pressed).
1447 */
1448 virtual wxPGEditorDialogAdapter* GetEditorDialog() const;
1449
1450 /**
1451 Called whenever validation has failed with given pending value.
1452
1453 @remarks If you implement this in your custom property class, please
1454 remember to call the baser implementation as well, since they
1455 may use it to revert property into pre-change state.
1456 */
1457 virtual void OnValidationFailure( wxVariant& pendingValue );
1458
1459 /** Append a new choice to property's list of choices.
1460 */
1461 int AddChoice( const wxString& label, int value = wxPG_INVALID_VALUE )
1462 {
1463 return InsertChoice(label, wxNOT_FOUND, value);
1464 }
1465
1466 /**
1467 Returns true if children of this property are component values (for
1468 instance, points size, face name, and is_underlined are component
1469 values of a font).
1470 */
1471 bool AreChildrenComponents() const
1472 {
1473 if ( m_flags & (wxPG_PROP_COMPOSED_VALUE|wxPG_PROP_AGGREGATE) )
1474 return true;
1475
1476 return false;
1477 }
1478
1479 /**
1480 Deletes children of the property.
1481 */
1482 void DeleteChildren();
1483
1484 /**
1485 Removes entry from property's wxPGChoices and editor control (if it is
1486 active).
1487
1488 If selected item is deleted, then the value is set to unspecified.
1489 */
1490 void DeleteChoice( int index );
1491
1492 /**
1493 Call to enable or disable usage of common value (integer value that can
1494 be selected for properties instead of their normal values) for this
1495 property.
1496
1497 Common values are disabled by the default for all properties.
1498 */
1499 void EnableCommonValue( bool enable = true )
1500 {
1501 if ( enable ) SetFlag( wxPG_PROP_USES_COMMON_VALUE );
1502 else ClearFlag( wxPG_PROP_USES_COMMON_VALUE );
1503 }
1504
1505 /**
1506 Composes text from values of child properties.
1507 */
1508 wxString GenerateComposedValue() const
1509 {
1510 wxString s;
1511 DoGenerateComposedValue(s);
1512 return s;
1513 }
1514
1515 /** Returns property's label. */
1516 const wxString& GetLabel() const { return m_label; }
1517
1518 /** Returns property's name with all (non-category, non-root) parents. */
1519 wxString GetName() const;
1520
1521 /**
1522 Returns property's base name (ie parent's name is not added in any
1523 case)
1524 */
1525 const wxString& GetBaseName() const { return m_name; }
1526
1527 /** Returns read-only reference to property's list of choices.
1528 */
1529 const wxPGChoices& GetChoices() const
1530 {
1531 return m_choices;
1532 }
1533
1534 /** Returns coordinate to the top y of the property. Note that the
1535 position of scrollbars is not taken into account.
1536 */
1537 int GetY() const;
1538
1539 wxVariant GetValue() const
1540 {
1541 return DoGetValue();
1542 }
1543
1544 #ifndef SWIG
1545 /** Returns reference to the internal stored value. GetValue is preferred
1546 way to get the actual value, since GetValueRef ignores DoGetValue,
1547 which may override stored value.
1548 */
1549 wxVariant& GetValueRef()
1550 {
1551 return m_value;
1552 }
1553
1554 const wxVariant& GetValueRef() const
1555 {
1556 return m_value;
1557 }
1558 #endif
1559
1560 /** Returns text representation of property's value.
1561
1562 @param argFlags
1563 If 0 (default value), then displayed string is returned.
1564 If wxPG_FULL_VALUE is set, returns complete, storable string value
1565 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
1566 string value that must be editable in textctrl. If
1567 wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
1568 display as a part of string property's composite text
1569 representation.
1570
1571 @remarks In older versions, this function used to be overridden to convert
1572 property's value into a string representation. This function is
1573 now handled by ValueToString(), and overriding this function now
1574 will result in run-time assertion failure.
1575 */
1576 virtual wxString GetValueAsString( int argFlags = 0 ) const;
1577
1578 /** Synonymous to GetValueAsString().
1579
1580 @deprecated Use GetValueAsString() instead.
1581
1582 @see GetValueAsString()
1583 */
1584 wxDEPRECATED( wxString GetValueString( int argFlags = 0 ) const );
1585
1586 /**
1587 Returns wxPGCell of given column.
1588 */
1589 const wxPGCell& GetCell( unsigned int column ) const;
1590
1591 wxPGCell& GetCell( unsigned int column );
1592
1593 /** Return number of displayed common values for this property.
1594 */
1595 int GetDisplayedCommonValueCount() const;
1596
1597 wxString GetDisplayedString() const
1598 {
1599 return GetValueAsString(0);
1600 }
1601
1602 /** Returns property grid where property lies. */
1603 wxPropertyGrid* GetGrid() const;
1604
1605 /** Returns owner wxPropertyGrid, but only if one is currently on a page
1606 displaying this property. */
1607 wxPropertyGrid* GetGridIfDisplayed() const;
1608
1609 /** Returns highest level non-category, non-root parent. Useful when you
1610 have nested wxCustomProperties/wxParentProperties.
1611 @remarks
1612 Thus, if immediate parent is root or category, this will return the
1613 property itself.
1614 */
1615 wxPGProperty* GetMainParent() const;
1616
1617 /** Return parent of property */
1618 wxPGProperty* GetParent() const { return m_parent; }
1619
1620 /** Returns true if property has editable wxTextCtrl when selected.
1621
1622 @remarks
1623 Altough disabled properties do not displayed editor, they still
1624 return True here as being disabled is considered a temporary
1625 condition (unlike being read-only or having limited editing enabled).
1626 */
1627 bool IsTextEditable() const;
1628
1629 bool IsValueUnspecified() const
1630 {
1631 return m_value.IsNull();
1632 }
1633
1634 FlagType HasFlag( FlagType flag ) const
1635 {
1636 return ( m_flags & flag );
1637 }
1638
1639 /** Returns comma-delimited string of property attributes.
1640 */
1641 const wxPGAttributeStorage& GetAttributes() const
1642 {
1643 return m_attributes;
1644 }
1645
1646 /** Returns m_attributes as list wxVariant.
1647 */
1648 wxVariant GetAttributesAsList() const;
1649
1650 FlagType GetFlags() const
1651 {
1652 return m_flags;
1653 }
1654
1655 const wxPGEditor* GetEditorClass() const;
1656
1657 wxString GetValueType() const
1658 {
1659 return m_value.GetType();
1660 }
1661
1662 /** Returns editor used for given column. NULL for no editor.
1663 */
1664 const wxPGEditor* GetColumnEditor( int column ) const
1665 {
1666 if ( column == 1 )
1667 return GetEditorClass();
1668
1669 return NULL;
1670 }
1671
1672 /** Returns common value selected for this property. -1 for none.
1673 */
1674 int GetCommonValue() const
1675 {
1676 return m_commonValue;
1677 }
1678
1679 /** Returns true if property has even one visible child.
1680 */
1681 bool HasVisibleChildren() const;
1682
1683 /**
1684 Use this member function to add independent (ie. regular) children to
1685 a property.
1686
1687 @return Inserted childProperty.
1688
1689 @remarks wxPropertyGrid is not automatically refreshed by this
1690 function.
1691
1692 @see AddPrivateChild()
1693 */
1694 wxPGProperty* InsertChild( int index, wxPGProperty* childProperty );
1695
1696 /** Inserts a new choice to property's list of choices.
1697 */
1698 int InsertChoice( const wxString& label, int index, int value = wxPG_INVALID_VALUE );
1699
1700 /**
1701 Returns true if this property is actually a wxPropertyCategory.
1702 */
1703 bool IsCategory() const { return HasFlag(wxPG_PROP_CATEGORY)?true:false; }
1704
1705 /** Returns true if this property is actually a wxRootProperty.
1706 */
1707 bool IsRoot() const { return (m_parent == NULL); }
1708
1709 /** Returns true if this is a sub-property. */
1710 bool IsSubProperty() const
1711 {
1712 wxPGProperty* parent = (wxPGProperty*)m_parent;
1713 if ( parent && !parent->IsCategory() )
1714 return true;
1715 return false;
1716 }
1717
1718 /** Returns last visible sub-property, recursively.
1719 */
1720 const wxPGProperty* GetLastVisibleSubItem() const;
1721
1722 wxVariant GetDefaultValue() const;
1723
1724 int GetMaxLength() const
1725 {
1726 return (int) m_maxLen;
1727 }
1728
1729 /**
1730 Determines, recursively, if all children are not unspecified.
1731
1732 @param pendingList
1733 Assumes members in this wxVariant list as pending
1734 replacement values.
1735 */
1736 bool AreAllChildrenSpecified( wxVariant* pendingList = NULL ) const;
1737
1738 /** Updates composed values of parent non-category properties, recursively.
1739 Returns topmost property updated.
1740
1741 @remarks
1742 - Must not call SetValue() (as can be called in it).
1743 */
1744 wxPGProperty* UpdateParentValues();
1745
1746 /** Returns true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES.
1747 */
1748 bool UsesAutoUnspecified() const
1749 {
1750 return HasFlag(wxPG_PROP_AUTO_UNSPECIFIED)?true:false;
1751 }
1752
1753 wxBitmap* GetValueImage() const
1754 {
1755 return m_valueBitmap;
1756 }
1757
1758 wxVariant GetAttribute( const wxString& name ) const;
1759
1760 /**
1761 Returns named attribute, as string, if found.
1762
1763 Otherwise defVal is returned.
1764 */
1765 wxString GetAttribute( const wxString& name, const wxString& defVal ) const;
1766
1767 /**
1768 Returns named attribute, as long, if found.
1769
1770 Otherwise defVal is returned.
1771 */
1772 long GetAttributeAsLong( const wxString& name, long defVal ) const;
1773
1774 /**
1775 Returns named attribute, as double, if found.
1776
1777 Otherwise defVal is returned.
1778 */
1779 double GetAttributeAsDouble( const wxString& name, double defVal ) const;
1780
1781 unsigned int GetDepth() const { return (unsigned int)m_depth; }
1782
1783 /** Gets flags as a'|' delimited string. Note that flag names are not
1784 prepended with 'wxPG_PROP_'.
1785 @param flagsMask
1786 String will only be made to include flags combined by this parameter.
1787 */
1788 wxString GetFlagsAsString( FlagType flagsMask ) const;
1789
1790 /** Returns position in parent's array. */
1791 unsigned int GetIndexInParent() const
1792 {
1793 return (unsigned int)m_arrIndex;
1794 }
1795
1796 /** Hides or reveals the property.
1797 @param hide
1798 true for hide, false for reveal.
1799 @param flags
1800 By default changes are applied recursively. Set this paramter
1801 wxPG_DONT_RECURSE to prevent this.
1802 */
1803 inline bool Hide( bool hide, int flags = wxPG_RECURSE );
1804
1805 bool IsExpanded() const
1806 { return (!(m_flags & wxPG_PROP_COLLAPSED) && GetChildCount()); }
1807
1808 /** Returns true if all parents expanded.
1809 */
1810 bool IsVisible() const;
1811
1812 bool IsEnabled() const { return !(m_flags & wxPG_PROP_DISABLED); }
1813
1814 /** If property's editor is created this forces its recreation.
1815 Useful in SetAttribute etc. Returns true if actually did anything.
1816 */
1817 bool RecreateEditor();
1818
1819 /** If property's editor is active, then update it's value.
1820 */
1821 void RefreshEditor();
1822
1823 /** Sets an attribute for this property.
1824 @param name
1825 Text identifier of attribute. See @ref propgrid_property_attributes.
1826 @param value
1827 Value of attribute.
1828 */
1829 void SetAttribute( const wxString& name, wxVariant value );
1830
1831 void SetAttributes( const wxPGAttributeStorage& attributes );
1832
1833 /**
1834 Sets property's background colour.
1835
1836 @param colour
1837 Background colour to use.
1838
1839 @param recursively
1840 If @true, children are affected recursively, and any categories
1841 are not.
1842 */
1843 void SetBackgroundColour( const wxColour& colour,
1844 bool recursively = false );
1845
1846 /**
1847 Sets property's text colour.
1848
1849 @param colour
1850 Text colour to use.
1851
1852 @param recursively
1853 If @true, children are affected recursively, and any categories
1854 are not.
1855 */
1856 void SetTextColour( const wxColour& colour,
1857 bool recursively = false );
1858
1859 /** Set default value of a property. Synonymous to
1860
1861 @code
1862 SetAttribute("DefaultValue", value);
1863 @endcode
1864 */
1865 void SetDefaultValue( wxVariant& value );
1866
1867 #ifndef SWIG
1868 /** Sets editor for a property.
1869
1870 @param editor
1871 For builtin editors, use wxPGEditor_X, where X is builtin editor's
1872 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full
1873 list).
1874
1875 For custom editors, use pointer you received from
1876 wxPropertyGrid::RegisterEditorClass().
1877 */
1878 void SetEditor( const wxPGEditor* editor )
1879 {
1880 m_customEditor = editor;
1881 }
1882 #endif
1883
1884 /** Sets editor for a property.
1885 */
1886 inline void SetEditor( const wxString& editorName );
1887
1888 /**
1889 Sets cell information for given column.
1890 */
1891 void SetCell( int column, const wxPGCell& cell );
1892
1893 /** Sets common value selected for this property. -1 for none.
1894 */
1895 void SetCommonValue( int commonValue )
1896 {
1897 m_commonValue = commonValue;
1898 }
1899
1900 /** Sets flags from a '|' delimited string. Note that flag names are not
1901 prepended with 'wxPG_PROP_'.
1902 */
1903 void SetFlagsFromString( const wxString& str );
1904
1905 /** Sets property's "is it modified?" flag. Affects children recursively.
1906 */
1907 void SetModifiedStatus( bool modified )
1908 {
1909 SetFlagRecursively(wxPG_PROP_MODIFIED, modified);
1910 }
1911
1912 /** Call in OnEvent(), OnButtonClick() etc. to change the property value
1913 based on user input.
1914
1915 @remarks
1916 This method is const since it doesn't actually modify value, but posts
1917 given variant as pending value, stored in wxPropertyGrid.
1918 */
1919 void SetValueInEvent( wxVariant value ) const;
1920
1921 /**
1922 Call this to set value of the property.
1923
1924 Unlike methods in wxPropertyGrid, this does not automatically update
1925 the display.
1926
1927 @remarks
1928 Use wxPropertyGrid::ChangePropertyValue() instead if you need to run
1929 through validation process and send property change event.
1930
1931 If you need to change property value in event, based on user input, use
1932 SetValueInEvent() instead.
1933
1934 @param pList
1935 Pointer to list variant that contains child values. Used to
1936 indicate which children should be marked as modified.
1937
1938 @param flags
1939 Various flags (for instance, wxPG_SETVAL_REFRESH_EDITOR, which is
1940 enabled by default).
1941 */
1942 void SetValue( wxVariant value, wxVariant* pList = NULL,
1943 int flags = wxPG_SETVAL_REFRESH_EDITOR );
1944
1945 /** Set wxBitmap in front of the value. This bitmap may be ignored
1946 by custom cell renderers.
1947 */
1948 void SetValueImage( wxBitmap& bmp );
1949
1950 /** Sets selected choice and changes property value.
1951
1952 Tries to retain value type, although currently if it is not string,
1953 then it is forced to integer.
1954 */
1955 void SetChoiceSelection( int newValue );
1956
1957 void SetExpanded( bool expanded )
1958 {
1959 if ( !expanded ) m_flags |= wxPG_PROP_COLLAPSED;
1960 else m_flags &= ~wxPG_PROP_COLLAPSED;
1961 }
1962
1963 /**
1964 Sets given property flag(s).
1965 */
1966 void SetFlag( FlagType flag ) { m_flags |= flag; }
1967
1968 /**
1969 Sets or clears given property flag(s).
1970 */
1971 void ChangeFlag( FlagType flag, bool set )
1972 {
1973 if ( set )
1974 m_flags |= flag;
1975 else
1976 m_flags &= ~flag;
1977 }
1978
1979 void SetFlagRecursively( FlagType flag, bool set );
1980
1981 void SetHelpString( const wxString& helpString )
1982 {
1983 m_helpString = helpString;
1984 }
1985
1986 void SetLabel( const wxString& label ) { m_label = label; }
1987
1988 inline void SetName( const wxString& newName );
1989
1990 /**
1991 Changes what sort of parent this property is for its children.
1992
1993 @param flag
1994 Use one of the following values: wxPG_PROP_MISC_PARENT (for
1995 generic parents), wxPG_PROP_CATEGORY (for categories), or
1996 wxPG_PROP_AGGREGATE (for derived property classes with private
1997 children).
1998
1999 @remarks You generally do not need to call this function.
2000 */
2001 void SetParentalType( int flag )
2002 {
2003 m_flags &= ~(wxPG_PROP_PROPERTY|wxPG_PROP_PARENTAL_FLAGS);
2004 m_flags |= flag;
2005 }
2006
2007 void SetValueToUnspecified()
2008 {
2009 wxVariant val; // Create NULL variant
2010 SetValue(val);
2011 }
2012
2013 #if wxUSE_VALIDATORS
2014 /** Sets wxValidator for a property*/
2015 void SetValidator( const wxValidator& validator )
2016 {
2017 m_validator = wxDynamicCast(validator.Clone(),wxValidator);
2018 }
2019
2020 /** Gets assignable version of property's validator. */
2021 wxValidator* GetValidator() const
2022 {
2023 if ( m_validator )
2024 return m_validator;
2025 return DoGetValidator();
2026 }
2027 #endif // #if wxUSE_VALIDATORS
2028
2029 #ifndef SWIG
2030 /** Returns client data (void*) of a property.
2031 */
2032 void* GetClientData() const
2033 {
2034 return m_clientData;
2035 }
2036
2037 /** Sets client data (void*) of a property.
2038 @remarks
2039 This untyped client data has to be deleted manually.
2040 */
2041 void SetClientData( void* clientData )
2042 {
2043 m_clientData = clientData;
2044 }
2045
2046 /** Returns client object of a property.
2047 */
2048 void SetClientObject(wxClientData* clientObject)
2049 {
2050 delete m_clientObject;
2051 m_clientObject = clientObject;
2052 }
2053
2054 /** Sets managed client object of a property.
2055 */
2056 wxClientData *GetClientObject() const { return m_clientObject; }
2057 #endif
2058
2059 /** Sets new set of choices for property.
2060
2061 @remarks
2062 This operation clears the property value.
2063 */
2064 bool SetChoices( wxPGChoices& choices );
2065
2066 /** Set max length of text in text editor.
2067 */
2068 inline bool SetMaxLength( int maxLen );
2069
2070 /** Call with 'false' in OnSetValue to cancel value changes after all
2071 (ie. cancel 'true' returned by StringToValue() or IntToValue()).
2072 */
2073 void SetWasModified( bool set = true )
2074 {
2075 if ( set ) m_flags |= wxPG_PROP_WAS_MODIFIED;
2076 else m_flags &= ~wxPG_PROP_WAS_MODIFIED;
2077 }
2078
2079 const wxString& GetHelpString() const
2080 {
2081 return m_helpString;
2082 }
2083
2084 void ClearFlag( FlagType flag ) { m_flags &= ~(flag); }
2085
2086 // Use, for example, to detect if item is inside collapsed section.
2087 bool IsSomeParent( wxPGProperty* candidate_parent ) const;
2088
2089 /**
2090 Adapts list variant into proper value using consecutive
2091 ChildChanged-calls.
2092 */
2093 void AdaptListToValue( wxVariant& list, wxVariant* value ) const;
2094
2095 #if wxPG_COMPATIBILITY_1_4
2096 /**
2097 Adds a private child property.
2098
2099 @deprecated Use AddPrivateChild() instead.
2100
2101 @see AddPrivateChild()
2102 */
2103 wxDEPRECATED( void AddChild( wxPGProperty* prop ) );
2104 #endif
2105
2106 /**
2107 Adds a private child property. If you use this instead of
2108 wxPropertyGridInterface::Insert() or
2109 wxPropertyGridInterface::AppendIn(), then property's parental
2110 type will automatically be set up to wxPG_PROP_AGGREGATE. In other
2111 words, all properties of this property will become private.
2112 */
2113 void AddPrivateChild( wxPGProperty* prop );
2114
2115 /**
2116 Appends a new child property.
2117 */
2118 wxPGProperty* AppendChild( wxPGProperty* prop )
2119 {
2120 return InsertChild(-1, prop);
2121 }
2122
2123 /** Returns height of children, recursively, and
2124 by taking expanded/collapsed status into account.
2125
2126 iMax is used when finding property y-positions.
2127 */
2128 int GetChildrenHeight( int lh, int iMax = -1 ) const;
2129
2130 /** Returns number of child properties */
2131 unsigned int GetChildCount() const
2132 {
2133 return (unsigned int) m_children.size();
2134 }
2135
2136 /** Returns sub-property at index i. */
2137 wxPGProperty* Item( unsigned int i ) const
2138 { return m_children[i]; }
2139
2140 /** Returns last sub-property.
2141 */
2142 wxPGProperty* Last() const { return m_children.back(); }
2143
2144 /** Returns index of given child property. */
2145 int Index( const wxPGProperty* p ) const;
2146
2147 // Puts correct indexes to children
2148 void FixIndicesOfChildren( unsigned int starthere = 0 );
2149
2150 /**
2151 Converts image width into full image offset, with margins.
2152 */
2153 int GetImageOffset( int imageWidth ) const;
2154
2155 #ifndef SWIG
2156 // Returns wxPropertyGridPageState in which this property resides.
2157 wxPropertyGridPageState* GetParentState() const { return m_parentState; }
2158 #endif
2159
2160 #ifndef SWIG
2161 wxPGProperty* GetItemAtY( unsigned int y,
2162 unsigned int lh,
2163 unsigned int* nextItemY ) const;
2164 #endif
2165
2166 /** Returns property at given virtual y coordinate.
2167 */
2168 wxPGProperty* GetItemAtY( unsigned int y ) const;
2169
2170 /** Returns (direct) child property with given name (or NULL if not found).
2171 */
2172 wxPGProperty* GetPropertyByName( const wxString& name ) const;
2173
2174 #ifndef SWIG
2175
2176 // Returns various display-related information for given column
2177 void GetDisplayInfo( unsigned int column,
2178 int choiceIndex,
2179 int flags,
2180 wxString* pString,
2181 const wxPGCell** pCell );
2182
2183 static wxString* sm_wxPG_LABEL;
2184
2185 /** This member is public so scripting language bindings
2186 wrapper code can access it freely.
2187 */
2188 void* m_clientData;
2189
2190 protected:
2191
2192 /**
2193 Sets property cell in fashion that reduces number of exclusive
2194 copies of cell data. Used when setting, for instance, same
2195 background colour for a number of properties.
2196
2197 @param firstCol
2198 First column to affect.
2199
2200 @param lastCol
2201 Last column to affect.
2202
2203 @param preparedCell
2204 Pre-prepared cell that is used for those which cell data
2205 before this matched unmodCellData.
2206
2207 @param srcData
2208 If unmodCellData did not match, valid cell data from this
2209 is merged into cell (usually generating new exclusive copy
2210 of cell's data).
2211
2212 @param unmodCellData
2213 If cell's cell data matches this, its cell is now set to
2214 preparedCell.
2215
2216 @param ignoreWithFlags
2217 Properties with any one of these flags are skipped.
2218
2219 @param recursively
2220 If @true, apply this operation recursively in child properties.
2221 */
2222 void AdaptiveSetCell( unsigned int firstCol,
2223 unsigned int lastCol,
2224 const wxPGCell& preparedCell,
2225 const wxPGCell& srcData,
2226 wxPGCellData* unmodCellData,
2227 FlagType ignoreWithFlags,
2228 bool recursively );
2229
2230 /**
2231 Makes sure m_cells has size of column+1 (or more).
2232 */
2233 void EnsureCells( unsigned int column );
2234
2235 /** Returns (direct) child property with given name (or NULL if not found),
2236 with hint index.
2237
2238 @param hintIndex
2239 Start looking for the child at this index.
2240
2241 @remarks
2242 Does not support scope (ie. Parent.Child notation).
2243 */
2244 wxPGProperty* GetPropertyByNameWH( const wxString& name,
2245 unsigned int hintIndex ) const;
2246
2247 /** This is used by Insert etc. */
2248 void DoAddChild( wxPGProperty* prop,
2249 int index = -1,
2250 bool correct_mode = true );
2251
2252 void DoGenerateComposedValue( wxString& text,
2253 int argFlags = wxPG_VALUE_IS_CURRENT,
2254 const wxVariantList* valueOverrides = NULL,
2255 wxPGHashMapS2S* childResults = NULL ) const;
2256
2257 void DoSetName(const wxString& str) { m_name = str; }
2258
2259 /** Deletes all sub-properties. */
2260 void Empty();
2261
2262 void InitAfterAdded( wxPropertyGridPageState* pageState,
2263 wxPropertyGrid* propgrid );
2264
2265 // Removes child property with given pointer. Does not delete it.
2266 void RemoveChild( wxPGProperty* p );
2267
2268 void DoPreAddChild( int index, wxPGProperty* prop );
2269
2270 void SetParentState( wxPropertyGridPageState* pstate )
2271 { m_parentState = pstate; }
2272
2273 // Call after fixed sub-properties added/removed after creation.
2274 // if oldSelInd >= 0 and < new max items, then selection is
2275 // moved to it.
2276 void SubPropsChanged( int oldSelInd = -1 );
2277
2278 int GetY2( int lh ) const;
2279
2280 wxString m_label;
2281 wxString m_name;
2282 wxPGProperty* m_parent;
2283 wxPropertyGridPageState* m_parentState;
2284
2285 wxClientData* m_clientObject;
2286
2287 // Overrides editor returned by property class
2288 const wxPGEditor* m_customEditor;
2289 #if wxUSE_VALIDATORS
2290 // Editor is going to get this validator
2291 wxValidator* m_validator;
2292 #endif
2293 // Show this in front of the value
2294 //
2295 // TODO: Can bitmap be implemented with wxPGCell?
2296 wxBitmap* m_valueBitmap;
2297
2298 wxVariant m_value;
2299 wxPGAttributeStorage m_attributes;
2300 wxArrayPGProperty m_children;
2301
2302 // Extended cell information
2303 wxVector<wxPGCell> m_cells;
2304
2305 // Choices shown in drop-down list of editor control.
2306 wxPGChoices m_choices;
2307
2308 // Help shown in statusbar or help box.
2309 wxString m_helpString;
2310
2311 // Index in parent's property array.
2312 unsigned int m_arrIndex;
2313
2314 // If not -1, then overrides m_value
2315 int m_commonValue;
2316
2317 FlagType m_flags;
2318
2319 // Maximum length (mainly for string properties). Could be in some sort of
2320 // wxBaseStringProperty, but currently, for maximum flexibility and
2321 // compatibility, we'll stick it here. Anyway, we had 3 excess bytes to use
2322 // so short int will fit in just fine.
2323 short m_maxLen;
2324
2325 // Root has 0, categories etc. at that level 1, etc.
2326 unsigned char m_depth;
2327
2328 // m_depthBgCol indicates width of background colour between margin and item
2329 // (essentially this is category's depth, if none then equals m_depth).
2330 unsigned char m_depthBgCol;
2331
2332 private:
2333 // Called in constructors.
2334 void Init();
2335 void Init( const wxString& label, const wxString& name );
2336 #endif // #ifndef SWIG
2337 };
2338
2339 // -----------------------------------------------------------------------
2340
2341 //
2342 // Property class declaration helper macros
2343 // (wxPGRootPropertyClass and wxPropertyCategory require this).
2344 //
2345
2346 #define WX_PG_DECLARE_DOGETEDITORCLASS \
2347 virtual const wxPGEditor* DoGetEditorClass() const;
2348
2349 #ifndef SWIG
2350 #define WX_PG_DECLARE_PROPERTY_CLASS(CLASSNAME) \
2351 public: \
2352 DECLARE_DYNAMIC_CLASS(CLASSNAME) \
2353 WX_PG_DECLARE_DOGETEDITORCLASS \
2354 private:
2355 #else
2356 #define WX_PG_DECLARE_PROPERTY_CLASS(CLASSNAME)
2357 #endif
2358
2359 // Implements sans constructor function. Also, first arg is class name, not
2360 // property name.
2361 #define WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(PROPNAME,T,EDITOR) \
2362 const wxPGEditor* PROPNAME::DoGetEditorClass() const \
2363 { \
2364 return wxPGEditor_##EDITOR; \
2365 }
2366
2367 // -----------------------------------------------------------------------
2368
2369 #ifndef SWIG
2370
2371 /** @class wxPGRootProperty
2372 @ingroup classes
2373 Root parent property.
2374 */
2375 class WXDLLIMPEXP_PROPGRID wxPGRootProperty : public wxPGProperty
2376 {
2377 public:
2378 WX_PG_DECLARE_PROPERTY_CLASS(wxPGRootProperty)
2379 public:
2380
2381 /** Constructor. */
2382 wxPGRootProperty( const wxString& name = wxS("<Root>") );
2383 virtual ~wxPGRootProperty();
2384
2385 virtual bool StringToValue( wxVariant&, const wxString&, int ) const
2386 {
2387 return false;
2388 }
2389
2390 protected:
2391 };
2392
2393 // -----------------------------------------------------------------------
2394
2395 /** @class wxPropertyCategory
2396 @ingroup classes
2397 Category (caption) property.
2398 */
2399 class WXDLLIMPEXP_PROPGRID wxPropertyCategory : public wxPGProperty
2400 {
2401 friend class wxPropertyGrid;
2402 friend class wxPropertyGridPageState;
2403 WX_PG_DECLARE_PROPERTY_CLASS(wxPropertyCategory)
2404 public:
2405
2406 /** Default constructor is only used in special cases. */
2407 wxPropertyCategory();
2408
2409 wxPropertyCategory( const wxString& label,
2410 const wxString& name = wxPG_LABEL );
2411 ~wxPropertyCategory();
2412
2413 int GetTextExtent( const wxWindow* wnd, const wxFont& font ) const;
2414
2415 virtual wxString ValueToString( wxVariant& value, int argFlags ) const;
2416
2417 protected:
2418 void SetTextColIndex( unsigned int colInd )
2419 { m_capFgColIndex = (wxByte) colInd; }
2420 unsigned int GetTextColIndex() const
2421 { return (unsigned int) m_capFgColIndex; }
2422
2423 void CalculateTextExtent( wxWindow* wnd, const wxFont& font );
2424
2425 int m_textExtent; // pre-calculated length of text
2426 wxByte m_capFgColIndex; // caption text colour index
2427
2428 private:
2429 void Init();
2430 };
2431
2432 #endif // !SWIG
2433
2434 // -----------------------------------------------------------------------
2435
2436 #endif // wxUSE_PROPGRID
2437
2438 #endif // _WX_PROPGRID_PROPERTY_H_