]> git.saurik.com Git - wxWidgets.git/blame - include/wx/propgrid/property.h
add virtual DoGetTextExtent() to allow calling the overloaded wxWindowBase::GetTextEx...
[wxWidgets.git] / include / wx / propgrid / property.h
CommitLineData
1c4293cb
VZ
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
ea5af9c5 7// RCS-ID: $Id$
1c4293cb
VZ
8// Copyright: (c) Jaakko Salli
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_PROPGRID_PROPERTY_H_
13#define _WX_PROPGRID_PROPERTY_H_
14
f4bc1aa2
JS
15#if wxUSE_PROPGRID
16
1c4293cb
VZ
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*/
28struct 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
1c4293cb
VZ
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*/
67class WXDLLIMPEXP_PROPGRID wxPGCellRenderer
68{
69public:
70
71 wxPGCellRenderer( unsigned int refCount = 1 )
72 : m_refCount(refCount) { }
73 virtual ~wxPGCellRenderer() { }
74
75 // Render flags
76 enum
77 {
d7e2b522 78 // We are painting selected item
1c4293cb 79 Selected = 0x00010000,
d7e2b522
JS
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
1c4293cb
VZ
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 }
160protected:
161
162private:
163 unsigned int m_refCount;
164};
165
166
d7e2b522
JS
167class WXDLLIMPEXP_PROPGRID wxPGCellData : public wxObjectRefData
168{
169 friend class wxPGCell;
170public:
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
182protected:
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
1c4293cb
VZ
194/** @class wxPGCell
195
196 Base class for simple wxPropertyGrid cell information.
197*/
d7e2b522 198class WXDLLIMPEXP_PROPGRID wxPGCell : public wxObject
1c4293cb
VZ
199{
200public:
201 wxPGCell();
18415eb5
VZ
202 wxPGCell(const wxPGCell& other)
203 : wxObject(other)
d7e2b522 204 {
d7e2b522
JS
205 }
206
1c4293cb
VZ
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
d7e2b522
JS
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 }
1c4293cb 228
d7e2b522
JS
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 }
1c4293cb
VZ
252
253protected:
d7e2b522
JS
254 virtual wxObjectRefData *CreateRefData() const
255 { return new wxPGCellData(); }
256
257 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
1c4293cb
VZ
258};
259
260
261/** @class wxPGDefaultRenderer
262
263 Default cell renderer, that can handles the common
264 scenarios.
265*/
266class WXDLLIMPEXP_PROPGRID wxPGDefaultRenderer : public wxPGCellRenderer
267{
268public:
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
281protected:
282};
283
284// -----------------------------------------------------------------------
285
286/** @class wxPGAttributeStorage
287
288 wxPGAttributeStorage is somewhat optimized storage for
289 key=variant pairs (ie. a map).
290*/
291class WXDLLIMPEXP_PROPGRID wxPGAttributeStorage
292{
293public:
294 wxPGAttributeStorage();
295 ~wxPGAttributeStorage();
296
297 void Set( const wxString& name, const wxVariant& value );
68bcfd2c 298 unsigned int GetCount() const { return (unsigned int) m_map.size(); }
1c4293cb
VZ
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);
a09307ab 325 ++it;
1c4293cb
VZ
326 return true;
327 }
328
329protected:
330 wxPGHashMapS2P m_map;
331};
332
333#endif // !SWIG
334
335// -----------------------------------------------------------------------
336
337/** @section propgrid_propflags wxPGProperty Flags
338 @{
339*/
340
341enum wxPG_PROPERTY_FLAGS
342{
343
344/** Indicates bold font.
345*/
346wxPG_PROP_MODIFIED = 0x0001,
347
348/** Disables ('greyed' text and editor does not activate) property.
349*/
350wxPG_PROP_DISABLED = 0x0002,
351
352/** Hider button will hide this property.
353*/
354wxPG_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*/
360wxPG_PROP_CUSTOMIMAGE = 0x0008,
361
362/** Do not create text based editor for this property (but button-triggered
363 dialog and choice are ok).
364*/
365wxPG_PROP_NOEDITOR = 0x0010,
366
367/** Property is collapsed, ie. it's children are hidden.
368*/
369wxPG_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*/
379wxPG_PROP_INVALID_VALUE = 0x0040,
380
381// 0x0080,
382
383/** Switched via SetWasModified(). Temporary flag - only used when
384 setting/changing property value.
385*/
386wxPG_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*/
392wxPG_PROP_AGGREGATE = 0x0400,
393
394/** If set, then child properties (if any) are copies and should not
395 be deleted in dtor.
396*/
397wxPG_PROP_CHILDREN_ARE_COPIES = 0x0800,
398
399/**
400 Classifies this item as a non-category.
401
402 Used for faster item type identification.
403*/
404wxPG_PROP_PROPERTY = 0x1000,
405
406/**
407 Classifies this item as a category.
408
409 Used for faster item type identification.
410*/
411wxPG_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*/
416wxPG_PROP_MISC_PARENT = 0x4000,
417
418/** Property is read-only. Editor is still created.
419*/
420wxPG_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*/
430wxPG_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*/
436wxPG_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*/
446wxPG_PROP_AUTO_UNSPECIFIED = 0x00040000,
447
448/** Indicates the bit useable by derived properties.
449*/
450wxPG_PROP_CLASS_SPECIFIC_1 = 0x00080000,
451
452/** Indicates the bit useable by derived properties.
453*/
454wxPG_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
1c4293cb
VZ
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
15cbcd00 485 wxPropertyGridInterface::SetPropertyAttribute() accept one of these as
1c4293cb
VZ
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
66fb9e12
JS
518/** Universal, wxArrayString. Set to enable auto-completion in any
519 wxTextCtrl-based property editor.
520*/
521#define wxPG_ATTR_AUTOCOMPLETE wxS("AutoComplete")
522
16372f0d
JS
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.
1c4293cb
VZ
530*/
531#define wxPG_BOOL_USE_CHECKBOX wxS("UseCheckbox")
532
16372f0d
JS
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.
1c4293cb
VZ
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
1c4293cb
VZ
638/** @}
639*/
640
1c4293cb 641// Redefine attribute macros to use cached strings
0ce8e27f
JS
642#undef wxPG_ATTR_DEFAULT_VALUE
643#define wxPG_ATTR_DEFAULT_VALUE wxPGGlobalVars->m_strDefaultValue
1c4293cb
VZ
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
1c4293cb
VZ
653#endif // !SWIG
654
655// -----------------------------------------------------------------------
656
939d9364 657#ifndef SWIG
1c4293cb 658
939d9364
JS
659/** @class wxPGChoiceEntry
660 Data of a single wxPGChoices choice.
1c4293cb 661*/
939d9364 662class WXDLLIMPEXP_PROPGRID wxPGChoiceEntry : public wxPGCell
1c4293cb 663{
1c4293cb 664public:
939d9364 665 wxPGChoiceEntry();
d7e2b522 666 wxPGChoiceEntry(const wxPGChoiceEntry& other)
18415eb5 667 : wxPGCell(other)
d7e2b522 668 {
d7e2b522
JS
669 m_value = other.m_value;
670 }
939d9364
JS
671 wxPGChoiceEntry( const wxString& label,
672 int value = wxPG_INVALID_VALUE )
673 : wxPGCell(), m_value(value)
674 {
d7e2b522 675 SetText(label);
939d9364 676 }
1c4293cb 677
d7e2b522 678 virtual ~wxPGChoiceEntry() { }
1c4293cb 679
939d9364 680 void SetValue( int value ) { m_value = value; }
939d9364 681 int GetValue() const { return m_value; }
1c4293cb 682
d7e2b522
JS
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
939d9364
JS
693protected:
694 int m_value;
695};
1c4293cb 696
1c4293cb 697
939d9364 698typedef void* wxPGChoicesId;
1c4293cb 699
939d9364
JS
700class WXDLLIMPEXP_PROPGRID wxPGChoicesData
701{
702 friend class wxPGChoices;
703public:
704 // Constructor sets m_refCount to 1.
705 wxPGChoicesData();
1c4293cb 706
939d9364 707 void CopyDataFrom( wxPGChoicesData* data );
1c4293cb 708
d7e2b522 709 wxPGChoiceEntry& Insert( int index, const wxPGChoiceEntry& item );
1c4293cb 710
939d9364
JS
711 // Delete all entries
712 void Clear();
1c4293cb 713
68bcfd2c
JS
714 unsigned int GetCount() const
715 {
716 return (unsigned int) m_items.size();
717 }
1c4293cb 718
d7e2b522 719 const wxPGChoiceEntry& Item( unsigned int i ) const
939d9364 720 {
d7e2b522
JS
721 wxASSERT_MSG( i < GetCount(), "invalid index" );
722 return m_items[i];
723 }
1c4293cb 724
d7e2b522
JS
725 wxPGChoiceEntry& Item( unsigned int i )
726 {
727 wxASSERT_MSG( i < GetCount(), "invalid index" );
f7a094e1 728 return m_items[i];
939d9364 729 }
1c4293cb 730
939d9364
JS
731 void DecRef()
732 {
733 m_refCount--;
734 wxASSERT( m_refCount >= 0 );
735 if ( m_refCount == 0 )
736 delete this;
737 }
1c4293cb 738
939d9364 739private:
d7e2b522 740 wxVector<wxPGChoiceEntry> m_items;
1c4293cb 741
939d9364
JS
742 // So that multiple properties can use the same set
743 int m_refCount;
1c4293cb 744
939d9364
JS
745 virtual ~wxPGChoicesData();
746};
1c4293cb 747
939d9364 748#define wxPGChoicesEmptyData ((wxPGChoicesData*)NULL)
1c4293cb 749
939d9364 750#endif // SWIG
1c4293cb 751
939d9364 752/** @class wxPGChoices
1c4293cb 753
939d9364
JS
754 Helper class for managing choices of wxPropertyGrid properties.
755 Each entry can have label, value, bitmap, text colour, and background
756 colour.
e1ef506e
JS
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.
1c4293cb 762
98c04633
JS
763 @remarks If you do not specify value for entry, index is used.
764
939d9364
JS
765 @library{wxpropgrid}
766 @category{propgrid}
767*/
768class WXDLLIMPEXP_PROPGRID wxPGChoices
769{
770public:
771 typedef long ValArrItem;
1c4293cb 772
939d9364
JS
773 /** Default constructor. */
774 wxPGChoices()
775 {
776 Init();
777 }
1c4293cb 778
e1ef506e
JS
779 /**
780 Copy constructor, uses reference counting. To create a real copy,
781 use Copy() member function instead.
782 */
939d9364
JS
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 }
1c4293cb 791
98c04633
JS
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 */
939d9364
JS
801 wxPGChoices( const wxChar** labels, const long* values = NULL )
802 {
803 Init();
804 Set(labels,values);
805 }
1c4293cb 806
98c04633
JS
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 */
939d9364
JS
816 wxPGChoices( const wxArrayString& labels,
817 const wxArrayInt& values = wxArrayInt() )
818 {
819 Init();
820 Set(labels,values);
821 }
1c4293cb 822
939d9364
JS
823 /** Simple interface constructor. */
824 wxPGChoices( wxPGChoicesData* data )
825 {
826 wxASSERT(data);
827 m_data = data;
828 data->m_refCount++;
829 }
1c4293cb 830
939d9364
JS
831 /** Destructor. */
832 ~wxPGChoices()
833 {
834 Free();
835 }
1c4293cb 836
939d9364
JS
837 /**
838 Adds to current.
1c4293cb 839
939d9364
JS
840 If did not have own copies, creates them now. If was empty, identical
841 to set except that creates copies.
98c04633
JS
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.
1c4293cb 848 */
939d9364 849 void Add( const wxChar** labels, const ValArrItem* values = NULL );
1c4293cb 850
939d9364 851 /** Version that works with wxArrayString and wxArrayInt. */
d7e2b522 852 void Add( const wxArrayString& arr, const wxArrayInt& arrint = wxArrayInt() );
1c4293cb 853
98c04633
JS
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 */
939d9364
JS
863 wxPGChoiceEntry& Add( const wxString& label,
864 int value = wxPG_INVALID_VALUE );
1c4293cb 865
939d9364
JS
866 /** Adds a single item, with bitmap. */
867 wxPGChoiceEntry& Add( const wxString& label,
868 const wxBitmap& bitmap,
869 int value = wxPG_INVALID_VALUE );
1c4293cb 870
939d9364
JS
871 /** Adds a single item with full entry information. */
872 wxPGChoiceEntry& Add( const wxPGChoiceEntry& entry )
873 {
874 return Insert(entry, -1);
875 }
1c4293cb 876
939d9364
JS
877 /** Adds single item. */
878 wxPGChoiceEntry& AddAsSorted( const wxString& label,
879 int value = wxPG_INVALID_VALUE );
1c4293cb 880
e1ef506e
JS
881 /**
882 Assigns choices data, using reference counting. To create a real copy,
883 use Copy() member function instead.
884 */
939d9364
JS
885 void Assign( const wxPGChoices& a )
886 {
887 AssignData(a.m_data);
888 }
1c4293cb 889
939d9364 890 void AssignData( wxPGChoicesData* data );
1c4293cb 891
939d9364 892 /** Delete all choices. */
2728c3bf 893 void Clear();
1c4293cb 894
e1ef506e
JS
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
939d9364
JS
906 void EnsureData()
907 {
908 if ( m_data == wxPGChoicesEmptyData )
909 m_data = new wxPGChoicesData();
910 }
1c4293cb 911
939d9364
JS
912 /** Gets a unsigned number identifying this list. */
913 wxPGChoicesId GetId() const { return (wxPGChoicesId) m_data; };
1c4293cb 914
68bcfd2c 915 const wxString& GetLabel( unsigned int ind ) const
939d9364
JS
916 {
917 return Item(ind).GetText();
918 }
1c4293cb 919
68bcfd2c 920 unsigned int GetCount () const
939d9364
JS
921 {
922 if ( !m_data )
923 return 0;
1c4293cb 924
939d9364
JS
925 return m_data->GetCount();
926 }
1c4293cb 927
68bcfd2c 928 int GetValue( unsigned int ind ) const { return Item(ind).GetValue(); }
1c4293cb 929
939d9364
JS
930 /** Returns array of values matching the given strings. Unmatching strings
931 result in wxPG_INVALID_VALUE entry in array.
1c4293cb 932 */
939d9364 933 wxArrayInt GetValuesForStrings( const wxArrayString& strings ) const;
1c4293cb 934
939d9364
JS
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;
1c4293cb 940
939d9364
JS
941 int Index( const wxString& str ) const;
942 int Index( int val ) const;
1c4293cb 943
939d9364
JS
944 /** Inserts single item. */
945 wxPGChoiceEntry& Insert( const wxString& label,
946 int index,
947 int value = wxPG_INVALID_VALUE );
1c4293cb 948
939d9364
JS
949 /** Inserts a single item with full entry information. */
950 wxPGChoiceEntry& Insert( const wxPGChoiceEntry& entry, int index );
1c4293cb 951
939d9364
JS
952 /** Returns false if this is a constant empty set of choices,
953 which should not be modified.
1c4293cb 954 */
939d9364
JS
955 bool IsOk() const
956 {
957 return ( m_data != wxPGChoicesEmptyData );
958 }
1c4293cb 959
939d9364
JS
960 const wxPGChoiceEntry& Item( unsigned int i ) const
961 {
962 wxASSERT( IsOk() );
d7e2b522 963 return m_data->Item(i);
939d9364 964 }
1c4293cb 965
939d9364
JS
966 wxPGChoiceEntry& Item( unsigned int i )
967 {
968 wxASSERT( IsOk() );
d7e2b522 969 return m_data->Item(i);
939d9364 970 }
1c4293cb 971
939d9364
JS
972 /** Removes count items starting at position nIndex. */
973 void RemoveAt(size_t nIndex, size_t count = 1);
1c4293cb 974
939d9364
JS
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 }
939d9364
JS
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
2728c3bf 996 void AllocExclusive();
939d9364
JS
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 }
1c4293cb 1005
939d9364
JS
1006 // Returns plain data ptr - no refcounting stuff is done.
1007 wxPGChoicesData* GetDataPtr() const { return m_data; }
1c4293cb 1008
939d9364
JS
1009 // Changes ownership of data to you.
1010 wxPGChoicesData* ExtractData()
1c4293cb 1011 {
939d9364
JS
1012 wxPGChoicesData* data = m_data;
1013 m_data = wxPGChoicesEmptyData;
1014 return data;
1c4293cb
VZ
1015 }
1016
939d9364 1017 wxArrayString GetLabels() const;
1c4293cb 1018
939d9364
JS
1019#ifndef SWIG
1020 void operator= (const wxPGChoices& a)
1021 {
a09307ab
PC
1022 if (this != &a)
1023 AssignData(a.m_data);
1c4293cb
VZ
1024 }
1025
939d9364 1026 wxPGChoiceEntry& operator[](unsigned int i)
1c4293cb 1027 {
939d9364 1028 return Item(i);
1c4293cb
VZ
1029 }
1030
939d9364 1031 const wxPGChoiceEntry& operator[](unsigned int i) const
1c4293cb 1032 {
939d9364 1033 return Item(i);
1c4293cb
VZ
1034 }
1035
939d9364
JS
1036protected:
1037 wxPGChoicesData* m_data;
1c4293cb 1038
939d9364
JS
1039 void Init();
1040 void Free();
1041#endif // !SWIG
1042};
1c4293cb 1043
939d9364 1044// -----------------------------------------------------------------------
1c4293cb 1045
939d9364 1046/** @class wxPGProperty
1c4293cb 1047
939d9364 1048 wxPGProperty is base class for all wxPropertyGrid properties.
1c4293cb 1049
939d9364
JS
1050 NB: Full class overview is now only present in
1051 interface/wx/propgrid/property.h.
1c4293cb 1052
939d9364
JS
1053 @library{wxpropgrid}
1054 @category{propgrid}
1055*/
1056class 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
14bac4b5 1063
939d9364 1064 DECLARE_ABSTRACT_CLASS(wxPGProperty)
939d9364
JS
1065public:
1066 typedef wxUint32 FlagType;
1c4293cb 1067
939d9364 1068 /** Basic constructor.
1c4293cb 1069 */
939d9364 1070 wxPGProperty();
1c4293cb 1071
939d9364
JS
1072 /** Constructor.
1073 Non-abstract property classes should have constructor of this style:
1c4293cb 1074
939d9364 1075 @code
1c4293cb 1076
939d9364
JS
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);
1c4293cb 1087
2fd4a524
JS
1088 // If has private child properties then create them here. Also
1089 // set flag that indicates presence of private children. E.g.:
1090 //
48a32cf6
JS
1091 // AddPrivateChild( new wxStringProperty("Subprop 1",
1092 // wxPG_LABEL,
1093 // value.GetSubProp1() ) );
939d9364 1094 }
1c4293cb 1095
939d9364
JS
1096 @endcode
1097 */
1098 wxPGProperty( const wxString& label, const wxString& name );
1c4293cb 1099
939d9364
JS
1100 /**
1101 Virtual destructor.
1102 It is customary for derived properties to implement this.
1c4293cb 1103 */
939d9364 1104 virtual ~wxPGProperty();
1c4293cb 1105
939d9364 1106 /** This virtual function is called after m_value has been set.
1c4293cb 1107
939d9364
JS
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();
1c4293cb 1118
939d9364
JS
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.
1c4293cb 1127
1c4293cb 1128 @remarks
939d9364 1129 - Default implementation always returns true.
1c4293cb 1130 */
939d9364
JS
1131 virtual bool ValidateValue( wxVariant& value,
1132 wxPGValidationInfo& validationInfo ) const;
1c4293cb 1133
939d9364 1134 /**
9e6bebdc
JS
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
939d9364
JS
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
1425eca5 1148 composite property string value (as generated by ValueToString()
939d9364 1149 called with this same flag).
1c4293cb 1150
9e6bebdc
JS
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).
1c4293cb 1159 */
939d9364
JS
1160 virtual bool StringToValue( wxVariant& variant,
1161 const wxString& text,
1162 int argFlags = 0 ) const;
1c4293cb 1163
939d9364 1164 /**
9e6bebdc
JS
1165 Converts integer (possibly a choice selection) into wxVariant value
1166 appropriate for this property.
1c4293cb 1167
9e6bebdc
JS
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.
1c4293cb 1174
939d9364
JS
1175 @param argFlags
1176 If wxPG_FULL_VALUE is set, returns complete, storable value instead
1177 of displayable one.
1c4293cb 1178
9e6bebdc
JS
1179 @return Returns @true if resulting wxVariant value was different.
1180
939d9364
JS
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.
9e6bebdc
JS
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).
1c4293cb 1191 */
939d9364
JS
1192 virtual bool IntToValue( wxVariant& value,
1193 int number,
1194 int argFlags = 0 ) const;
1195#endif // !defined(SWIG) || defined(CREATE_VCW)
1425eca5
JS
1196 /**
1197 Converts property value into a text representation.
1c4293cb 1198
1425eca5
JS
1199 @param value
1200 Value to be converted.
1c4293cb 1201
939d9364 1202 @param argFlags
1425eca5 1203 If 0 (default value), then displayed string is returned.
939d9364
JS
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
1425eca5
JS
1208 display as a part of string property's composite text
1209 representation.
1c4293cb 1210
1425eca5 1211 @remarks Default implementation calls GenerateComposedValue().
1c4293cb 1212 */
1425eca5 1213 virtual wxString ValueToString( wxVariant& value, int argFlags = 0 ) const;
1c4293cb 1214
939d9364
JS
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.
1c4293cb 1221 */
f275b5db 1222 bool SetValueFromString( const wxString& text, int flags = wxPG_PROGRAMMATIC_VALUE );
1c4293cb 1223
939d9364
JS
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.
1c4293cb 1233 */
939d9364 1234 bool SetValueFromInt( long value, int flags = 0 );
1c4293cb
VZ
1235
1236 /**
939d9364 1237 Returns size of the custom painted image in front of property.
1c4293cb 1238
939d9364
JS
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).
1c4293cb 1247 */
939d9364 1248 virtual wxSize OnMeasureImage( int item = -1 ) const;
1c4293cb
VZ
1249
1250 /**
939d9364 1251 Events received by editor widgets are processed here.
1c4293cb 1252
939d9364
JS
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).
1c4293cb 1259
939d9364
JS
1260 If the event causes value to be changed, SetValueInEvent()
1261 should be called to set the new value.
1c4293cb 1262
939d9364
JS
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.
1c4293cb 1271 */
939d9364
JS
1272 virtual bool OnEvent( wxPropertyGrid* propgrid,
1273 wxWindow* wnd_primary,
1274 wxEvent& event );
1c4293cb 1275
939d9364 1276 /**
b8b1ff48
JS
1277 Called after value of a child property has been altered. Must return
1278 new value of the whole property (after any alterations warrented by
1279 child's new value).
1c4293cb 1280
939d9364 1281 Note that this function is usually called at the time that value of
b8b1ff48
JS
1282 this property, or given child property, is still pending for change,
1283 and as such, result of GetValue() or m_value should not be relied
1284 on.
1c4293cb 1285
939d9364 1286 Sample pseudo-code implementation:
1c4293cb 1287
939d9364 1288 @code
b8b1ff48
JS
1289 wxVariant MyProperty::ChildChanged( wxVariant& thisValue,
1290 int childIndex,
1291 wxVariant& childValue ) const
939d9364
JS
1292 {
1293 // Acquire reference to actual type of data stored in variant
1294 // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros
1295 // were used to create the variant class).
1296 T& data = TFromVariant(thisValue);
1c4293cb 1297
939d9364
JS
1298 // Copy childValue into data.
1299 switch ( childIndex )
1300 {
1301 case 0:
1302 data.SetSubProp1( childvalue.GetLong() );
1303 break;
1304 case 1:
1305 data.SetSubProp2( childvalue.GetString() );
1306 break;
1307 ...
1308 }
b8b1ff48
JS
1309
1310 // Return altered data
1311 return data;
939d9364
JS
1312 }
1313 @endcode
1c4293cb 1314
939d9364 1315 @param thisValue
b8b1ff48
JS
1316 Value of this property. Changed value should be returned (in
1317 previous versions of wxPropertyGrid it was only necessary to
1318 write value back to this argument).
939d9364 1319 @param childIndex
b8b1ff48
JS
1320 Index of child changed (you can use Item(childIndex) to get
1321 child property).
939d9364 1322 @param childValue
b8b1ff48
JS
1323 (Pending) value of the child property.
1324
1325 @return
1326 Modified value of the whole property.
1c4293cb 1327 */
b8b1ff48
JS
1328 virtual wxVariant ChildChanged( wxVariant& thisValue,
1329 int childIndex,
1330 wxVariant& childValue ) const;
1c4293cb 1331
939d9364 1332 /** Returns pointer to an instance of used editor.
1c4293cb 1333 */
939d9364 1334 virtual const wxPGEditor* DoGetEditorClass() const;
1c4293cb 1335
939d9364
JS
1336 /** Returns pointer to the wxValidator that should be used
1337 with the editor of this property (NULL for no validator).
1338 Setting validator explicitly via SetPropertyValidator
1339 will override this.
1c4293cb 1340
939d9364
JS
1341 In most situations, code like this should work well
1342 (macros are used to maintain one actual validator instance,
1343 so on the second call the function exits within the first
1344 macro):
1c4293cb 1345
939d9364 1346 @code
1c4293cb 1347
939d9364
JS
1348 wxValidator* wxMyPropertyClass::DoGetValidator () const
1349 {
1350 WX_PG_DOGETVALIDATOR_ENTRY()
1c4293cb 1351
939d9364 1352 wxMyValidator* validator = new wxMyValidator(...);
1c4293cb 1353
939d9364 1354 ... prepare validator...
1c4293cb 1355
939d9364
JS
1356 WX_PG_DOGETVALIDATOR_EXIT(validator)
1357 }
1c4293cb 1358
939d9364
JS
1359 @endcode
1360
1361 @remarks
1362 You can get common filename validator by returning
1363 wxFileProperty::GetClassValidator(). wxDirProperty,
1364 for example, uses it.
1c4293cb 1365 */
939d9364 1366 virtual wxValidator* DoGetValidator () const;
1c4293cb 1367
939d9364
JS
1368 /**
1369 Override to paint an image in front of the property value text or
1370 drop-down list item (but only if wxPGProperty::OnMeasureImage is
1371 overridden as well).
1c4293cb 1372
939d9364
JS
1373 If property's OnMeasureImage() returns size that has height != 0 but
1374 less than row height ( < 0 has special meanings), wxPropertyGrid calls
1375 this method to draw a custom image in a limited area in front of the
1376 editor control or value text/graphics, and if control has drop-down
1377 list, then the image is drawn there as well (even in the case
1378 OnMeasureImage() returned higher height than row height).
1c4293cb 1379
939d9364
JS
1380 NOTE: Following applies when OnMeasureImage() returns a "flexible"
1381 height ( using wxPG_FLEXIBLE_SIZE(W,H) macro), which implies variable
1382 height items: If rect.x is < 0, then this is a measure item call, which
1383 means that dc is invalid and only thing that should be done is to set
1384 paintdata.m_drawnHeight to the height of the image of item at index
1385 paintdata.m_choiceItem. This call may be done even as often as once
1386 every drop-down popup show.
1c4293cb 1387
939d9364
JS
1388 @param dc
1389 wxDC to paint on.
1390 @param rect
1391 Box reserved for custom graphics. Includes surrounding rectangle,
1392 if any. If x is < 0, then this is a measure item call (see above).
1393 @param paintdata
1394 wxPGPaintData structure with much useful data.
1c4293cb 1395
939d9364
JS
1396 @remarks
1397 - You can actually exceed rect width, but if you do so then
1398 paintdata.m_drawnWidth must be set to the full width drawn in
1399 pixels.
1400 - Due to technical reasons, rect's height will be default even if
1401 custom height was reported during measure call.
1402 - Brush is guaranteed to be default background colour. It has been
1403 already used to clear the background of area being painted. It
1404 can be modified.
1405 - Pen is guaranteed to be 1-wide 'black' (or whatever is the proper
1406 colour) pen for drawing framing rectangle. It can be changed as
1407 well.
1408
1425eca5 1409 @see ValueToString()
1c4293cb 1410 */
939d9364
JS
1411 virtual void OnCustomPaint( wxDC& dc,
1412 const wxRect& rect,
1413 wxPGPaintData& paintdata );
1c4293cb 1414
939d9364
JS
1415 /**
1416 Returns used wxPGCellRenderer instance for given property column
1417 (label=0, value=1).
1c4293cb 1418
939d9364 1419 Default implementation returns editor's renderer for all columns.
1c4293cb 1420 */
939d9364 1421 virtual wxPGCellRenderer* GetCellRenderer( int column ) const;
1c4293cb 1422
939d9364
JS
1423 /** Returns which choice is currently selected. Only applies to properties
1424 which have choices.
1c4293cb 1425
939d9364
JS
1426 Needs to reimplemented in derived class if property value does not
1427 map directly to a choice. Integer as index, bool, and string usually do.
1c4293cb 1428 */
939d9364 1429 virtual int GetChoiceSelection() const;
1c4293cb 1430
939d9364
JS
1431 /**
1432 Refresh values of child properties.
1c4293cb 1433
939d9364 1434 Automatically called after value is set.
1c4293cb 1435 */
939d9364 1436 virtual void RefreshChildren();
1c4293cb 1437
939d9364 1438 /** Special handling for attributes of this property.
1c4293cb 1439
939d9364
JS
1440 If returns false, then the attribute will be automatically stored in
1441 m_attributes.
1c4293cb 1442
939d9364 1443 Default implementation simply returns false.
1c4293cb 1444 */
939d9364 1445 virtual bool DoSetAttribute( const wxString& name, wxVariant& value );
1c4293cb 1446
939d9364 1447 /** Returns value of an attribute.
1c4293cb 1448
939d9364 1449 Override if custom handling of attributes is needed.
1c4293cb 1450
939d9364 1451 Default implementation simply return NULL variant.
1c4293cb 1452 */
939d9364 1453 virtual wxVariant DoGetAttribute( const wxString& name ) const;
1c4293cb 1454
939d9364
JS
1455 /** Returns instance of a new wxPGEditorDialogAdapter instance, which is
1456 used when user presses the (optional) button next to the editor control;
1c4293cb 1457
939d9364
JS
1458 Default implementation returns NULL (ie. no action is generated when
1459 button is pressed).
1c4293cb 1460 */
939d9364
JS
1461 virtual wxPGEditorDialogAdapter* GetEditorDialog() const;
1462
d8812c6e
JS
1463 /**
1464 Called whenever validation has failed with given pending value.
1465
1466 @remarks If you implement this in your custom property class, please
1467 remember to call the baser implementation as well, since they
1468 may use it to revert property into pre-change state.
1469 */
1470 virtual void OnValidationFailure( wxVariant& pendingValue );
1471
939d9364 1472 /** Append a new choice to property's list of choices.
1c4293cb 1473 */
939d9364
JS
1474 int AddChoice( const wxString& label, int value = wxPG_INVALID_VALUE )
1475 {
1476 return InsertChoice(label, wxNOT_FOUND, value);
1477 }
1c4293cb 1478
939d9364
JS
1479 /**
1480 Returns true if children of this property are component values (for
1481 instance, points size, face name, and is_underlined are component
1482 values of a font).
1c4293cb 1483 */
939d9364 1484 bool AreChildrenComponents() const
1c4293cb 1485 {
939d9364
JS
1486 if ( m_flags & (wxPG_PROP_COMPOSED_VALUE|wxPG_PROP_AGGREGATE) )
1487 return true;
1488
1489 return false;
1c4293cb
VZ
1490 }
1491
91c818f8
JS
1492 /**
1493 Deletes children of the property.
1494 */
1495 void DeleteChildren();
1496
939d9364
JS
1497 /**
1498 Removes entry from property's wxPGChoices and editor control (if it is
1499 active).
1c4293cb 1500
939d9364 1501 If selected item is deleted, then the value is set to unspecified.
1c4293cb 1502 */
939d9364 1503 void DeleteChoice( int index );
1c4293cb
VZ
1504
1505 /**
939d9364
JS
1506 Call to enable or disable usage of common value (integer value that can
1507 be selected for properties instead of their normal values) for this
1508 property.
1c4293cb 1509
939d9364
JS
1510 Common values are disabled by the default for all properties.
1511 */
1512 void EnableCommonValue( bool enable = true )
1513 {
1514 if ( enable ) SetFlag( wxPG_PROP_USES_COMMON_VALUE );
1515 else ClearFlag( wxPG_PROP_USES_COMMON_VALUE );
1516 }
1c4293cb 1517
1425eca5 1518 /**
c82a80e8 1519 Composes text from values of child properties.
1425eca5 1520 */
c82a80e8
JS
1521 wxString GenerateComposedValue() const
1522 {
1523 wxString s;
1524 DoGenerateComposedValue(s);
1525 return s;
1526 }
1c4293cb 1527
939d9364
JS
1528 /** Returns property's label. */
1529 const wxString& GetLabel() const { return m_label; }
1c4293cb 1530
939d9364
JS
1531 /** Returns property's name with all (non-category, non-root) parents. */
1532 wxString GetName() const;
1c4293cb 1533
939d9364
JS
1534 /**
1535 Returns property's base name (ie parent's name is not added in any
1536 case)
1537 */
1538 const wxString& GetBaseName() const { return m_name; }
1539
1540 /** Returns read-only reference to property's list of choices.
1c4293cb 1541 */
939d9364
JS
1542 const wxPGChoices& GetChoices() const
1543 {
1544 return m_choices;
1545 }
1c4293cb 1546
939d9364
JS
1547 /** Returns coordinate to the top y of the property. Note that the
1548 position of scrollbars is not taken into account.
1c4293cb 1549 */
939d9364 1550 int GetY() const;
1c4293cb 1551
939d9364 1552 wxVariant GetValue() const
1c4293cb 1553 {
939d9364 1554 return DoGetValue();
1c4293cb
VZ
1555 }
1556
939d9364
JS
1557 /** Returns reference to the internal stored value. GetValue is preferred
1558 way to get the actual value, since GetValueRef ignores DoGetValue,
1559 which may override stored value.
1560 */
1561 wxVariant& GetValueRef()
1562 {
1563 return m_value;
1564 }
1c4293cb 1565
939d9364 1566 const wxVariant& GetValueRef() const
1c4293cb 1567 {
939d9364 1568 return m_value;
1c4293cb 1569 }
ac1013c0
JS
1570
1571 // Helper function (for wxPython bindings and such) for settings protected
1572 // m_value.
1573 wxVariant GetValuePlain() const
1574 {
1575 return m_value;
1576 }
1c4293cb 1577
1425eca5
JS
1578 /** Returns text representation of property's value.
1579
1580 @param argFlags
1581 If 0 (default value), then displayed string is returned.
1582 If wxPG_FULL_VALUE is set, returns complete, storable string value
1583 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
1584 string value that must be editable in textctrl. If
1585 wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
1586 display as a part of string property's composite text
1587 representation.
1588
1589 @remarks In older versions, this function used to be overridden to convert
1590 property's value into a string representation. This function is
1591 now handled by ValueToString(), and overriding this function now
1592 will result in run-time assertion failure.
1593 */
1594 virtual wxString GetValueAsString( int argFlags = 0 ) const;
1595
1596 /** Synonymous to GetValueAsString().
1597
1598 @deprecated Use GetValueAsString() instead.
1599
1600 @see GetValueAsString()
939d9364 1601 */
1425eca5 1602 wxDEPRECATED( wxString GetValueString( int argFlags = 0 ) const );
1c4293cb 1603
d7e2b522
JS
1604 /**
1605 Returns wxPGCell of given column.
939d9364 1606 */
d7e2b522 1607 const wxPGCell& GetCell( unsigned int column ) const;
1c4293cb 1608
d7e2b522 1609 wxPGCell& GetCell( unsigned int column );
1c4293cb 1610
939d9364
JS
1611 /** Return number of displayed common values for this property.
1612 */
1613 int GetDisplayedCommonValueCount() const;
1614
1615 wxString GetDisplayedString() const
1c4293cb 1616 {
1425eca5 1617 return GetValueAsString(0);
1c4293cb 1618 }
1c4293cb 1619
939d9364
JS
1620 /** Returns property grid where property lies. */
1621 wxPropertyGrid* GetGrid() const;
1622
1623 /** Returns owner wxPropertyGrid, but only if one is currently on a page
1624 displaying this property. */
1625 wxPropertyGrid* GetGridIfDisplayed() const;
1626
1627 /** Returns highest level non-category, non-root parent. Useful when you
1628 have nested wxCustomProperties/wxParentProperties.
1c4293cb 1629 @remarks
939d9364
JS
1630 Thus, if immediate parent is root or category, this will return the
1631 property itself.
1c4293cb 1632 */
939d9364 1633 wxPGProperty* GetMainParent() const;
1c4293cb 1634
939d9364
JS
1635 /** Return parent of property */
1636 wxPGProperty* GetParent() const { return m_parent; }
1637
1638 /** Returns true if property has editable wxTextCtrl when selected.
1639
1640 @remarks
1641 Altough disabled properties do not displayed editor, they still
1642 return True here as being disabled is considered a temporary
1643 condition (unlike being read-only or having limited editing enabled).
1c4293cb 1644 */
939d9364
JS
1645 bool IsTextEditable() const;
1646
1647 bool IsValueUnspecified() const
1c4293cb 1648 {
939d9364 1649 return m_value.IsNull();
1c4293cb
VZ
1650 }
1651
939d9364 1652 FlagType HasFlag( FlagType flag ) const
1c4293cb 1653 {
939d9364 1654 return ( m_flags & flag );
1c4293cb
VZ
1655 }
1656
939d9364 1657 /** Returns comma-delimited string of property attributes.
1c4293cb 1658 */
939d9364 1659 const wxPGAttributeStorage& GetAttributes() const
1c4293cb 1660 {
939d9364 1661 return m_attributes;
1c4293cb
VZ
1662 }
1663
939d9364 1664 /** Returns m_attributes as list wxVariant.
1c4293cb 1665 */
939d9364 1666 wxVariant GetAttributesAsList() const;
1c4293cb 1667
939d9364
JS
1668 FlagType GetFlags() const
1669 {
1670 return m_flags;
1671 }
1c4293cb 1672
939d9364 1673 const wxPGEditor* GetEditorClass() const;
1c4293cb 1674
939d9364
JS
1675 wxString GetValueType() const
1676 {
1677 return m_value.GetType();
1678 }
1c4293cb 1679
939d9364 1680 /** Returns editor used for given column. NULL for no editor.
1c4293cb 1681 */
939d9364 1682 const wxPGEditor* GetColumnEditor( int column ) const
1c4293cb 1683 {
939d9364
JS
1684 if ( column == 1 )
1685 return GetEditorClass();
1686
1687 return NULL;
1c4293cb
VZ
1688 }
1689
939d9364
JS
1690 /** Returns common value selected for this property. -1 for none.
1691 */
1692 int GetCommonValue() const
1c4293cb 1693 {
939d9364 1694 return m_commonValue;
1c4293cb
VZ
1695 }
1696
939d9364
JS
1697 /** Returns true if property has even one visible child.
1698 */
1699 bool HasVisibleChildren() const;
1c4293cb 1700
48a32cf6
JS
1701 /**
1702 Use this member function to add independent (ie. regular) children to
1703 a property.
1704
1705 @return Inserted childProperty.
1706
1707 @remarks wxPropertyGrid is not automatically refreshed by this
1708 function.
1709
1710 @see AddPrivateChild()
1711 */
1712 wxPGProperty* InsertChild( int index, wxPGProperty* childProperty );
1713
939d9364
JS
1714 /** Inserts a new choice to property's list of choices.
1715 */
1716 int InsertChoice( const wxString& label, int index, int value = wxPG_INVALID_VALUE );
1c4293cb
VZ
1717
1718 /**
939d9364 1719 Returns true if this property is actually a wxPropertyCategory.
1c4293cb 1720 */
939d9364 1721 bool IsCategory() const { return HasFlag(wxPG_PROP_CATEGORY)?true:false; }
1c4293cb 1722
939d9364 1723 /** Returns true if this property is actually a wxRootProperty.
1c4293cb 1724 */
939d9364 1725 bool IsRoot() const { return (m_parent == NULL); }
1c4293cb 1726
939d9364
JS
1727 /** Returns true if this is a sub-property. */
1728 bool IsSubProperty() const
1729 {
1730 wxPGProperty* parent = (wxPGProperty*)m_parent;
1731 if ( parent && !parent->IsCategory() )
1732 return true;
1733 return false;
1734 }
1c4293cb 1735
939d9364 1736 /** Returns last visible sub-property, recursively.
1c4293cb 1737 */
939d9364 1738 const wxPGProperty* GetLastVisibleSubItem() const;
1c4293cb 1739
939d9364 1740 wxVariant GetDefaultValue() const;
1c4293cb 1741
939d9364
JS
1742 int GetMaxLength() const
1743 {
1744 return (int) m_maxLen;
1745 }
1c4293cb 1746
939d9364
JS
1747 /**
1748 Determines, recursively, if all children are not unspecified.
1c4293cb 1749
bb6720bb
JS
1750 @param pendingList
1751 Assumes members in this wxVariant list as pending
1752 replacement values.
939d9364
JS
1753 */
1754 bool AreAllChildrenSpecified( wxVariant* pendingList = NULL ) const;
1c4293cb 1755
939d9364
JS
1756 /** Updates composed values of parent non-category properties, recursively.
1757 Returns topmost property updated.
1c4293cb 1758
939d9364
JS
1759 @remarks
1760 - Must not call SetValue() (as can be called in it).
1c4293cb 1761 */
939d9364 1762 wxPGProperty* UpdateParentValues();
1c4293cb 1763
939d9364
JS
1764 /** Returns true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES.
1765 */
bb6720bb 1766 bool UsesAutoUnspecified() const
939d9364 1767 {
bb6720bb 1768 return HasFlag(wxPG_PROP_AUTO_UNSPECIFIED)?true:false;
1c4293cb 1769 }
939d9364
JS
1770
1771 wxBitmap* GetValueImage() const
1772 {
1773 return m_valueBitmap;
1c4293cb 1774 }
1c4293cb 1775
939d9364 1776 wxVariant GetAttribute( const wxString& name ) const;
1c4293cb 1777
939d9364
JS
1778 /**
1779 Returns named attribute, as string, if found.
1c4293cb 1780
939d9364 1781 Otherwise defVal is returned.
1c4293cb 1782 */
939d9364 1783 wxString GetAttribute( const wxString& name, const wxString& defVal ) const;
1c4293cb 1784
939d9364
JS
1785 /**
1786 Returns named attribute, as long, if found.
1c4293cb 1787
939d9364
JS
1788 Otherwise defVal is returned.
1789 */
1790 long GetAttributeAsLong( const wxString& name, long defVal ) const;
1c4293cb 1791
939d9364
JS
1792 /**
1793 Returns named attribute, as double, if found.
1c4293cb 1794
939d9364 1795 Otherwise defVal is returned.
1c4293cb 1796 */
939d9364 1797 double GetAttributeAsDouble( const wxString& name, double defVal ) const;
1c4293cb 1798
939d9364 1799 unsigned int GetDepth() const { return (unsigned int)m_depth; }
1c4293cb 1800
939d9364
JS
1801 /** Gets flags as a'|' delimited string. Note that flag names are not
1802 prepended with 'wxPG_PROP_'.
1803 @param flagsMask
1804 String will only be made to include flags combined by this parameter.
1805 */
1806 wxString GetFlagsAsString( FlagType flagsMask ) const;
1c4293cb 1807
939d9364
JS
1808 /** Returns position in parent's array. */
1809 unsigned int GetIndexInParent() const
1c4293cb 1810 {
939d9364 1811 return (unsigned int)m_arrIndex;
1c4293cb
VZ
1812 }
1813
939d9364
JS
1814 /** Hides or reveals the property.
1815 @param hide
1816 true for hide, false for reveal.
1817 @param flags
1818 By default changes are applied recursively. Set this paramter
1819 wxPG_DONT_RECURSE to prevent this.
1820 */
1821 inline bool Hide( bool hide, int flags = wxPG_RECURSE );
1c4293cb 1822
939d9364
JS
1823 bool IsExpanded() const
1824 { return (!(m_flags & wxPG_PROP_COLLAPSED) && GetChildCount()); }
1c4293cb 1825
939d9364
JS
1826 /** Returns true if all parents expanded.
1827 */
1828 bool IsVisible() const;
1c4293cb 1829
939d9364 1830 bool IsEnabled() const { return !(m_flags & wxPG_PROP_DISABLED); }
1c4293cb 1831
939d9364
JS
1832 /** If property's editor is created this forces its recreation.
1833 Useful in SetAttribute etc. Returns true if actually did anything.
1834 */
1835 bool RecreateEditor();
1c4293cb 1836
939d9364
JS
1837 /** If property's editor is active, then update it's value.
1838 */
1839 void RefreshEditor();
1c4293cb 1840
939d9364
JS
1841 /** Sets an attribute for this property.
1842 @param name
1843 Text identifier of attribute. See @ref propgrid_property_attributes.
1844 @param value
1845 Value of attribute.
1846 */
1847 void SetAttribute( const wxString& name, wxVariant value );
1c4293cb 1848
939d9364 1849 void SetAttributes( const wxPGAttributeStorage& attributes );
1c4293cb 1850
d7e2b522
JS
1851 /**
1852 Sets property's background colour.
1853
1854 @param colour
1855 Background colour to use.
1856
1857 @param recursively
1858 If @true, children are affected recursively, and any categories
1859 are not.
1860 */
1861 void SetBackgroundColour( const wxColour& colour,
1862 bool recursively = false );
1863
1864 /**
1865 Sets property's text colour.
1866
1867 @param colour
1868 Text colour to use.
1869
1870 @param recursively
1871 If @true, children are affected recursively, and any categories
1872 are not.
1873 */
1874 void SetTextColour( const wxColour& colour,
1875 bool recursively = false );
1876
0ce8e27f
JS
1877 /** Set default value of a property. Synonymous to
1878
1879 @code
1880 SetAttribute("DefaultValue", value);
1881 @endcode
1882 */
1883 void SetDefaultValue( wxVariant& value );
1884
939d9364
JS
1885#ifndef SWIG
1886 /** Sets editor for a property.
1c4293cb 1887
939d9364
JS
1888 @param editor
1889 For builtin editors, use wxPGEditor_X, where X is builtin editor's
1890 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full
1891 list).
1c4293cb 1892
939d9364
JS
1893 For custom editors, use pointer you received from
1894 wxPropertyGrid::RegisterEditorClass().
1895 */
1896 void SetEditor( const wxPGEditor* editor )
1897 {
1898 m_customEditor = editor;
1899 }
1900#endif
1c4293cb 1901
939d9364
JS
1902 /** Sets editor for a property.
1903 */
1904 inline void SetEditor( const wxString& editorName );
1c4293cb 1905
d7e2b522
JS
1906 /**
1907 Sets cell information for given column.
939d9364 1908 */
d7e2b522 1909 void SetCell( int column, const wxPGCell& cell );
1c4293cb 1910
939d9364
JS
1911 /** Sets common value selected for this property. -1 for none.
1912 */
1913 void SetCommonValue( int commonValue )
1914 {
1915 m_commonValue = commonValue;
1916 }
1c4293cb 1917
939d9364
JS
1918 /** Sets flags from a '|' delimited string. Note that flag names are not
1919 prepended with 'wxPG_PROP_'.
1920 */
1921 void SetFlagsFromString( const wxString& str );
1c4293cb 1922
939d9364
JS
1923 /** Sets property's "is it modified?" flag. Affects children recursively.
1924 */
1925 void SetModifiedStatus( bool modified )
1926 {
1927 SetFlagRecursively(wxPG_PROP_MODIFIED, modified);
1928 }
1c4293cb 1929
939d9364
JS
1930 /** Call in OnEvent(), OnButtonClick() etc. to change the property value
1931 based on user input.
1c4293cb 1932
939d9364
JS
1933 @remarks
1934 This method is const since it doesn't actually modify value, but posts
1935 given variant as pending value, stored in wxPropertyGrid.
1936 */
1937 void SetValueInEvent( wxVariant value ) const;
1c4293cb 1938
939d9364
JS
1939 /**
1940 Call this to set value of the property.
1c4293cb 1941
939d9364
JS
1942 Unlike methods in wxPropertyGrid, this does not automatically update
1943 the display.
1c4293cb 1944
939d9364
JS
1945 @remarks
1946 Use wxPropertyGrid::ChangePropertyValue() instead if you need to run
1947 through validation process and send property change event.
1c4293cb 1948
939d9364
JS
1949 If you need to change property value in event, based on user input, use
1950 SetValueInEvent() instead.
1c4293cb 1951
939d9364 1952 @param pList
e777bd14
JS
1953 Pointer to list variant that contains child values. Used to
1954 indicate which children should be marked as modified.
1955
939d9364 1956 @param flags
e777bd14
JS
1957 Various flags (for instance, wxPG_SETVAL_REFRESH_EDITOR, which is
1958 enabled by default).
939d9364 1959 */
e777bd14
JS
1960 void SetValue( wxVariant value, wxVariant* pList = NULL,
1961 int flags = wxPG_SETVAL_REFRESH_EDITOR );
1c4293cb 1962
939d9364
JS
1963 /** Set wxBitmap in front of the value. This bitmap may be ignored
1964 by custom cell renderers.
1965 */
1966 void SetValueImage( wxBitmap& bmp );
1c4293cb 1967
939d9364 1968 /** Sets selected choice and changes property value.
1c4293cb 1969
939d9364
JS
1970 Tries to retain value type, although currently if it is not string,
1971 then it is forced to integer.
1972 */
1973 void SetChoiceSelection( int newValue );
1c4293cb 1974
939d9364
JS
1975 void SetExpanded( bool expanded )
1976 {
1977 if ( !expanded ) m_flags |= wxPG_PROP_COLLAPSED;
1978 else m_flags &= ~wxPG_PROP_COLLAPSED;
1979 }
1c4293cb 1980
d58526d5
JS
1981 /**
1982 Sets given property flag(s).
1983 */
939d9364 1984 void SetFlag( FlagType flag ) { m_flags |= flag; }
1c4293cb 1985
d58526d5
JS
1986 /**
1987 Sets or clears given property flag(s).
1988 */
1989 void ChangeFlag( FlagType flag, bool set )
1990 {
1991 if ( set )
1992 m_flags |= flag;
1993 else
1994 m_flags &= ~flag;
1995 }
1996
939d9364 1997 void SetFlagRecursively( FlagType flag, bool set );
1c4293cb 1998
939d9364
JS
1999 void SetHelpString( const wxString& helpString )
2000 {
2001 m_helpString = helpString;
2002 }
1c4293cb 2003
939d9364 2004 void SetLabel( const wxString& label ) { m_label = label; }
1c4293cb 2005
939d9364 2006 inline void SetName( const wxString& newName );
1c4293cb 2007
2fd4a524
JS
2008 /**
2009 Changes what sort of parent this property is for its children.
2010
2011 @param flag
48a32cf6
JS
2012 Use one of the following values: wxPG_PROP_MISC_PARENT (for
2013 generic parents), wxPG_PROP_CATEGORY (for categories), or
2fd4a524
JS
2014 wxPG_PROP_AGGREGATE (for derived property classes with private
2015 children).
2016
48a32cf6 2017 @remarks You generally do not need to call this function.
2fd4a524
JS
2018 */
2019 void SetParentalType( int flag )
2020 {
2021 m_flags &= ~(wxPG_PROP_PROPERTY|wxPG_PROP_PARENTAL_FLAGS);
2022 m_flags |= flag;
2023 }
2024
939d9364
JS
2025 void SetValueToUnspecified()
2026 {
2027 wxVariant val; // Create NULL variant
2028 SetValue(val);
2029 }
1c4293cb 2030
ac1013c0
JS
2031 // Helper function (for wxPython bindings and such) for settings protected
2032 // m_value.
2033 void SetValuePlain( wxVariant value )
2034 {
2035 m_value = value;
2036 }
2037
939d9364
JS
2038#if wxUSE_VALIDATORS
2039 /** Sets wxValidator for a property*/
2040 void SetValidator( const wxValidator& validator )
2041 {
2042 m_validator = wxDynamicCast(validator.Clone(),wxValidator);
2043 }
1c4293cb 2044
939d9364
JS
2045 /** Gets assignable version of property's validator. */
2046 wxValidator* GetValidator() const
2047 {
2048 if ( m_validator )
2049 return m_validator;
2050 return DoGetValidator();
2051 }
2052#endif // #if wxUSE_VALIDATORS
1c4293cb 2053
1c4293cb 2054#ifndef SWIG
939d9364
JS
2055 /** Returns client data (void*) of a property.
2056 */
2057 void* GetClientData() const
1c4293cb 2058 {
939d9364 2059 return m_clientData;
1c4293cb
VZ
2060 }
2061
939d9364
JS
2062 /** Sets client data (void*) of a property.
2063 @remarks
2064 This untyped client data has to be deleted manually.
2065 */
2066 void SetClientData( void* clientData )
1c4293cb 2067 {
939d9364 2068 m_clientData = clientData;
1c4293cb
VZ
2069 }
2070
939d9364
JS
2071 /** Returns client object of a property.
2072 */
2073 void SetClientObject(wxClientData* clientObject)
1c4293cb 2074 {
939d9364
JS
2075 delete m_clientObject;
2076 m_clientObject = clientObject;
1c4293cb
VZ
2077 }
2078
939d9364
JS
2079 /** Sets managed client object of a property.
2080 */
2081 wxClientData *GetClientObject() const { return m_clientObject; }
2082#endif
1c4293cb 2083
939d9364 2084 /** Sets new set of choices for property.
1c4293cb 2085
939d9364
JS
2086 @remarks
2087 This operation clears the property value.
2088 */
2089 bool SetChoices( wxPGChoices& choices );
1c4293cb 2090
939d9364
JS
2091 /** Set max length of text in text editor.
2092 */
2093 inline bool SetMaxLength( int maxLen );
1c4293cb 2094
939d9364
JS
2095 /** Call with 'false' in OnSetValue to cancel value changes after all
2096 (ie. cancel 'true' returned by StringToValue() or IntToValue()).
2097 */
2098 void SetWasModified( bool set = true )
1c4293cb 2099 {
939d9364
JS
2100 if ( set ) m_flags |= wxPG_PROP_WAS_MODIFIED;
2101 else m_flags &= ~wxPG_PROP_WAS_MODIFIED;
2102 }
1c4293cb 2103
939d9364
JS
2104 const wxString& GetHelpString() const
2105 {
2106 return m_helpString;
1c4293cb
VZ
2107 }
2108
939d9364 2109 void ClearFlag( FlagType flag ) { m_flags &= ~(flag); }
1c4293cb 2110
939d9364
JS
2111 // Use, for example, to detect if item is inside collapsed section.
2112 bool IsSomeParent( wxPGProperty* candidate_parent ) const;
1c4293cb 2113
939d9364
JS
2114 /**
2115 Adapts list variant into proper value using consecutive
2116 ChildChanged-calls.
2117 */
2118 void AdaptListToValue( wxVariant& list, wxVariant* value ) const;
99774d58 2119
48a32cf6
JS
2120#if wxPG_COMPATIBILITY_1_4
2121 /**
2122 Adds a private child property.
2123
2124 @deprecated Use AddPrivateChild() instead.
2125
2126 @see AddPrivateChild()
2127 */
2128 wxDEPRECATED( void AddChild( wxPGProperty* prop ) );
2129#endif
2130
2fd4a524 2131 /**
48a32cf6 2132 Adds a private child property. If you use this instead of
2fd4a524 2133 wxPropertyGridInterface::Insert() or
48a32cf6
JS
2134 wxPropertyGridInterface::AppendIn(), then property's parental
2135 type will automatically be set up to wxPG_PROP_AGGREGATE. In other
2136 words, all properties of this property will become private.
2137 */
2138 void AddPrivateChild( wxPGProperty* prop );
2fd4a524 2139
48a32cf6
JS
2140 /**
2141 Appends a new child property.
2fd4a524 2142 */
48a32cf6
JS
2143 wxPGProperty* AppendChild( wxPGProperty* prop )
2144 {
2145 return InsertChild(-1, prop);
2146 }
1c4293cb 2147
939d9364
JS
2148 /** Returns height of children, recursively, and
2149 by taking expanded/collapsed status into account.
1c4293cb 2150
939d9364
JS
2151 iMax is used when finding property y-positions.
2152 */
2153 int GetChildrenHeight( int lh, int iMax = -1 ) const;
1c4293cb 2154
939d9364 2155 /** Returns number of child properties */
68bcfd2c
JS
2156 unsigned int GetChildCount() const
2157 {
2158 return (unsigned int) m_children.size();
2159 }
1c4293cb 2160
939d9364 2161 /** Returns sub-property at index i. */
68bcfd2c 2162 wxPGProperty* Item( unsigned int i ) const
f7a094e1 2163 { return m_children[i]; }
1c4293cb 2164
939d9364
JS
2165 /** Returns last sub-property.
2166 */
f7a094e1 2167 wxPGProperty* Last() const { return m_children.back(); }
1c4293cb 2168
f7a094e1
JS
2169 /** Returns index of given child property. */
2170 int Index( const wxPGProperty* p ) const;
1c4293cb 2171
939d9364 2172 // Puts correct indexes to children
1b895132 2173 void FixIndicesOfChildren( unsigned int starthere = 0 );
1c4293cb 2174
4aee8334
JS
2175 /**
2176 Converts image width into full image offset, with margins.
2177 */
2178 int GetImageOffset( int imageWidth ) const;
2179
939d9364
JS
2180#ifndef SWIG
2181 // Returns wxPropertyGridPageState in which this property resides.
2182 wxPropertyGridPageState* GetParentState() const { return m_parentState; }
2183#endif
1c4293cb 2184
14bac4b5 2185#ifndef SWIG
939d9364
JS
2186 wxPGProperty* GetItemAtY( unsigned int y,
2187 unsigned int lh,
2188 unsigned int* nextItemY ) const;
14bac4b5
JS
2189#endif
2190
2191 /** Returns property at given virtual y coordinate.
2192 */
2193 wxPGProperty* GetItemAtY( unsigned int y ) const;
1c4293cb 2194
939d9364
JS
2195 /** Returns (direct) child property with given name (or NULL if not found).
2196 */
2197 wxPGProperty* GetPropertyByName( const wxString& name ) const;
1c4293cb 2198
939d9364 2199#ifndef SWIG
1c4293cb 2200
d7e2b522
JS
2201 // Returns various display-related information for given column
2202 void GetDisplayInfo( unsigned int column,
2203 int choiceIndex,
2204 int flags,
2205 wxString* pString,
2206 const wxPGCell** pCell );
2207
939d9364 2208 static wxString* sm_wxPG_LABEL;
1c4293cb 2209
939d9364
JS
2210 /** This member is public so scripting language bindings
2211 wrapper code can access it freely.
2212 */
2213 void* m_clientData;
1c4293cb 2214
939d9364 2215protected:
d7e2b522
JS
2216
2217 /**
2218 Sets property cell in fashion that reduces number of exclusive
2219 copies of cell data. Used when setting, for instance, same
2220 background colour for a number of properties.
2221
2222 @param firstCol
2223 First column to affect.
2224
2225 @param lastCol
2226 Last column to affect.
2227
2228 @param preparedCell
2229 Pre-prepared cell that is used for those which cell data
2230 before this matched unmodCellData.
2231
2232 @param srcData
2233 If unmodCellData did not match, valid cell data from this
2234 is merged into cell (usually generating new exclusive copy
2235 of cell's data).
2236
2237 @param unmodCellData
2238 If cell's cell data matches this, its cell is now set to
2239 preparedCell.
2240
2241 @param ignoreWithFlags
2242 Properties with any one of these flags are skipped.
2243
2244 @param recursively
2245 If @true, apply this operation recursively in child properties.
1c4293cb 2246 */
d7e2b522
JS
2247 void AdaptiveSetCell( unsigned int firstCol,
2248 unsigned int lastCol,
2249 const wxPGCell& preparedCell,
2250 const wxPGCell& srcData,
2251 wxPGCellData* unmodCellData,
2252 FlagType ignoreWithFlags,
2253 bool recursively );
2254
2255 /**
2256 Makes sure m_cells has size of column+1 (or more).
2257 */
2258 void EnsureCells( unsigned int column );
1c4293cb 2259
939d9364
JS
2260 /** Returns (direct) child property with given name (or NULL if not found),
2261 with hint index.
1c4293cb 2262
939d9364
JS
2263 @param hintIndex
2264 Start looking for the child at this index.
1c4293cb 2265
939d9364
JS
2266 @remarks
2267 Does not support scope (ie. Parent.Child notation).
2268 */
2269 wxPGProperty* GetPropertyByNameWH( const wxString& name,
2270 unsigned int hintIndex ) const;
1c4293cb 2271
939d9364 2272 /** This is used by Insert etc. */
48a32cf6
JS
2273 void DoAddChild( wxPGProperty* prop,
2274 int index = -1,
2275 bool correct_mode = true );
1c4293cb 2276
c82a80e8
JS
2277 void DoGenerateComposedValue( wxString& text,
2278 int argFlags = wxPG_VALUE_IS_CURRENT,
2279 const wxVariantList* valueOverrides = NULL,
2280 wxPGHashMapS2S* childResults = NULL ) const;
2281
939d9364
JS
2282 void DoSetName(const wxString& str) { m_name = str; }
2283
91c818f8
JS
2284 /** Deletes all sub-properties. */
2285 void Empty();
2286
2fd4a524
JS
2287 void InitAfterAdded( wxPropertyGridPageState* pageState,
2288 wxPropertyGrid* propgrid );
939d9364 2289
d8c74d04
JS
2290 // Removes child property with given pointer. Does not delete it.
2291 void RemoveChild( wxPGProperty* p );
2292
48a32cf6
JS
2293 void DoPreAddChild( int index, wxPGProperty* prop );
2294
939d9364
JS
2295 void SetParentState( wxPropertyGridPageState* pstate )
2296 { m_parentState = pstate; }
2297
2298 // Call after fixed sub-properties added/removed after creation.
2299 // if oldSelInd >= 0 and < new max items, then selection is
2300 // moved to it.
2301 void SubPropsChanged( int oldSelInd = -1 );
1c4293cb 2302
939d9364 2303 int GetY2( int lh ) const;
1c4293cb 2304
939d9364
JS
2305 wxString m_label;
2306 wxString m_name;
2307 wxPGProperty* m_parent;
d7e2b522 2308 wxPropertyGridPageState* m_parentState;
1c4293cb 2309
939d9364 2310 wxClientData* m_clientObject;
1c4293cb 2311
939d9364
JS
2312 // Overrides editor returned by property class
2313 const wxPGEditor* m_customEditor;
2314#if wxUSE_VALIDATORS
2315 // Editor is going to get this validator
2316 wxValidator* m_validator;
2317#endif
2318 // Show this in front of the value
2319 //
2320 // TODO: Can bitmap be implemented with wxPGCell?
2321 wxBitmap* m_valueBitmap;
1c4293cb 2322
939d9364
JS
2323 wxVariant m_value;
2324 wxPGAttributeStorage m_attributes;
f7a094e1 2325 wxArrayPGProperty m_children;
1c4293cb 2326
939d9364 2327 // Extended cell information
d7e2b522 2328 wxVector<wxPGCell> m_cells;
1c4293cb 2329
939d9364
JS
2330 // Choices shown in drop-down list of editor control.
2331 wxPGChoices m_choices;
1c4293cb 2332
939d9364
JS
2333 // Help shown in statusbar or help box.
2334 wxString m_helpString;
1c4293cb 2335
939d9364
JS
2336 // Index in parent's property array.
2337 unsigned int m_arrIndex;
1c4293cb 2338
939d9364
JS
2339 // If not -1, then overrides m_value
2340 int m_commonValue;
1c4293cb 2341
939d9364 2342 FlagType m_flags;
1c4293cb 2343
939d9364
JS
2344 // Maximum length (mainly for string properties). Could be in some sort of
2345 // wxBaseStringProperty, but currently, for maximum flexibility and
2346 // compatibility, we'll stick it here. Anyway, we had 3 excess bytes to use
2347 // so short int will fit in just fine.
2348 short m_maxLen;
1c4293cb 2349
939d9364
JS
2350 // Root has 0, categories etc. at that level 1, etc.
2351 unsigned char m_depth;
1c4293cb 2352
939d9364
JS
2353 // m_depthBgCol indicates width of background colour between margin and item
2354 // (essentially this is category's depth, if none then equals m_depth).
2355 unsigned char m_depthBgCol;
1c4293cb 2356
939d9364
JS
2357private:
2358 // Called in constructors.
2359 void Init();
2360 void Init( const wxString& label, const wxString& name );
2361#endif // #ifndef SWIG
2362};
1c4293cb 2363
939d9364 2364// -----------------------------------------------------------------------
1c4293cb 2365
939d9364
JS
2366//
2367// Property class declaration helper macros
2368// (wxPGRootPropertyClass and wxPropertyCategory require this).
2369//
1c4293cb 2370
939d9364
JS
2371#define WX_PG_DECLARE_DOGETEDITORCLASS \
2372 virtual const wxPGEditor* DoGetEditorClass() const;
1c4293cb
VZ
2373
2374#ifndef SWIG
939d9364
JS
2375 #define WX_PG_DECLARE_PROPERTY_CLASS(CLASSNAME) \
2376 public: \
2377 DECLARE_DYNAMIC_CLASS(CLASSNAME) \
2378 WX_PG_DECLARE_DOGETEDITORCLASS \
2379 private:
2380#else
2381 #define WX_PG_DECLARE_PROPERTY_CLASS(CLASSNAME)
2382#endif
1c4293cb 2383
939d9364
JS
2384// Implements sans constructor function. Also, first arg is class name, not
2385// property name.
2386#define WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(PROPNAME,T,EDITOR) \
2387const wxPGEditor* PROPNAME::DoGetEditorClass() const \
2388{ \
2389 return wxPGEditor_##EDITOR; \
2390}
1c4293cb 2391
939d9364 2392// -----------------------------------------------------------------------
1c4293cb 2393
939d9364 2394#ifndef SWIG
1c4293cb 2395
939d9364
JS
2396/** @class wxPGRootProperty
2397 @ingroup classes
2398 Root parent property.
2399*/
2400class WXDLLIMPEXP_PROPGRID wxPGRootProperty : public wxPGProperty
2401{
2402public:
2403 WX_PG_DECLARE_PROPERTY_CLASS(wxPGRootProperty)
2404public:
1c4293cb 2405
939d9364 2406 /** Constructor. */
94b8ecf1 2407 wxPGRootProperty( const wxString& name = wxS("<Root>") );
939d9364 2408 virtual ~wxPGRootProperty();
1c4293cb 2409
939d9364 2410 virtual bool StringToValue( wxVariant&, const wxString&, int ) const
1c4293cb 2411 {
939d9364 2412 return false;
1c4293cb
VZ
2413 }
2414
939d9364
JS
2415protected:
2416};
1c4293cb 2417
939d9364 2418// -----------------------------------------------------------------------
1c4293cb 2419
939d9364
JS
2420/** @class wxPropertyCategory
2421 @ingroup classes
2422 Category (caption) property.
2423*/
2424class WXDLLIMPEXP_PROPGRID wxPropertyCategory : public wxPGProperty
2425{
2426 friend class wxPropertyGrid;
2427 friend class wxPropertyGridPageState;
2428 WX_PG_DECLARE_PROPERTY_CLASS(wxPropertyCategory)
2429public:
1c4293cb 2430
939d9364
JS
2431 /** Default constructor is only used in special cases. */
2432 wxPropertyCategory();
2433
2434 wxPropertyCategory( const wxString& label,
2435 const wxString& name = wxPG_LABEL );
2436 ~wxPropertyCategory();
2437
2438 int GetTextExtent( const wxWindow* wnd, const wxFont& font ) const;
1c4293cb 2439
1425eca5 2440 virtual wxString ValueToString( wxVariant& value, int argFlags ) const;
1c4293cb 2441
a09307ab 2442protected:
939d9364
JS
2443 void SetTextColIndex( unsigned int colInd )
2444 { m_capFgColIndex = (wxByte) colInd; }
2445 unsigned int GetTextColIndex() const
2446 { return (unsigned int) m_capFgColIndex; }
2447
2448 void CalculateTextExtent( wxWindow* wnd, const wxFont& font );
2449
2450 int m_textExtent; // pre-calculated length of text
2451 wxByte m_capFgColIndex; // caption text colour index
2452
2453private:
1c4293cb 2454 void Init();
1c4293cb
VZ
2455};
2456
939d9364 2457#endif // !SWIG
1c4293cb
VZ
2458
2459// -----------------------------------------------------------------------
2460
f4bc1aa2
JS
2461#endif // wxUSE_PROPGRID
2462
1c4293cb 2463#endif // _WX_PROPGRID_PROPERTY_H_