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