]> git.saurik.com Git - wxWidgets.git/blob - include/wx/propgrid/propgrid.h
Fixed wxPropertyGrid empty space rendering
[wxWidgets.git] / include / wx / propgrid / propgrid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/propgrid.h
3 // Purpose: wxPropertyGrid
4 // Author: Jaakko Salli
5 // Modified by:
6 // Created: 2004-09-25
7 // RCS-ID: $Id$
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PROPGRID_PROPGRID_H_
13 #define _WX_PROPGRID_PROPGRID_H_
14
15 #if wxUSE_PROPGRID
16
17 #include "wx/thread.h"
18 #include "wx/dcclient.h"
19 #include "wx/scrolwin.h"
20 #include "wx/tooltip.h"
21 #include "wx/datetime.h"
22
23 #include "wx/propgrid/property.h"
24 #include "wx/propgrid/propgridiface.h"
25
26
27 #ifndef SWIG
28 extern WXDLLIMPEXP_DATA_PROPGRID(const char) wxPropertyGridNameStr[];
29 #endif
30
31 class wxPGComboBox;
32
33 // -----------------------------------------------------------------------
34 // Global variables
35 // -----------------------------------------------------------------------
36
37 #ifndef SWIG
38
39 // This is required for sharing common global variables.
40 class WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass
41 {
42 public:
43
44 wxPGGlobalVarsClass();
45 ~wxPGGlobalVarsClass();
46
47 #if wxUSE_THREADS
48 // Critical section for handling the globals. Generally it is not needed
49 // since GUI code is supposed to be in single thread. However,
50 // we do want the user to be able to convey wxPropertyGridEvents to other
51 // threads.
52 wxCriticalSection m_critSect;
53 #endif
54
55 // Used by advprops, but here to make things easier.
56 wxString m_pDefaultImageWildcard;
57
58 // Map of editor class instances (keys are name string).
59 wxPGHashMapS2P m_mapEditorClasses;
60
61 #if wxUSE_VALIDATORS
62 wxVector<wxValidator*> m_arrValidators; // These wxValidators need to be freed
63 #endif
64
65 wxPGHashMapS2P m_dictPropertyClassInfo; // PropertyName -> ClassInfo
66
67 wxPGChoices* m_fontFamilyChoices;
68
69 // Replace with your own to affect all properties using default renderer.
70 wxPGCellRenderer* m_defaultRenderer;
71
72 wxPGChoices m_boolChoices;
73
74 wxVariant m_vEmptyString;
75 wxVariant m_vZero;
76 wxVariant m_vMinusOne;
77 wxVariant m_vTrue;
78 wxVariant m_vFalse;
79
80 // Cached constant strings
81 wxPGCachedString m_strstring;
82 wxPGCachedString m_strlong;
83 wxPGCachedString m_strbool;
84 wxPGCachedString m_strlist;
85
86 wxPGCachedString m_strDefaultValue;
87 wxPGCachedString m_strMin;
88 wxPGCachedString m_strMax;
89 wxPGCachedString m_strUnits;
90 wxPGCachedString m_strInlineHelp;
91
92 // If true then some things are automatically translated
93 bool m_autoGetTranslation;
94
95 // > 0 if errors cannot or should not be shown in statusbar etc.
96 int m_offline;
97
98 int m_extraStyle; // global extra style
99
100 int m_warnings;
101
102 int HasExtraStyle( int style ) const { return (m_extraStyle & style); }
103 };
104
105 extern WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass* wxPGGlobalVars;
106
107 #define wxPGVariant_EmptyString (wxPGGlobalVars->m_vEmptyString)
108 #define wxPGVariant_Zero (wxPGGlobalVars->m_vZero)
109 #define wxPGVariant_MinusOne (wxPGGlobalVars->m_vMinusOne)
110 #define wxPGVariant_True (wxPGGlobalVars->m_vTrue)
111 #define wxPGVariant_False (wxPGGlobalVars->m_vFalse)
112
113 #define wxPGVariant_Bool(A) (A?wxPGVariant_True:wxPGVariant_False)
114
115 // When wxPG is loaded dynamically after the application is already running
116 // then the built-in module system won't pick this one up. Add it manually.
117 WXDLLIMPEXP_PROPGRID void wxPGInitResourceModule();
118
119 #endif // !SWIG
120
121 // -----------------------------------------------------------------------
122
123 /** @section propgrid_window_styles wxPropertyGrid Window Styles
124
125 SetWindowStyleFlag method can be used to modify some of these at run-time.
126 @{
127 */
128 enum wxPG_WINDOW_STYLES
129 {
130
131 /** This will cause Sort() automatically after an item is added.
132 When inserting a lot of items in this mode, it may make sense to
133 use Freeze() before operations and Thaw() afterwards to increase
134 performance.
135 */
136 wxPG_AUTO_SORT = 0x00000010,
137
138 /** Categories are not initially shown (even if added).
139 IMPORTANT NOTE: If you do not plan to use categories, then this
140 style will waste resources.
141 This flag can also be changed using wxPropertyGrid::EnableCategories method.
142 */
143 wxPG_HIDE_CATEGORIES = 0x00000020,
144
145 /* This style combines non-categoric mode and automatic sorting.
146 */
147 wxPG_ALPHABETIC_MODE = (wxPG_HIDE_CATEGORIES|wxPG_AUTO_SORT),
148
149 /** Modified values are shown in bold font. Changing this requires Refresh()
150 to show changes.
151 */
152 wxPG_BOLD_MODIFIED = 0x00000040,
153
154 /** When wxPropertyGrid is resized, splitter moves to the center. This
155 behavior stops once the user manually moves the splitter.
156 */
157 wxPG_SPLITTER_AUTO_CENTER = 0x00000080,
158
159 /** Display tooltips for cell text that cannot be shown completely. If
160 wxUSE_TOOLTIPS is 0, then this doesn't have any effect.
161 */
162 wxPG_TOOLTIPS = 0x00000100,
163
164 /** Disables margin and hides all expand/collapse buttons that would appear
165 outside the margin (for sub-properties). Toggling this style automatically
166 expands all collapsed items.
167 */
168 wxPG_HIDE_MARGIN = 0x00000200,
169
170 /** This style prevents user from moving the splitter.
171 */
172 wxPG_STATIC_SPLITTER = 0x00000400,
173
174 /** Combination of other styles that make it impossible for user to modify
175 the layout.
176 */
177 wxPG_STATIC_LAYOUT = (wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER),
178
179 /** Disables wxTextCtrl based editors for properties which
180 can be edited in another way.
181
182 Equals calling wxPropertyGrid::LimitPropertyEditing for all added
183 properties.
184 */
185 wxPG_LIMITED_EDITING = 0x00000800,
186
187 /** wxPropertyGridManager only: Show toolbar for mode and page selection. */
188 wxPG_TOOLBAR = 0x00001000,
189
190 /** wxPropertyGridManager only: Show adjustable text box showing description
191 or help text, if available, for currently selected property.
192 */
193 wxPG_DESCRIPTION = 0x00002000,
194
195 /** wxPropertyGridManager only: don't show an internal border around
196 the property grid.
197 */
198 wxPG_NO_INTERNAL_BORDER = 0x00004000
199 };
200
201 #if wxPG_COMPATIBILITY_1_4
202 // In wxPG 1.4 this was used to enable now-default theme border support
203 // in wxPropertyGridManager.
204 #define wxPG_THEME_BORDER 0x00000000
205 #endif
206
207
208 enum wxPG_EX_WINDOW_STYLES
209 {
210
211 /**
212 NOTE: wxPG_EX_xxx are extra window styles and must be set using
213 SetExtraStyle() member function.
214
215 Speeds up switching to wxPG_HIDE_CATEGORIES mode. Initially, if
216 wxPG_HIDE_CATEGORIES is not defined, the non-categorized data storage is
217 not activated, and switching the mode first time becomes somewhat slower.
218 wxPG_EX_INIT_NOCAT activates the non-categorized data storage right away.
219 IMPORTANT NOTE: If you do plan not switching to non-categoric mode, or if
220 you don't plan to use categories at all, then using this style will result
221 in waste of resources.
222
223 */
224 wxPG_EX_INIT_NOCAT = 0x00001000,
225
226 /** Extended window style that sets wxPropertyGridManager toolbar to not
227 use flat style.
228 */
229 wxPG_EX_NO_FLAT_TOOLBAR = 0x00002000,
230
231 /** Shows alphabetic/categoric mode buttons from toolbar.
232 */
233 wxPG_EX_MODE_BUTTONS = 0x00008000,
234
235 /** Show property help strings as tool tips instead as text on the status bar.
236 You can set the help strings using SetPropertyHelpString member function.
237 */
238 wxPG_EX_HELP_AS_TOOLTIPS = 0x00010000,
239
240 /** Prevent TAB from focusing to wxButtons. This behavior was default
241 in version 1.2.0 and earlier.
242 NOTE! Tabbing to button doesn't work yet. Problem seems to be that on wxMSW
243 atleast the button doesn't properly propagate key events (yes, I'm using
244 wxWANTS_CHARS).
245 */
246 //wxPG_EX_NO_TAB_TO_BUTTON = 0x00020000,
247
248 /** Allows relying on native double-buffering.
249 */
250 wxPG_EX_NATIVE_DOUBLE_BUFFERING = 0x00080000,
251
252 /** Set this style to let user have ability to set values of properties to
253 unspecified state. Same as setting wxPG_PROP_AUTO_UNSPECIFIED for
254 all properties.
255 */
256 wxPG_EX_AUTO_UNSPECIFIED_VALUES = 0x00200000,
257
258 /**
259 If this style is used, built-in attributes (such as wxPG_FLOAT_PRECISION
260 and wxPG_STRING_PASSWORD) are not stored into property's attribute storage
261 (thus they are not readable).
262
263 Note that this option is global, and applies to all wxPG property
264 containers.
265 */
266 wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES = 0x00400000,
267
268 /** Hides page selection buttons from toolbar.
269 */
270 wxPG_EX_HIDE_PAGE_BUTTONS = 0x01000000,
271
272 /** Allows multiple properties to be selected by user (by pressing SHIFT
273 when clicking on a property, or by dragging with left mouse button
274 down).
275
276 You can get array of selected properties with
277 wxPropertyGridInterface::GetSelectedProperties(). In multiple selection
278 mode wxPropertyGridInterface::GetSelection() returns
279 property which has editor active (usually the first one
280 selected). Other useful member functions are ClearSelection(),
281 AddToSelection() and RemoveFromSelection().
282 */
283 wxPG_EX_MULTIPLE_SELECTION = 0x02000000,
284
285 /**
286 This enables top-level window tracking which allows wxPropertyGrid to
287 notify the application of last-minute property value changes by user.
288
289 This style is not enabled by default because it may cause crashes when
290 wxPropertyGrid is used in with wxAUI or similar system.
291
292 @remarks If you are not in fact using any system that may change
293 wxPropertyGrid's top-level parent window on its own, then you
294 are recommended to enable this style.
295 */
296 wxPG_EX_ENABLE_TLP_TRACKING = 0x04000000,
297
298 /** Don't show divider above toolbar, on Windows.
299 */
300 wxPG_EX_NO_TOOLBAR_DIVIDER = 0x08000000,
301
302 /** Show a separator below the toolbar.
303 */
304 wxPG_EX_TOOLBAR_SEPARATOR = 0x10000000
305
306 };
307
308 #if wxPG_COMPATIBILITY_1_4
309 #define wxPG_EX_DISABLE_TLP_TRACKING 0x00000000
310 #endif
311
312 /** Combines various styles.
313 */
314 #define wxPG_DEFAULT_STYLE (0)
315
316 /** Combines various styles.
317 */
318 #define wxPGMAN_DEFAULT_STYLE (0)
319
320 /** @}
321 */
322
323 // -----------------------------------------------------------------------
324
325 //
326 // Ids for sub-controls
327 // NB: It should not matter what these are.
328 #define wxPG_SUBID1 2
329 #define wxPG_SUBID2 3
330 #define wxPG_SUBID_TEMP1 4
331
332 // -----------------------------------------------------------------------
333
334 /** @class wxPGCommonValue
335
336 wxPropertyGrid stores information about common values in these
337 records.
338
339 NB: Common value feature is not complete, and thus not mentioned in
340 documentation.
341 */
342 class WXDLLIMPEXP_PROPGRID wxPGCommonValue
343 {
344 public:
345
346 wxPGCommonValue( const wxString& label, wxPGCellRenderer* renderer )
347 {
348 m_label = label;
349 m_renderer = renderer;
350 renderer->IncRef();
351 }
352 virtual ~wxPGCommonValue()
353 {
354 m_renderer->DecRef();
355 }
356
357 virtual wxString GetEditableText() const { return m_label; }
358 const wxString& GetLabel() const { return m_label; }
359 wxPGCellRenderer* GetRenderer() const { return m_renderer; }
360
361 protected:
362 wxString m_label;
363 wxPGCellRenderer* m_renderer;
364 };
365
366 // -----------------------------------------------------------------------
367
368 /** @section propgrid_vfbflags wxPropertyGrid Validation Failure Behavior Flags
369 @{
370 */
371
372 enum wxPG_VALIDATION_FAILURE_BEHAVIOR_FLAGS
373 {
374
375 /** Prevents user from leaving property unless value is valid. If this
376 behavior flag is not used, then value change is instead cancelled.
377 */
378 wxPG_VFB_STAY_IN_PROPERTY = 0x01,
379
380 /** Calls wxBell() on validation failure.
381 */
382 wxPG_VFB_BEEP = 0x02,
383
384 /** Cell with invalid value will be marked (with red colour).
385 */
386 wxPG_VFB_MARK_CELL = 0x04,
387
388 /** Display customizable text message explaining the situation.
389 */
390 wxPG_VFB_SHOW_MESSAGE = 0x08,
391
392 /** Defaults. */
393 wxPG_VFB_DEFAULT = wxPG_VFB_STAY_IN_PROPERTY|wxPG_VFB_BEEP,
394
395 /** Only used internally. */
396 wxPG_VFB_UNDEFINED = 0x80
397
398 };
399
400 /** @}
401 */
402
403 typedef wxByte wxPGVFBFlags;
404
405 /**
406 wxPGValidationInfo
407
408 Used to convey validation information to and from functions that
409 actually perform validation. Mostly used in custom property
410 classes.
411 */
412 class WXDLLIMPEXP_PROPGRID wxPGValidationInfo
413 {
414 friend class wxPropertyGrid;
415 public:
416 /**
417 @return Returns failure behavior which is a combination of
418 @ref propgrid_vfbflags.
419 */
420 wxPGVFBFlags GetFailureBehavior() const
421 { return m_failureBehavior; }
422
423 /**
424 Returns current failure message.
425 */
426 const wxString& GetFailureMessage() const
427 { return m_failureMessage; }
428
429 /**
430 Returns reference to pending value.
431 */
432 wxVariant& GetValue()
433 {
434 wxASSERT(m_pValue);
435 return *m_pValue;
436 }
437
438 /** Set validation failure behavior
439
440 @param failureBehavior
441 Mixture of @ref propgrid_vfbflags.
442 */
443 void SetFailureBehavior(wxPGVFBFlags failureBehavior)
444 { m_failureBehavior = failureBehavior; }
445
446 /**
447 Set current failure message.
448 */
449 void SetFailureMessage(const wxString& message)
450 { m_failureMessage = message; }
451
452 private:
453 /** Value to be validated.
454 */
455 wxVariant* m_pValue;
456
457 /** Message displayed on validation failure.
458 */
459 wxString m_failureMessage;
460
461 /** Validation failure behavior. Use wxPG_VFB_XXX flags.
462 */
463 wxPGVFBFlags m_failureBehavior;
464 };
465
466 // -----------------------------------------------------------------------
467
468 /** @section propgrid_pgactions wxPropertyGrid Action Identifiers
469
470 These are used with wxPropertyGrid::AddActionTrigger() and
471 wxPropertyGrid::ClearActionTriggers().
472 @{
473 */
474
475 enum wxPG_KEYBOARD_ACTIONS
476 {
477 wxPG_ACTION_INVALID = 0,
478 wxPG_ACTION_NEXT_PROPERTY,
479 wxPG_ACTION_PREV_PROPERTY,
480 wxPG_ACTION_EXPAND_PROPERTY,
481 wxPG_ACTION_COLLAPSE_PROPERTY,
482 wxPG_ACTION_CANCEL_EDIT,
483 wxPG_ACTION_PRESS_BUTTON, // Causes editor button (if any) to be pressed
484 wxPG_ACTION_MAX
485 };
486
487 /** @}
488 */
489
490 // -----------------------------------------------------------------------
491
492
493 // wxPropertyGrid::DoSelectProperty flags (selFlags)
494
495 // Focuses to created editor
496 #define wxPG_SEL_FOCUS 0x0001
497 // Forces deletion and recreation of editor
498 #define wxPG_SEL_FORCE 0x0002
499 // For example, doesn't cause EnsureVisible
500 #define wxPG_SEL_NONVISIBLE 0x0004
501 // Do not validate editor's value before selecting
502 #define wxPG_SEL_NOVALIDATE 0x0008
503 // Property being deselected is about to be deleted
504 #define wxPG_SEL_DELETING 0x0010
505 // Property's values was set to unspecified by the user
506 #define wxPG_SEL_SETUNSPEC 0x0020
507 // Property's event handler changed the value
508 #define wxPG_SEL_DIALOGVAL 0x0040
509 // Set to disable sending of wxEVT_PG_SELECTED event
510 #define wxPG_SEL_DONT_SEND_EVENT 0x0080
511 // Don't make any graphics updates
512 #define wxPG_SEL_NO_REFRESH 0x0100
513
514 // -----------------------------------------------------------------------
515
516 #ifndef SWIG
517
518 // Internal flags
519 #define wxPG_FL_INITIALIZED 0x0001
520 // Set when creating editor controls if it was clicked on.
521 #define wxPG_FL_ACTIVATION_BY_CLICK 0x0002
522 #define wxPG_FL_DONT_CENTER_SPLITTER 0x0004
523 #define wxPG_FL_FOCUSED 0x0008
524 #define wxPG_FL_MOUSE_CAPTURED 0x0010
525 #define wxPG_FL_MOUSE_INSIDE 0x0020
526 #define wxPG_FL_VALUE_MODIFIED 0x0040
527 // don't clear background of m_wndEditor
528 #define wxPG_FL_PRIMARY_FILLS_ENTIRE 0x0080
529 // currently active editor uses custom image
530 #define wxPG_FL_CUR_USES_CUSTOM_IMAGE 0x0100
531 // cell colours override selection colours for selected cell
532 #define wxPG_FL_CELL_OVERRIDES_SEL 0x0200
533 #define wxPG_FL_SCROLLED 0x0400
534 // set when all added/inserted properties get hideable flag
535 #define wxPG_FL_ADDING_HIDEABLES 0x0800
536 // Disables showing help strings on statusbar.
537 #define wxPG_FL_NOSTATUSBARHELP 0x1000
538 // Marks that we created the state, so we have to destroy it too.
539 #define wxPG_FL_CREATEDSTATE 0x2000
540 // Set if scrollbar's existence was detected in last onresize.
541 #define wxPG_FL_SCROLLBAR_DETECTED 0x4000
542 // Set if wxPGMan requires redrawing of description text box.
543 #define wxPG_FL_DESC_REFRESH_REQUIRED 0x8000
544 // Set if contained in wxPropertyGridManager
545 #define wxPG_FL_IN_MANAGER 0x00020000
546 // Set after wxPropertyGrid is shown in its initial good size
547 #define wxPG_FL_GOOD_SIZE_SET 0x00040000
548 // Set when in SelectProperty.
549 #define wxPG_FL_IN_SELECT_PROPERTY 0x00100000
550 // Set when help string is shown in status bar
551 #define wxPG_FL_STRING_IN_STATUSBAR 0x00200000
552 // Splitter position has been custom-set by the user
553 #define wxPG_FL_SPLITTER_PRE_SET 0x00400000
554 // Validation failed. Clear on modify event.
555 #define wxPG_FL_VALIDATION_FAILED 0x00800000
556 // Auto sort is enabled (for categorized mode)
557 #define wxPG_FL_CATMODE_AUTO_SORT 0x01000000
558 // Set after page has been inserted to manager
559 #define wxPG_MAN_FL_PAGE_INSERTED 0x02000000
560 // Active editor control is abnormally large
561 #define wxPG_FL_ABNORMAL_EDITOR 0x04000000
562 // Recursion guard for HandleCustomEditorEvent
563 #define wxPG_FL_IN_HANDLECUSTOMEDITOREVENT 0x08000000
564 #define wxPG_FL_VALUE_CHANGE_IN_EVENT 0x10000000
565 // Editor control width should not change on resize
566 #define wxPG_FL_FIXED_WIDTH_EDITOR 0x20000000
567 // Width of panel can be different than width of grid
568 #define wxPG_FL_HAS_VIRTUAL_WIDTH 0x40000000
569 // Prevents RecalculateVirtualSize re-entrancy
570 #define wxPG_FL_RECALCULATING_VIRTUAL_SIZE 0x80000000
571
572 #endif // #ifndef SWIG
573
574 #if !defined(__wxPG_SOURCE_FILE__) && !defined(SWIG)
575 // Reduce compile time, but still include in user app
576 #include "wx/propgrid/props.h"
577 #endif
578
579 // -----------------------------------------------------------------------
580
581 /** @class wxPropertyGrid
582
583 wxPropertyGrid is a specialized grid for editing properties
584 such as strings, numbers, flagsets, fonts, and colours. wxPropertySheet
585 used to do the very same thing, but it hasn't been updated for a while
586 and it is currently deprecated.
587
588 Please note that most member functions are inherited and as such not
589 documented on this page. This means you will probably also want to read
590 wxPropertyGridInterface class reference.
591
592 See also @ref overview_propgrid.
593
594 @section propgrid_window_styles_ Window Styles
595
596 See @ref propgrid_window_styles.
597
598 @section propgrid_event_handling Event Handling
599
600 To process input from a propertygrid control, use these event handler
601 macros to direct input to member functions that take a wxPropertyGridEvent
602 argument.
603
604 @beginEventTable{wxPropertyGridEvent}
605 @event{EVT_PG_SELECTED (id, func)}
606 Respond to wxEVT_PG_SELECTED event, generated when a property selection
607 has been changed, either by user action or by indirect program
608 function. For instance, collapsing a parent property programmatically
609 causes any selected child property to become unselected, and may
610 therefore cause this event to be generated.
611 @event{EVT_PG_CHANGING(id, func)}
612 Respond to wxEVT_PG_CHANGING event, generated when property value
613 is about to be changed by user. Use wxPropertyGridEvent::GetValue()
614 to take a peek at the pending value, and wxPropertyGridEvent::Veto()
615 to prevent change from taking place, if necessary.
616 @event{EVT_PG_HIGHLIGHTED(id, func)}
617 Respond to wxEVT_PG_HIGHLIGHTED event, which occurs when mouse
618 moves over a property. Event's property is NULL if hovered area does
619 not belong to any property.
620 @event{EVT_PG_RIGHT_CLICK(id, func)}
621 Respond to wxEVT_PG_RIGHT_CLICK event, which occurs when property is
622 clicked on with right mouse button.
623 @event{EVT_PG_DOUBLE_CLICK(id, func)}
624 Respond to wxEVT_PG_DOUBLE_CLICK event, which occurs when property is
625 double-clicked onwith left mouse button.
626 @event{EVT_PG_ITEM_COLLAPSED(id, func)}
627 Respond to wxEVT_PG_ITEM_COLLAPSED event, generated when user collapses
628 a property or category..
629 @event{EVT_PG_ITEM_EXPANDED(id, func)}
630 Respond to wxEVT_PG_ITEM_EXPANDED event, generated when user expands
631 a property or category..
632 @event{EVT_PG_LABEL_EDIT_BEGIN(id, func)}
633 Respond to wxEVT_PG_LABEL_EDIT_BEGIN event, generated when is about to
634 begin editing a property label. You can veto this event to prevent the
635 action.
636 @event{EVT_PG_LABEL_EDIT_ENDING(id, func)}
637 Respond to wxEVT_PG_LABEL_EDIT_ENDING event, generated when is about to
638 end editing of a property label. You can veto this event to prevent the
639 action.
640 @endEventTable
641
642 @remarks
643
644 - Use Freeze() and Thaw() respectively to disable and enable drawing. This
645 will also delay sorting etc. miscellaneous calculations to the last
646 possible moment.
647
648 @library{wxpropgrid}
649 @category{propgrid}
650 */
651 class WXDLLIMPEXP_PROPGRID
652 wxPropertyGrid : public wxScrolledWindow, public wxPropertyGridInterface
653 {
654 friend class wxPropertyGridEvent;
655 friend class wxPropertyGridPageState;
656 friend class wxPropertyGridInterface;
657 friend class wxPropertyGridManager;
658
659 DECLARE_DYNAMIC_CLASS(wxPropertyGrid)
660 public:
661
662 #ifndef SWIG
663 /**
664 Two step constructor.
665
666 Call Create when this constructor is called to build up the
667 wxPropertyGrid
668 */
669 wxPropertyGrid();
670 #endif
671
672 /** The default constructor. The styles to be used are styles valid for
673 the wxWindow and wxScrolledWindow.
674
675 @see @link wndflags Additional Window Styles @endlink
676 */
677 wxPropertyGrid( wxWindow *parent, wxWindowID id = wxID_ANY,
678 const wxPoint& pos = wxDefaultPosition,
679 const wxSize& size = wxDefaultSize,
680 long style = wxPG_DEFAULT_STYLE,
681 const wxString& name = wxPropertyGridNameStr );
682
683 /** Destructor */
684 virtual ~wxPropertyGrid();
685
686 /** Adds given key combination to trigger given action.
687
688 @param action
689 Which action to trigger. See @link pgactions List of list of
690 wxPropertyGrid actions@endlink.
691 */
692 void AddActionTrigger( int action, int keycode, int modifiers = 0 );
693
694 /**
695 This static function enables or disables automatic use of
696 wxGetTranslation for following strings: wxEnumProperty list labels,
697 wxFlagsProperty sub-property labels.
698
699 Default is false.
700 */
701 static void AutoGetTranslation( bool enable );
702
703 /**
704 Changes value of a property, as if from an editor.
705
706 Use this instead of SetPropertyValue() if you need the value to run
707 through validation process, and also send the property change event.
708
709 @return
710 Returns true if value was successfully changed.
711 */
712 bool ChangePropertyValue( wxPGPropArg id, wxVariant newValue );
713
714 /**
715 Centers the splitter.
716
717 If argument is true, automatic splitter centering is enabled (only
718 applicapple if style wxPG_SPLITTER_AUTO_CENTER was defined).
719 */
720 void CenterSplitter( bool enable_auto_centering = false );
721
722 /** Deletes all properties.
723 */
724 virtual void Clear();
725
726 /** Clears action triggers for given action.
727 @param action
728 Which action to trigger. See @link pgactions List of list of
729 wxPropertyGrid actions@endlink.
730 */
731 void ClearActionTriggers( int action );
732
733 /** Forces updating the value of property from the editor control.
734
735 Note that wxEVT_PG_CHANGING and wxEVT_PG_CHANGED are dispatched using
736 ProcessEvent, meaning your event handlers will be called immediately.
737
738 @return
739 Returns true if anything was changed.
740 */
741 virtual bool CommitChangesFromEditor( wxUint32 flags = 0 );
742
743 /**
744 Two step creation.
745
746 Whenever the control is created without any parameters, use Create to
747 actually create it. Don't access the control's public methods before
748 this is called @see @link wndflags Additional Window Styles@endlink
749 */
750 bool Create( wxWindow *parent, wxWindowID id = wxID_ANY,
751 const wxPoint& pos = wxDefaultPosition,
752 const wxSize& size = wxDefaultSize,
753 long style = wxPG_DEFAULT_STYLE,
754 const wxString& name = wxPropertyGridNameStr );
755
756 /**
757 Call when editor widget's contents is modified.
758
759 For example, this is called when changes text in wxTextCtrl (used in
760 wxStringProperty and wxIntProperty).
761
762 @remarks
763 This function should only be called by custom properties.
764
765 @see wxPGProperty::OnEvent()
766 */
767 void EditorsValueWasModified() { m_iFlags |= wxPG_FL_VALUE_MODIFIED; }
768
769 /** Reverse of EditorsValueWasModified().
770
771 @remarks
772 This function should only be called by custom properties.
773 */
774 void EditorsValueWasNotModified()
775 {
776 m_iFlags &= ~(wxPG_FL_VALUE_MODIFIED);
777 }
778
779 /**
780 Enables or disables (shows/hides) categories according to parameter
781 enable.
782 */
783 bool EnableCategories( bool enable );
784
785 /** Scrolls and/or expands items to ensure that the given item is visible.
786 Returns true if something was actually done.
787 */
788 bool EnsureVisible( wxPGPropArg id );
789
790 /**
791 Reduces column sizes to minimum possible that contents are still
792 visibly (naturally some margin space will be applied as well).
793
794 @return
795 Minimum size for the grid to still display everything.
796
797 @remarks
798 Does not work well with wxPG_SPLITTER_AUTO_CENTER window style.
799
800 This function only works properly if grid size prior to call was already
801 fairly large.
802
803 Note that you can also get calculated column widths by calling
804 GetState->GetColumnWidth() immediately after this function returns.
805 */
806 wxSize FitColumns()
807 {
808 wxSize sz = m_pState->DoFitColumns();
809 return sz;
810 }
811
812 /**
813 Returns wxWindow that the properties are painted on, and which should
814 be used as the parent for editor controls.
815 */
816 wxWindow* GetPanel()
817 {
818 return this;
819 }
820
821 /** Returns current category caption background colour. */
822 wxColour GetCaptionBackgroundColour() const { return m_colCapBack; }
823
824 wxFont& GetCaptionFont() { return m_captionFont; }
825
826 const wxFont& GetCaptionFont() const { return m_captionFont; }
827
828 /** Returns current category caption text colour. */
829 wxColour GetCaptionForegroundColour() const { return m_colCapFore; }
830
831 /** Returns current cell background colour. */
832 wxColour GetCellBackgroundColour() const { return m_colPropBack; }
833
834 /** Returns current cell text colour when disabled. */
835 wxColour GetCellDisabledTextColour() const { return m_colDisPropFore; }
836
837 /** Returns current cell text colour. */
838 wxColour GetCellTextColour() const { return m_colPropFore; }
839
840 /**
841 Returns number of columns currently on grid.
842 */
843 unsigned int GetColumnCount() const
844 {
845 return (unsigned int) m_pState->m_colWidths.size();
846 }
847
848 /** Returns colour of empty space below properties. */
849 wxColour GetEmptySpaceColour() const { return m_colEmptySpace; }
850
851 /** Returns height of highest characters of used font. */
852 int GetFontHeight() const { return m_fontHeight; }
853
854 /** Returns pointer to itself. Dummy function that enables same kind
855 of code to use wxPropertyGrid and wxPropertyGridManager.
856 */
857 wxPropertyGrid* GetGrid() { return this; }
858
859 /** Returns rectangle of custom paint image.
860 */
861 wxRect GetImageRect( wxPGProperty* p, int item ) const;
862
863 /** Returns size of the custom paint image in front of property.
864 If no argument is given, returns preferred size.
865 */
866 wxSize GetImageSize( wxPGProperty* p = NULL, int item = -1 ) const;
867
868 //@{
869 /** Returns last item which could be iterated using given flags.
870 @param flags
871 See @ref propgrid_iterator_flags.
872 */
873 wxPGProperty* GetLastItem( int flags = wxPG_ITERATE_DEFAULT )
874 {
875 return m_pState->GetLastItem(flags);
876 }
877
878 const wxPGProperty* GetLastItem( int flags = wxPG_ITERATE_DEFAULT ) const
879 {
880 return m_pState->GetLastItem(flags);
881 }
882 //@}
883
884 /** Returns colour of lines between cells. */
885 wxColour GetLineColour() const { return m_colLine; }
886
887 /** Returns background colour of margin. */
888 wxColour GetMarginColour() const { return m_colMargin; }
889
890 /**
891 Returns most up-to-date value of selected property. This will return
892 value different from GetSelectedProperty()->GetValue() only when text
893 editor is activate and string edited by user represents valid,
894 uncommitted property value.
895 */
896 wxVariant GetUncommittedPropertyValue();
897
898 /** Returns "root property". It does not have name, etc. and it is not
899 visible. It is only useful for accessing its children.
900 */
901 wxPGProperty* GetRoot() const { return m_pState->m_properties; }
902
903 /** Returns height of a single grid row (in pixels). */
904 int GetRowHeight() const { return m_lineHeight; }
905
906 /** Returns currently selected property. */
907 wxPGProperty* GetSelectedProperty() const { return GetSelection(); }
908
909 /** Returns current selection background colour. */
910 wxColour GetSelectionBackgroundColour() const { return m_colSelBack; }
911
912 /** Returns current selection text colour. */
913 wxColour GetSelectionForegroundColour() const { return m_colSelFore; }
914
915 /** Returns current splitter x position. */
916 int GetSplitterPosition() const
917 { return m_pState->DoGetSplitterPosition(0); }
918
919 /** Returns wxTextCtrl active in currently selected property, if any. Takes
920 into account wxOwnerDrawnComboBox.
921 */
922 wxTextCtrl* GetEditorTextCtrl() const;
923
924 wxPGValidationInfo& GetValidationInfo()
925 {
926 return m_validationInfo;
927 }
928
929 /** Returns current vertical spacing. */
930 int GetVerticalSpacing() const { return (int)m_vspacing; }
931
932 /**
933 Returns @true if a property editor control has focus.
934 */
935 bool IsEditorFocused() const;
936
937 /** Returns true if editor's value was marked modified.
938 */
939 bool IsEditorsValueModified() const
940 { return ( m_iFlags & wxPG_FL_VALUE_MODIFIED ) ? true : false; }
941
942 /**
943 Returns information about arbitrary position in the grid.
944
945 @param pt
946 Coordinates in the virtual grid space. You may need to use
947 wxScrolledWindow::CalcScrolledPosition() for translating
948 wxPropertyGrid client coordinates into something this member
949 function can use.
950 */
951 wxPropertyGridHitTestResult HitTest( const wxPoint& pt ) const;
952
953 /** Returns true if any property has been modified by the user. */
954 bool IsAnyModified() const { return (m_pState->m_anyModified>0); }
955
956 /**
957 Returns true if updating is frozen (ie Freeze() called but not yet
958 Thaw() ).
959 */
960 bool IsFrozen() const { return (m_frozen>0)?true:false; }
961
962 /**
963 It is recommended that you call this function any time your code causes
964 wxPropertyGrid's top-level parent to change. wxPropertyGrid's OnIdle()
965 handler should be able to detect most changes, but it is not perfect.
966
967 @param newTLP
968 New top-level parent that is about to be set. Old top-level parent
969 window should still exist as the current one.
970
971 @remarks This function is automatically called from wxPropertyGrid::
972 Reparent() and wxPropertyGridManager::Reparent(). You only
973 need to use it if you reparent wxPropertyGrid indirectly.
974 */
975 void OnTLPChanging( wxWindow* newTLP );
976
977 /** Redraws given property.
978 */
979 virtual void RefreshProperty( wxPGProperty* p );
980
981 #ifndef SWIG
982 /** Registers a new editor class.
983 @return
984 Pointer to the editor class instance that should be used.
985 */
986 static wxPGEditor* RegisterEditorClass( wxPGEditor* editor,
987 bool noDefCheck = false )
988 {
989 return DoRegisterEditorClass(editor, wxEmptyString, noDefCheck);
990 }
991
992 static wxPGEditor* DoRegisterEditorClass( wxPGEditor* editorClass,
993 const wxString& editorName,
994 bool noDefCheck = false );
995 #endif
996
997 /** Resets all colours to the original system values.
998 */
999 void ResetColours();
1000
1001 /**
1002 Selects a property.
1003 Editor widget is automatically created, but not focused unless focus is
1004 true.
1005
1006 @param id
1007 Property to select.
1008
1009 @return
1010 True if selection finished successfully. Usually only fails if
1011 current value in editor is not valid.
1012
1013 @remarks In wxPropertyGrid 1.4, this member function used to generate
1014 wxEVT_PG_SELECTED. In wxWidgets 2.9 and later, it no longer
1015 does that.
1016
1017 @remarks This clears any previous selection.
1018 */
1019 bool SelectProperty( wxPGPropArg id, bool focus = false );
1020
1021 /**
1022 Set entire new selection from given list of properties.
1023 */
1024 void SetSelection( const wxArrayPGProperty& newSelection )
1025 {
1026 DoSetSelection( newSelection, wxPG_SEL_DONT_SEND_EVENT );
1027 }
1028
1029 /**
1030 Adds given property into selection. If wxPG_EX_MULTIPLE_SELECTION
1031 extra style is not used, then this has same effect as
1032 calling SelectProperty().
1033
1034 @remarks Multiple selection is not supported for categories. This
1035 means that if you have properties selected, you cannot
1036 add category to selection, and also if you have category
1037 selected, you cannot add other properties to selection.
1038 This member function will fail silently in these cases,
1039 even returning true.
1040 */
1041 bool AddToSelection( wxPGPropArg id )
1042 {
1043 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1044 return DoAddToSelection(p, wxPG_SEL_DONT_SEND_EVENT);
1045 }
1046
1047 /**
1048 Removes given property from selection. If property is not selected,
1049 an assertion failure will occur.
1050 */
1051 bool RemoveFromSelection( wxPGPropArg id )
1052 {
1053 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1054 return DoRemoveFromSelection(p, wxPG_SEL_DONT_SEND_EVENT);
1055 }
1056
1057 /**
1058 Makes given column editable by user.
1059
1060 @param editable
1061 Using @false here will disable column from being editable.
1062 */
1063 void MakeColumnEditable( unsigned int column, bool editable = true );
1064
1065 /**
1066 Creates label editor wxTextCtrl for given column, for property
1067 that is currently selected. When multiple selection is
1068 enabled, this applies to whatever property GetSelection()
1069 returns.
1070
1071 @param colIndex
1072 Which column's label to edit. Note that you should not
1073 use value 1, which is reserved for property value
1074 column.
1075
1076 @see EndLabelEdit(), MakeColumnEditable()
1077 */
1078 void BeginLabelEdit( unsigned int column = 0 )
1079 {
1080 DoBeginLabelEdit(column, wxPG_SEL_DONT_SEND_EVENT);
1081 }
1082
1083 /**
1084 Destroys label editor wxTextCtrl, if any.
1085
1086 @param commit
1087 Use @true (default) to store edited label text in
1088 property cell data.
1089
1090 @see BeginLabelEdit(), MakeColumnEditable()
1091 */
1092 void EndLabelEdit( bool commit = true )
1093 {
1094 DoEndLabelEdit(commit, wxPG_SEL_DONT_SEND_EVENT);
1095 }
1096
1097 /**
1098 Returns currently active label editor, NULL if none.
1099 */
1100 wxTextCtrl* GetLabelEditor() const
1101 {
1102 return m_labelEditor;
1103 }
1104
1105 /** Sets category caption background colour. */
1106 void SetCaptionBackgroundColour(const wxColour& col);
1107
1108 /** Sets category caption text colour. */
1109 void SetCaptionTextColour(const wxColour& col);
1110
1111 /** Sets default cell background colour - applies to property cells.
1112 Note that appearance of editor widgets may not be affected.
1113 */
1114 void SetCellBackgroundColour(const wxColour& col);
1115
1116 /** Sets cell text colour for disabled properties.
1117 */
1118 void SetCellDisabledTextColour(const wxColour& col);
1119
1120 /** Sets default cell text colour - applies to property name and value text.
1121 Note that appearance of editor widgets may not be affected.
1122 */
1123 void SetCellTextColour(const wxColour& col);
1124
1125 /** Set number of columns (2 or more).
1126 */
1127 void SetColumnCount( int colCount )
1128 {
1129 m_pState->SetColumnCount(colCount);
1130 Refresh();
1131 }
1132
1133 /**
1134 Sets the 'current' category - Append will add non-category properties
1135 under it.
1136 */
1137 void SetCurrentCategory( wxPGPropArg id )
1138 {
1139 wxPG_PROP_ARG_CALL_PROLOG()
1140 wxPropertyCategory* pc = wxDynamicCast(p, wxPropertyCategory);
1141 wxASSERT(pc);
1142 m_pState->m_currentCategory = pc;
1143 }
1144
1145 /** Sets colour of empty space below properties. */
1146 void SetEmptySpaceColour(const wxColour& col);
1147
1148 /** Sets colour of lines between cells. */
1149 void SetLineColour(const wxColour& col);
1150
1151 /** Sets background colour of margin. */
1152 void SetMarginColour(const wxColour& col);
1153
1154 /**
1155 Sets selection background colour - applies to selected property name
1156 background.
1157 */
1158 void SetSelectionBackgroundColour(const wxColour& col);
1159
1160 /**
1161 Sets selection foreground colour - applies to selected property name
1162 text.
1163 */
1164 void SetSelectionTextColour(const wxColour& col);
1165
1166 /** Sets x coordinate of the splitter.
1167 @remarks
1168 Splitter position cannot exceed grid size, and therefore setting it
1169 during form creation may fail as initial grid size is often smaller
1170 than desired splitter position, especially when sizers are being used.
1171 */
1172 void SetSplitterPosition( int newxpos, int col = 0 )
1173 {
1174 DoSetSplitterPosition_(newxpos, true, col);
1175 m_iFlags |= wxPG_FL_SPLITTER_PRE_SET;
1176 }
1177
1178 /**
1179 Sets the property sorting function.
1180
1181 @param sortFunction
1182 The sorting function to be used. It should return a value greater
1183 than 0 if position of p1 is after p2. So, for instance, when
1184 comparing property names, you can use following implementation:
1185
1186 @code
1187 int MyPropertySortFunction(wxPropertyGrid* propGrid,
1188 wxPGProperty* p1,
1189 wxPGProperty* p2)
1190 {
1191 return p1->GetBaseName().compare( p2->GetBaseName() );
1192 }
1193 @endcode
1194
1195 @remarks
1196 Default property sort function sorts properties by their labels
1197 (case-insensitively).
1198
1199 @see GetSortFunction, wxPropertyGridInterface::Sort,
1200 wxPropertyGridInterface::SortChildren
1201 */
1202 void SetSortFunction( wxPGSortCallback sortFunction )
1203 {
1204 m_sortFunction = sortFunction;
1205 }
1206
1207 /**
1208 Returns the property sort function (default is @NULL).
1209
1210 @see SetSortFunction
1211 */
1212 wxPGSortCallback GetSortFunction() const
1213 {
1214 return m_sortFunction;
1215 }
1216
1217 /** Set virtual width for this particular page. Width -1 indicates that the
1218 virtual width should be disabled. */
1219 void SetVirtualWidth( int width );
1220
1221 /**
1222 Moves splitter as left as possible, while still allowing all
1223 labels to be shown in full.
1224
1225 @param privateChildrenToo
1226 If @false, will still allow private children to be cropped.
1227 */
1228 void SetSplitterLeft( bool privateChildrenToo = false )
1229 {
1230 m_pState->SetSplitterLeft(privateChildrenToo);
1231 }
1232
1233 /** Sets vertical spacing. Can be 1, 2, or 3 - a value relative to font
1234 height. Value of 2 should be default on most platforms.
1235 */
1236 void SetVerticalSpacing( int vspacing )
1237 {
1238 m_vspacing = (unsigned char)vspacing;
1239 CalculateFontAndBitmapStuff( vspacing );
1240 if ( !m_pState->m_itemsAdded ) Refresh();
1241 }
1242
1243 /** Shows an brief error message that is related to a property. */
1244 void ShowPropertyError( wxPGPropArg id, const wxString& msg )
1245 {
1246 wxPG_PROP_ARG_CALL_PROLOG()
1247 DoShowPropertyError(p, msg);
1248 }
1249
1250 /////////////////////////////////////////////////////////////////
1251 //
1252 // Following methods do not need to be (currently) documented
1253 //
1254 /////////////////////////////////////////////////////////////////
1255
1256 bool HasVirtualWidth() const
1257 { return (m_iFlags & wxPG_FL_HAS_VIRTUAL_WIDTH) ? true : false; }
1258
1259 const wxPGCommonValue* GetCommonValue( unsigned int i ) const
1260 {
1261 return (wxPGCommonValue*) m_commonValues[i];
1262 }
1263
1264 /** Returns number of common values.
1265 */
1266 unsigned int GetCommonValueCount() const
1267 {
1268 return (unsigned int) m_commonValues.size();
1269 }
1270
1271 /** Returns label of given common value.
1272 */
1273 wxString GetCommonValueLabel( unsigned int i ) const
1274 {
1275 wxASSERT( GetCommonValue(i) );
1276 return GetCommonValue(i)->GetLabel();
1277 }
1278
1279 /**
1280 Returns index of common value that will truly change value to
1281 unspecified.
1282 */
1283 int GetUnspecifiedCommonValue() const { return m_cvUnspecified; }
1284
1285 /** Set index of common value that will truly change value to unspecified.
1286 Using -1 will set none to have such effect.
1287 Default is 0.
1288 */
1289 void SetUnspecifiedCommonValue( int index ) { m_cvUnspecified = index; }
1290
1291 /**
1292 Shortcut for creating dialog-caller button. Used, for example, by
1293 wxFontProperty.
1294 @remarks
1295 This should only be called by properties.
1296 */
1297 wxWindow* GenerateEditorButton( const wxPoint& pos, const wxSize& sz );
1298
1299 /** Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1300 fits as one). Call after control has been created (but before
1301 shown).
1302 */
1303 void FixPosForTextCtrl( wxWindow* ctrl,
1304 unsigned int forColumn = 1,
1305 const wxPoint& offset = wxPoint(0, 0) );
1306
1307 /** Shortcut for creating text editor widget.
1308 @param pos
1309 Same as pos given for CreateEditor.
1310 @param sz
1311 Same as sz given for CreateEditor.
1312 @param value
1313 Initial text for wxTextCtrl.
1314 @param secondary
1315 If right-side control, such as button, also created, then create it
1316 first and pass it as this parameter.
1317 @param extraStyle
1318 Extra style flags to pass for wxTextCtrl.
1319 @remarks
1320 Note that this should generally be called only by new classes derived
1321 from wxPGProperty.
1322 */
1323 wxWindow* GenerateEditorTextCtrl( const wxPoint& pos,
1324 const wxSize& sz,
1325 const wxString& value,
1326 wxWindow* secondary,
1327 int extraStyle = 0,
1328 int maxLen = 0,
1329 unsigned int forColumn = 1 );
1330
1331 /* Generates both textctrl and button.
1332 */
1333 wxWindow* GenerateEditorTextCtrlAndButton( const wxPoint& pos,
1334 const wxSize& sz, wxWindow** psecondary, int limited_editing,
1335 wxPGProperty* property );
1336
1337 /** Generates position for a widget editor dialog box.
1338 @param p
1339 Property for which dialog is positioned.
1340 @param sz
1341 Known or over-approximated size of the dialog.
1342 @return
1343 Position for dialog.
1344 */
1345 wxPoint GetGoodEditorDialogPosition( wxPGProperty* p,
1346 const wxSize& sz );
1347
1348 // Converts escape sequences in src_str to newlines,
1349 // tabs, etc. and copies result to dst_str.
1350 static wxString& ExpandEscapeSequences( wxString& dst_str,
1351 wxString& src_str );
1352
1353 // Converts newlines, tabs, etc. in src_str to escape
1354 // sequences, and copies result to dst_str.
1355 static wxString& CreateEscapeSequences( wxString& dst_str,
1356 wxString& src_str );
1357
1358 /**
1359 Returns rectangle that fully contains properties between and including
1360 p1 and p2.
1361 */
1362 wxRect GetPropertyRect( const wxPGProperty* p1,
1363 const wxPGProperty* p2 ) const;
1364
1365 /** Returns pointer to current active primary editor control (NULL if none).
1366 */
1367 wxWindow* GetEditorControl() const;
1368
1369 wxWindow* GetPrimaryEditor() const
1370 {
1371 return GetEditorControl();
1372 }
1373
1374 /**
1375 Returns pointer to current active secondary editor control (NULL if
1376 none).
1377 */
1378 wxWindow* GetEditorControlSecondary() const
1379 {
1380 return m_wndEditor2;
1381 }
1382
1383 /**
1384 Refreshes any active editor control.
1385 */
1386 void RefreshEditor();
1387
1388 // Events from editor controls are forward to this function
1389 void HandleCustomEditorEvent( wxEvent &event );
1390
1391 #ifndef SWIG
1392
1393 /**
1394 Generates contents for string dst based on the contents of
1395 wxArrayString src.
1396
1397 Format will be "(preDelim)str1(postDelim) (preDelim)str2(postDelim) and
1398 so on. Set flags to 1 inorder to convert backslashes to double-back-
1399 slashes and "(preDelims)"'s to "(preDelims)".
1400 */
1401 static void ArrayStringToString( wxString& dst, const wxArrayString& src,
1402 wxChar preDelim, wxChar postDelim,
1403 int flags );
1404
1405 // Mostly useful for page switching.
1406 void SwitchState( wxPropertyGridPageState* pNewState );
1407
1408 long GetInternalFlags() const { return m_iFlags; }
1409 bool HasInternalFlag( long flag ) const
1410 { return (m_iFlags & flag) ? true : false; }
1411 void SetInternalFlag( long flag ) { m_iFlags |= flag; }
1412 void ClearInternalFlag( long flag ) { m_iFlags &= ~(flag); }
1413 void IncFrozen() { m_frozen++; }
1414 void DecFrozen() { m_frozen--; }
1415
1416 void OnComboItemPaint( const wxPGComboBox* pCb,
1417 int item,
1418 wxDC* pDc,
1419 wxRect& rect,
1420 int flags );
1421
1422 /** Standardized double-to-string conversion.
1423 */
1424 static void DoubleToString( wxString& target,
1425 double value,
1426 int precision,
1427 bool removeZeroes,
1428 wxString* precTemplate );
1429
1430 /**
1431 Call this from wxPGProperty::OnEvent() to cause property value to be
1432 changed after the function returns (with true as return value).
1433 ValueChangeInEvent() must be used if you wish the application to be
1434 able to use wxEVT_PG_CHANGING to potentially veto the given value.
1435 */
1436 void ValueChangeInEvent( wxVariant variant )
1437 {
1438 m_changeInEventValue = variant;
1439 m_iFlags |= wxPG_FL_VALUE_CHANGE_IN_EVENT;
1440 }
1441
1442 /**
1443 You can use this member function, for instance, to detect in
1444 wxPGProperty::OnEvent() if wxPGProperty::SetValueInEvent() was
1445 already called in wxPGEditor::OnEvent(). It really only detects
1446 if was value was changed using wxPGProperty::SetValueInEvent(), which
1447 is usually used when a 'picker' dialog is displayed. If value was
1448 written by "normal means" in wxPGProperty::StringToValue() or
1449 IntToValue(), then this function will return false (on the other hand,
1450 wxPGProperty::OnEvent() is not even called in those cases).
1451 */
1452 bool WasValueChangedInEvent() const
1453 {
1454 return (m_iFlags & wxPG_FL_VALUE_CHANGE_IN_EVENT) ? true : false;
1455 }
1456
1457 /** Returns true if given event is from first of an array of buttons
1458 (as can be in case when wxPGMultiButton is used).
1459 */
1460 bool IsMainButtonEvent( const wxEvent& event )
1461 {
1462 return (event.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED)
1463 && (m_wndSecId == event.GetId());
1464 }
1465
1466 /** Pending value is expected to be passed in PerformValidation().
1467 */
1468 virtual bool DoPropertyChanged( wxPGProperty* p,
1469 unsigned int selFlags = 0 );
1470
1471 /** Called when validation for given property fails.
1472 @param invalidValue
1473 Value which failed in validation.
1474 @return
1475 Return true if user is allowed to change to another property even
1476 if current has invalid value.
1477 @remarks
1478 To add your own validation failure behavior, override
1479 wxPropertyGrid::DoOnValidationFailure().
1480 */
1481 bool OnValidationFailure( wxPGProperty* property,
1482 wxVariant& invalidValue );
1483
1484 /** Called to indicate property and editor has valid value now.
1485 */
1486 void OnValidationFailureReset( wxPGProperty* property )
1487 {
1488 if ( property && property->HasFlag(wxPG_PROP_INVALID_VALUE) )
1489 {
1490 DoOnValidationFailureReset(property);
1491 property->ClearFlag(wxPG_PROP_INVALID_VALUE);
1492 }
1493 m_validationInfo.m_failureMessage.clear();
1494 }
1495
1496 /** Override in derived class to display error messages in custom manner
1497 (these message usually only result from validation failure).
1498 */
1499 virtual void DoShowPropertyError( wxPGProperty* property,
1500 const wxString& msg );
1501
1502 /** Override to customize property validation failure behavior.
1503 @param invalidValue
1504 Value which failed in validation.
1505 @return
1506 Return true if user is allowed to change to another property even
1507 if current has invalid value.
1508 */
1509 virtual bool DoOnValidationFailure( wxPGProperty* property,
1510 wxVariant& invalidValue );
1511
1512 /** Override to customize resetting of property validation failure status.
1513 @remarks
1514 Property is guaranteed to have flag wxPG_PROP_INVALID_VALUE set.
1515 */
1516 virtual void DoOnValidationFailureReset( wxPGProperty* property );
1517
1518 int GetSpacingY() const { return m_spacingy; }
1519
1520 /**
1521 Must be called in wxPGEditor::CreateControls() if primary editor window
1522 is wxTextCtrl, just before textctrl is created.
1523 @param text
1524 Initial text value of created wxTextCtrl.
1525 */
1526 void SetupTextCtrlValue( const wxString text ) { m_prevTcValue = text; }
1527
1528 /**
1529 Unfocuses or closes editor if one was open, but does not deselect
1530 property.
1531 */
1532 bool UnfocusEditor();
1533
1534 virtual void SetWindowStyleFlag( long style );
1535
1536 void DrawItems( const wxPGProperty* p1, const wxPGProperty* p2 );
1537
1538 void DrawItem( wxPGProperty* p )
1539 {
1540 DrawItems(p,p);
1541 }
1542
1543 virtual void DrawItemAndChildren( wxPGProperty* p );
1544
1545 /**
1546 Draws item, children, and consequtive parents as long as category is
1547 not met.
1548 */
1549 void DrawItemAndValueRelated( wxPGProperty* p );
1550
1551 protected:
1552
1553 /**
1554 wxPropertyGridPageState used by the grid is created here.
1555
1556 If grid is used in wxPropertyGridManager, there is no point overriding
1557 this - instead, set custom wxPropertyGridPage classes.
1558 */
1559 virtual wxPropertyGridPageState* CreateState() const;
1560
1561 enum PerformValidationFlags
1562 {
1563 SendEvtChanging = 0x0001,
1564 IsStandaloneValidation = 0x0002 // Not called in response to event
1565 };
1566
1567 /**
1568 Runs all validation functionality (includes sending wxEVT_PG_CHANGING).
1569 Returns true if all tests passed. Implement in derived class to
1570 add additional validation behavior.
1571 */
1572 virtual bool PerformValidation( wxPGProperty* p,
1573 wxVariant& pendingValue,
1574 int flags = SendEvtChanging );
1575
1576 public:
1577
1578 // Control font changer helper.
1579 void SetCurControlBoldFont();
1580
1581 wxPGCell& GetPropertyDefaultCell()
1582 {
1583 return m_propertyDefaultCell;
1584 }
1585
1586 wxPGCell& GetCategoryDefaultCell()
1587 {
1588 return m_categoryDefaultCell;
1589 }
1590
1591 //
1592 // Public methods for semi-public use
1593 //
1594 bool DoSelectProperty( wxPGProperty* p, unsigned int flags = 0 );
1595
1596 // Overridden functions.
1597 virtual bool Destroy();
1598 // Returns property at given y coordinate (relative to grid's top left).
1599 wxPGProperty* GetItemAtY( int y ) const { return DoGetItemAtY(y); }
1600
1601 virtual void Refresh( bool eraseBackground = true,
1602 const wxRect *rect = (const wxRect *) NULL );
1603 virtual bool SetFont( const wxFont& font );
1604 #if wxPG_SUPPORT_TOOLTIPS
1605 void SetToolTip( const wxString& tipString );
1606 #endif
1607 virtual void Freeze();
1608 virtual void SetExtraStyle( long exStyle );
1609 virtual void Thaw();
1610 virtual bool Reparent( wxWindowBase *newParent );
1611
1612 protected:
1613 virtual wxSize DoGetBestSize() const;
1614
1615 #ifndef wxPG_ICON_WIDTH
1616 wxBitmap *m_expandbmp, *m_collbmp;
1617 #endif
1618
1619 wxCursor *m_cursorSizeWE;
1620
1621 /** wxWindow pointers to editor control(s). */
1622 wxWindow *m_wndEditor;
1623 wxWindow *m_wndEditor2;
1624
1625 #if wxPG_DOUBLE_BUFFER
1626 wxBitmap *m_doubleBuffer;
1627 #endif
1628
1629 /** Local time ms when control was created. */
1630 wxLongLong m_timeCreated;
1631
1632 /** wxPGProperty::OnEvent can change value by setting this. */
1633 wxVariant m_changeInEventValue;
1634
1635 /** Id of m_wndEditor2, or its first child, if any. */
1636 int m_wndSecId;
1637
1638 /** Extra Y spacing between the items. */
1639 int m_spacingy;
1640
1641 /** Control client area width; updated on resize. */
1642 int m_width;
1643
1644 /** Control client area height; updated on resize. */
1645 int m_height;
1646
1647 /** Current non-client width (needed when auto-centering). */
1648 int m_ncWidth;
1649
1650 /** Non-client width (auto-centering helper). */
1651 //int m_fWidth;
1652
1653 /** Previously recorded scroll start position. */
1654 int m_prevVY;
1655
1656 /**
1657 The gutter spacing in front and back of the image.
1658 This determines the amount of spacing in front of each item
1659 */
1660 int m_gutterWidth;
1661
1662 /** Includes separator line. */
1663 int m_lineHeight;
1664
1665 /** Gutter*2 + image width. */
1666 int m_marginWidth;
1667
1668 // y spacing for expand/collapse button.
1669 int m_buttonSpacingY;
1670
1671 /** Extra margin for expanded sub-group items. */
1672 int m_subgroup_extramargin;
1673
1674 /**
1675 The image width of the [+] icon.
1676
1677 This is also calculated in the gutter
1678 */
1679 int m_iconWidth;
1680
1681 #ifndef wxPG_ICON_WIDTH
1682
1683 /**
1684 The image height of the [+] icon.
1685
1686 This is calculated as minimal size and to align
1687 */
1688 int m_iconHeight;
1689 #endif
1690
1691 /** Current cursor id. */
1692 int m_curcursor;
1693
1694 /**
1695 This captionFont is made equal to the font of the wxScrolledWindow.
1696
1697 As extra the bold face is set on it when this is wanted by the user
1698 (see flags)
1699 */
1700 wxFont m_captionFont;
1701
1702 int m_fontHeight; // Height of the font.
1703
1704 /** m_splitterx when drag began. */
1705 int m_startingSplitterX;
1706
1707 /**
1708 Index to splitter currently being dragged (0=one after the first
1709 column).
1710 */
1711 int m_draggedSplitter;
1712
1713 /** Changed property, calculated in PerformValidation(). */
1714 wxPGProperty* m_chgInfo_changedProperty;
1715
1716 /**
1717 Lowest property for which editing happened, but which does not have
1718 aggregate parent
1719 */
1720 wxPGProperty* m_chgInfo_baseChangedProperty;
1721
1722 /** Changed property value, calculated in PerformValidation(). */
1723 wxVariant m_chgInfo_pendingValue;
1724
1725 /** Passed to SetValue. */
1726 wxVariant m_chgInfo_valueList;
1727
1728 /** Validation information. */
1729 wxPGValidationInfo m_validationInfo;
1730
1731 /** Actions and keys that trigger them. */
1732 wxPGHashMapI2I m_actionTriggers;
1733
1734 //
1735 // Temporary values
1736 //
1737
1738 /** Bits are used to indicate which colours are customized. */
1739 unsigned short m_coloursCustomized;
1740
1741 /** x - m_splitterx. */
1742 signed char m_dragOffset;
1743
1744 /** 0 = not dragging, 1 = drag just started, 2 = drag in progress */
1745 unsigned char m_dragStatus;
1746
1747 /** 0 = margin, 1 = label, 2 = value. */
1748 unsigned char m_mouseSide;
1749
1750 /** True when editor control is focused. */
1751 unsigned char m_editorFocused;
1752
1753 /** 1 if m_latsCaption is also the bottommost caption. */
1754 //unsigned char m_lastCaptionBottomnest;
1755
1756 /** Set to 1 when graphics frozen. */
1757 unsigned char m_frozen;
1758
1759 unsigned char m_vspacing;
1760
1761 // Used to track when Alt/Ctrl+Key was consumed.
1762 unsigned char m_keyComboConsumed;
1763
1764 /** 1 if in DoPropertyChanged() */
1765 unsigned char m_inDoPropertyChanged;
1766
1767 /** 1 if in CommitChangesFromEditor() */
1768 unsigned char m_inCommitChangesFromEditor;
1769
1770 /** 1 if in DoSelectProperty() */
1771 unsigned char m_inDoSelectProperty;
1772
1773 wxPGVFBFlags m_permanentValidationFailureBehavior; // Set by app
1774
1775 /** Internal flags - see wxPG_FL_XXX constants. */
1776 wxUint32 m_iFlags;
1777
1778 /** When drawing next time, clear this many item slots at the end. */
1779 int m_clearThisMany;
1780
1781 // Mouse is hovering over this column (index)
1782 unsigned int m_colHover;
1783
1784 // pointer to property that has mouse hovering
1785 wxPGProperty* m_propHover;
1786
1787 // Active label editor
1788 wxTextCtrl* m_labelEditor;
1789
1790 // For which property the label editor is active
1791 wxPGProperty* m_labelEditorProperty;
1792
1793 // EventObject for wxPropertyGridEvents
1794 wxWindow* m_eventObject;
1795
1796 // What (global) window is currently focused (needed to resolve event
1797 // handling mess).
1798 wxWindow* m_curFocused;
1799
1800 // Event currently being sent - NULL if none at the moment
1801 wxPropertyGridEvent* m_processedEvent;
1802
1803 // Last known top-level parent
1804 wxWindow* m_tlp;
1805
1806 // Last closed top-level parent
1807 wxWindow* m_tlpClosed;
1808
1809 // Local time ms when tlp was closed.
1810 wxLongLong m_tlpClosedTime;
1811
1812 // Sort function
1813 wxPGSortCallback m_sortFunction;
1814
1815 // y coordinate of property that mouse hovering
1816 int m_propHoverY;
1817
1818 // Which column's editor is selected (usually 1)?
1819 unsigned int m_selColumn;
1820
1821 // x relative to splitter (needed for resize).
1822 int m_ctrlXAdjust;
1823
1824 // lines between cells
1825 wxColour m_colLine;
1826 // property labels and values are written in this colour
1827 wxColour m_colPropFore;
1828 // or with this colour when disabled
1829 wxColour m_colDisPropFore;
1830 // background for m_colPropFore
1831 wxColour m_colPropBack;
1832 // text color for captions
1833 wxColour m_colCapFore;
1834 // background color for captions
1835 wxColour m_colCapBack;
1836 // foreground for selected property
1837 wxColour m_colSelFore;
1838 // background for selected property (actually use background color when
1839 // control out-of-focus)
1840 wxColour m_colSelBack;
1841 // background colour for margin
1842 wxColour m_colMargin;
1843 // background colour for empty space below the grid
1844 wxColour m_colEmptySpace;
1845
1846 // Default property colours
1847 wxPGCell m_propertyDefaultCell;
1848
1849 // Default property category
1850 wxPGCell m_categoryDefaultCell;
1851
1852 // Backup of selected property's cells
1853 wxVector<wxPGCell> m_propCellsBackup;
1854
1855 // NB: These *cannot* be moved to globals.
1856
1857 // labels when properties use common values
1858 wxVector<wxPGCommonValue*> m_commonValues;
1859
1860 // array of live events
1861 wxVector<wxPropertyGridEvent*> m_liveEvents;
1862
1863 // Which cv selection really sets value to unspecified?
1864 int m_cvUnspecified;
1865
1866 // Used to skip excess text editor events
1867 wxString m_prevTcValue;
1868
1869 protected:
1870
1871 // Sets some members to defaults (called constructors).
1872 void Init1();
1873
1874 // Initializes some members (called by Create and complex constructor).
1875 void Init2();
1876
1877 void OnPaint(wxPaintEvent &event );
1878
1879 // main event receivers
1880 void OnMouseMove( wxMouseEvent &event );
1881 void OnMouseClick( wxMouseEvent &event );
1882 void OnMouseRightClick( wxMouseEvent &event );
1883 void OnMouseDoubleClick( wxMouseEvent &event );
1884 void OnMouseUp( wxMouseEvent &event );
1885 void OnKey( wxKeyEvent &event );
1886 void OnResize( wxSizeEvent &event );
1887
1888 // event handlers
1889 bool HandleMouseMove( int x, unsigned int y, wxMouseEvent &event );
1890 bool HandleMouseClick( int x, unsigned int y, wxMouseEvent &event );
1891 bool HandleMouseRightClick( int x, unsigned int y, wxMouseEvent &event );
1892 bool HandleMouseDoubleClick( int x, unsigned int y, wxMouseEvent &event );
1893 bool HandleMouseUp( int x, unsigned int y, wxMouseEvent &event );
1894 void HandleKeyEvent( wxKeyEvent &event, bool fromChild );
1895
1896 void OnMouseEntry( wxMouseEvent &event );
1897
1898 void OnIdle( wxIdleEvent &event );
1899 void OnFocusEvent( wxFocusEvent &event );
1900 void OnChildFocusEvent( wxChildFocusEvent& event );
1901
1902 bool OnMouseCommon( wxMouseEvent &event, int* px, int *py );
1903 bool OnMouseChildCommon( wxMouseEvent &event, int* px, int *py );
1904
1905 // sub-control event handlers
1906 void OnMouseClickChild( wxMouseEvent &event );
1907 void OnMouseRightClickChild( wxMouseEvent &event );
1908 void OnMouseMoveChild( wxMouseEvent &event );
1909 void OnMouseUpChild( wxMouseEvent &event );
1910 void OnChildKeyDown( wxKeyEvent &event );
1911
1912 void OnCaptureChange( wxMouseCaptureChangedEvent &event );
1913
1914 void OnScrollEvent( wxScrollWinEvent &event );
1915
1916 void OnSysColourChanged( wxSysColourChangedEvent &event );
1917
1918 void OnTLPClose( wxCloseEvent& event );
1919
1920 protected:
1921
1922 bool AddToSelectionFromInputEvent( wxPGProperty* prop,
1923 unsigned int colIndex,
1924 wxMouseEvent* event = NULL,
1925 int selFlags = 0 );
1926
1927 /**
1928 Adjust the centering of the bitmap icons (collapse / expand) when the
1929 caption font changes.
1930
1931 They need to be centered in the middle of the font, so a bit of deltaY
1932 adjustment is needed. On entry, m_captionFont must be set to window
1933 font. It will be modified properly.
1934 */
1935 void CalculateFontAndBitmapStuff( int vspacing );
1936
1937 wxRect GetEditorWidgetRect( wxPGProperty* p, int column ) const;
1938
1939 void CorrectEditorWidgetSizeX();
1940
1941 /** Called in RecalculateVirtualSize() to reposition control
1942 on virtual height changes.
1943 */
1944 void CorrectEditorWidgetPosY();
1945
1946 int DoDrawItems( wxDC& dc,
1947 const wxRect* drawRect,
1948 bool isBuffered ) const;
1949
1950 /** Draws an expand/collapse (ie. +/-) button.
1951 */
1952 virtual void DrawExpanderButton( wxDC& dc, const wxRect& rect,
1953 wxPGProperty* property ) const;
1954
1955 /** Draws items from topitemy to bottomitemy */
1956 void DrawItems( wxDC& dc, unsigned int topitemy, unsigned int bottomitemy,
1957 const wxRect* clip_rect = (const wxRect*) NULL );
1958
1959 // Translate wxKeyEvent to wxPG_ACTION_XXX
1960 int KeyEventToActions(wxKeyEvent &event, int* pSecond) const;
1961
1962 int KeyEventToAction(wxKeyEvent &event) const
1963 {
1964 return KeyEventToActions(event, NULL);
1965 }
1966
1967 void ImprovedClientToScreen( int* px, int* py );
1968
1969 // Called by focus event handlers. newFocused is the window that becomes
1970 // focused.
1971 void HandleFocusChange( wxWindow* newFocused );
1972
1973 /** Reloads all non-customized colours from system settings. */
1974 void RegainColours();
1975
1976 bool DoEditorValidate();
1977
1978 // Similar to DoSelectProperty() but also works on columns
1979 // other than 1. Does not active editor if column is not
1980 // editable.
1981 bool DoSelectAndEdit( wxPGProperty* prop,
1982 unsigned int colIndex,
1983 unsigned int selFlags );
1984
1985 void DoSetSelection( const wxArrayPGProperty& newSelection,
1986 int selFlags = 0 );
1987
1988 bool DoAddToSelection( wxPGProperty* prop,
1989 int selFlags = 0 );
1990
1991 bool DoRemoveFromSelection( wxPGProperty* prop,
1992 int selFlags = 0 );
1993
1994 void DoBeginLabelEdit( unsigned int colIndex, int selFlags = 0 );
1995 void DoEndLabelEdit( bool commit, int selFlags = 0 );
1996 void OnLabelEditorEnterPress( wxCommandEvent& event );
1997 void OnLabelEditorKeyPress( wxKeyEvent& event );
1998
1999 wxPGProperty* DoGetItemAtY( int y ) const;
2000
2001 void DoSetSplitterPosition_( int newxpos,
2002 bool refresh = true,
2003 int splitterIndex = 0,
2004 bool allPages = false );
2005
2006 void DestroyEditorWnd( wxWindow* wnd );
2007 void FreeEditors();
2008
2009 virtual bool DoExpand( wxPGProperty* p, bool sendEvent = false );
2010
2011 virtual bool DoCollapse( wxPGProperty* p, bool sendEvent = false );
2012
2013 // Returns nearest paint visible property (such that will be painted unless
2014 // window is scrolled or resized). If given property is paint visible, then
2015 // it itself will be returned.
2016 wxPGProperty* GetNearestPaintVisible( wxPGProperty* p ) const;
2017
2018 static void RegisterDefaultEditors();
2019
2020 // Sets up basic event handling for child control
2021 void SetupChildEventHandling( wxWindow* wnd );
2022
2023 void CustomSetCursor( int type, bool override = false );
2024
2025 /**
2026 Repositions scrollbar and underlying panel according to changed virtual
2027 size.
2028 */
2029 void RecalculateVirtualSize( int forceXPos = -1 );
2030
2031 void PrepareAfterItemsAdded();
2032
2033 // Omit the wxPG_SEL_NOVALIDATE flag to allow vetoing the event
2034 bool SendEvent( int eventType, wxPGProperty* p,
2035 wxVariant* pValue = NULL,
2036 unsigned int selFlags = wxPG_SEL_NOVALIDATE,
2037 unsigned int column = 1 );
2038
2039 void SetFocusOnCanvas();
2040
2041 bool DoHideProperty( wxPGProperty* p, bool hide, int flags );
2042
2043 private:
2044
2045 bool ButtonTriggerKeyTest( int action, wxKeyEvent& event );
2046
2047 DECLARE_EVENT_TABLE()
2048 #endif // #ifndef SWIG
2049 };
2050
2051 // -----------------------------------------------------------------------
2052 //
2053 // Bunch of inlines that need to resolved after all classes have been defined.
2054 //
2055
2056 #ifndef SWIG
2057 inline bool wxPropertyGridPageState::IsDisplayed() const
2058 {
2059 return ( this == m_pPropGrid->GetState() );
2060 }
2061
2062 inline unsigned int wxPropertyGridPageState::GetActualVirtualHeight() const
2063 {
2064 return DoGetRoot()->GetChildrenHeight(GetGrid()->GetRowHeight());
2065 }
2066 #endif
2067
2068 inline int wxPGProperty::GetDisplayedCommonValueCount() const
2069 {
2070 if ( HasFlag(wxPG_PROP_USES_COMMON_VALUE) )
2071 {
2072 wxPropertyGrid* pg = GetGrid();
2073 if ( pg )
2074 return (int) pg->GetCommonValueCount();
2075 }
2076 return 0;
2077 }
2078
2079 inline void wxPGProperty::SetDefaultValue( wxVariant& value )
2080 {
2081 SetAttribute(wxPG_ATTR_DEFAULT_VALUE, value);
2082 }
2083
2084 inline void wxPGProperty::SetEditor( const wxString& editorName )
2085 {
2086 m_customEditor = wxPropertyGridInterface::GetEditorByName(editorName);
2087 }
2088
2089 inline bool wxPGProperty::Hide( bool hide, int flags )
2090 {
2091 return GetGrid()->HideProperty(this, hide, flags);
2092 }
2093
2094 inline bool wxPGProperty::SetMaxLength( int maxLen )
2095 {
2096 return GetGrid()->SetPropertyMaxLength(this,maxLen);
2097 }
2098
2099 // -----------------------------------------------------------------------
2100
2101 #define wxPG_BASE_EVT_PRE_ID 1775
2102
2103 #ifndef SWIG
2104
2105 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_SELECTED, wxPropertyGridEvent );
2106 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_CHANGING, wxPropertyGridEvent );
2107 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_CHANGED, wxPropertyGridEvent );
2108 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_HIGHLIGHTED, wxPropertyGridEvent );
2109 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_RIGHT_CLICK, wxPropertyGridEvent );
2110 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_PAGE_CHANGED, wxPropertyGridEvent );
2111 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_ITEM_COLLAPSED, wxPropertyGridEvent );
2112 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_ITEM_EXPANDED, wxPropertyGridEvent );
2113 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_DOUBLE_CLICK, wxPropertyGridEvent );
2114 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID,
2115 wxEVT_PG_LABEL_EDIT_BEGIN, wxPropertyGridEvent );
2116 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID,
2117 wxEVT_PG_LABEL_EDIT_ENDING, wxPropertyGridEvent );
2118
2119 #else
2120 enum {
2121 wxEVT_PG_SELECTED = wxPG_BASE_EVT_PRE_ID,
2122 wxEVT_PG_CHANGING,
2123 wxEVT_PG_CHANGED,
2124 wxEVT_PG_HIGHLIGHTED,
2125 wxEVT_PG_RIGHT_CLICK,
2126 wxEVT_PG_PAGE_CHANGED,
2127 wxEVT_PG_ITEM_COLLAPSED,
2128 wxEVT_PG_ITEM_EXPANDED,
2129 wxEVT_PG_DOUBLE_CLICK,
2130 wxEVT_PG_LABEL_EDIT_BEGIN,
2131 wxEVT_PG_LABEL_EDIT_ENDING
2132 };
2133 #endif
2134
2135
2136 #define wxPG_BASE_EVT_TYPE wxEVT_PG_SELECTED
2137 #define wxPG_MAX_EVT_TYPE (wxPG_BASE_EVT_TYPE+30)
2138
2139
2140 #ifndef SWIG
2141 typedef void (wxEvtHandler::*wxPropertyGridEventFunction)(wxPropertyGridEvent&);
2142
2143 #define EVT_PG_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_SELECTED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2144 #define EVT_PG_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGING, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2145 #define EVT_PG_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2146 #define EVT_PG_HIGHLIGHTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_HIGHLIGHTED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2147 #define EVT_PG_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_RIGHT_CLICK, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2148 #define EVT_PG_DOUBLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_DOUBLE_CLICK, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2149 #define EVT_PG_PAGE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_PAGE_CHANGED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2150 #define EVT_PG_ITEM_COLLAPSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_COLLAPSED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2151 #define EVT_PG_ITEM_EXPANDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_EXPANDED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2152 #define EVT_PG_LABEL_EDIT_BEGIN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_LABEL_EDIT_BEGIN, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2153 #define EVT_PG_LABEL_EDIT_ENDING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_LABEL_EDIT_ENDING, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2154
2155 #define wxPropertyGridEventHandler(fn) \
2156 wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn )
2157
2158 #endif
2159
2160
2161 /** @class wxPropertyGridEvent
2162
2163 A propertygrid event holds information about events associated with
2164 wxPropertyGrid objects.
2165
2166 @library{wxpropgrid}
2167 @category{propgrid}
2168 */
2169 class WXDLLIMPEXP_PROPGRID wxPropertyGridEvent : public wxCommandEvent
2170 {
2171 public:
2172
2173 /** Constructor. */
2174 wxPropertyGridEvent(wxEventType commandType=0, int id=0);
2175 #ifndef SWIG
2176 /** Copy constructor. */
2177 wxPropertyGridEvent(const wxPropertyGridEvent& event);
2178 #endif
2179 /** Destructor. */
2180 ~wxPropertyGridEvent();
2181
2182 /** Copyer. */
2183 virtual wxEvent* Clone() const;
2184
2185 /**
2186 Returns the column index associated with this event.
2187 */
2188 unsigned int GetColumn() const
2189 {
2190 return m_column;
2191 }
2192
2193 wxPGProperty* GetMainParent() const
2194 {
2195 wxASSERT(m_property);
2196 return m_property->GetMainParent();
2197 }
2198
2199 /** Returns id of associated property. */
2200 wxPGProperty* GetProperty() const
2201 {
2202 return m_property;
2203 }
2204
2205 wxPGValidationInfo& GetValidationInfo()
2206 {
2207 wxASSERT(m_validationInfo);
2208 return *m_validationInfo;
2209 }
2210
2211 /** Returns true if you can veto the action that the event is signaling.
2212 */
2213 bool CanVeto() const { return m_canVeto; }
2214
2215 /**
2216 Call this from your event handler to veto action that the event is
2217 signaling.
2218
2219 You can only veto a shutdown if wxPropertyGridEvent::CanVeto returns
2220 true.
2221 @remarks
2222 Currently only wxEVT_PG_CHANGING supports vetoing.
2223 */
2224 void Veto( bool veto = true ) { m_wasVetoed = veto; }
2225
2226 /**
2227 Returns name of the associated property.
2228
2229 @remarks Property name is stored in event, so it remains
2230 accessible even after the associated property or
2231 the property grid has been deleted.
2232 */
2233 wxString GetPropertyName() const
2234 {
2235 return m_propertyName;
2236 }
2237
2238 /**
2239 Returns value of the associated property. Works for all event
2240 types, but for wxEVT_PG_CHANGING this member function returns
2241 the value that is pending, so you can call Veto() if the
2242 value is not satisfactory.
2243
2244 @remarks Property value is stored in event, so it remains
2245 accessible even after the associated property or
2246 the property grid has been deleted.
2247 */
2248 wxVariant GetPropertyValue() const
2249 {
2250 if ( m_validationInfo )
2251 return m_validationInfo->GetValue();
2252 return m_value;
2253 }
2254
2255 /**
2256 Returns value of the associated property.
2257
2258 @see GetPropertyValue
2259 */
2260 wxVariant GetValue() const
2261 {
2262 return GetPropertyValue();
2263 }
2264
2265 /**
2266 Set override validation failure behavior.
2267
2268 Only effective if Veto was also called, and only allowed if event type
2269 is wxEVT_PG_CHANGING.
2270 */
2271 void SetValidationFailureBehavior( wxPGVFBFlags flags )
2272 {
2273 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2274 m_validationInfo->SetFailureBehavior( flags );
2275 }
2276
2277 /** Sets custom failure message for this time only. Only applies if
2278 wxPG_VFB_SHOW_MESSAGE is set in validation failure flags.
2279 */
2280 void SetValidationFailureMessage( const wxString& message )
2281 {
2282 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2283 m_validationInfo->SetFailureMessage( message );
2284 }
2285
2286 #ifndef SWIG
2287 wxPGVFBFlags GetValidationFailureBehavior() const
2288 {
2289 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2290 return m_validationInfo->GetFailureBehavior();
2291 }
2292
2293 void SetColumn( unsigned int column )
2294 {
2295 m_column = column;
2296 }
2297
2298 void SetCanVeto( bool canVeto ) { m_canVeto = canVeto; }
2299 bool WasVetoed() const { return m_wasVetoed; }
2300
2301 /** Changes the associated property. */
2302 void SetProperty( wxPGProperty* p )
2303 {
2304 m_property = p;
2305 if ( p )
2306 m_propertyName = p->GetName();
2307 }
2308
2309 void SetPropertyValue( wxVariant value )
2310 {
2311 m_value = value;
2312 }
2313
2314 void SetPropertyGrid( wxPropertyGrid* pg )
2315 {
2316 m_pg = pg;
2317 OnPropertyGridSet();
2318 }
2319
2320 void SetupValidationInfo()
2321 {
2322 wxASSERT(m_pg);
2323 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2324 m_validationInfo = &m_pg->GetValidationInfo();
2325 m_value = m_validationInfo->GetValue();
2326 }
2327
2328 private:
2329 void Init();
2330 void OnPropertyGridSet();
2331 DECLARE_DYNAMIC_CLASS(wxPropertyGridEvent)
2332
2333 wxPGProperty* m_property;
2334 wxPropertyGrid* m_pg;
2335 wxPGValidationInfo* m_validationInfo;
2336
2337 wxString m_propertyName;
2338 wxVariant m_value;
2339
2340 unsigned int m_column;
2341
2342 bool m_canVeto;
2343 bool m_wasVetoed;
2344
2345 #endif
2346 };
2347
2348
2349 // -----------------------------------------------------------------------
2350
2351 /** @class wxPropertyGridPopulator
2352 @ingroup classes
2353 Allows populating wxPropertyGrid from arbitrary text source.
2354 */
2355 class WXDLLIMPEXP_PROPGRID wxPropertyGridPopulator
2356 {
2357 public:
2358 /** Default constructor.
2359 */
2360 wxPropertyGridPopulator();
2361
2362 /** Destructor. */
2363 virtual ~wxPropertyGridPopulator();
2364
2365 void SetState( wxPropertyGridPageState* state );
2366
2367 void SetGrid( wxPropertyGrid* pg );
2368
2369 /** Appends a new property under bottommost parent.
2370 @param propClass
2371 Property class as string.
2372 */
2373 wxPGProperty* Add( const wxString& propClass,
2374 const wxString& propLabel,
2375 const wxString& propName,
2376 const wxString* propValue,
2377 wxPGChoices* pChoices = NULL );
2378
2379 /**
2380 Pushes property to the back of parent array (ie it becomes bottommost
2381 parent), and starts scanning/adding children for it.
2382
2383 When finished, parent array is returned to the original state.
2384 */
2385 void AddChildren( wxPGProperty* property );
2386
2387 /** Adds attribute to the bottommost property.
2388 @param type
2389 Allowed values: "string", (same as string), "int", "bool". Empty string
2390 mean autodetect.
2391 */
2392 bool AddAttribute( const wxString& name,
2393 const wxString& type,
2394 const wxString& value );
2395
2396 /** Called once in AddChildren.
2397 */
2398 virtual void DoScanForChildren() = 0;
2399
2400 /**
2401 Returns id of parent property for which children can currently be
2402 added.
2403 */
2404 wxPGProperty* GetCurParent() const
2405 {
2406 return (wxPGProperty*) m_propHierarchy[m_propHierarchy.size()-1];
2407 }
2408
2409 wxPropertyGridPageState* GetState() { return m_state; }
2410 const wxPropertyGridPageState* GetState() const { return m_state; }
2411
2412 /** Like wxString::ToLong, except allows N% in addition of N.
2413 */
2414 static bool ToLongPCT( const wxString& s, long* pval, long max );
2415
2416 /** Parses strings of format "choice1"[=value1] ... "choiceN"[=valueN] into
2417 wxPGChoices. Registers parsed result using idString (if not empty).
2418 Also, if choices with given id already registered, then don't parse but
2419 return those choices instead.
2420 */
2421 wxPGChoices ParseChoices( const wxString& choicesString,
2422 const wxString& idString );
2423
2424 /** Implement in derived class to do custom process when an error occurs.
2425 Default implementation uses wxLogError.
2426 */
2427 virtual void ProcessError( const wxString& msg );
2428
2429 protected:
2430
2431 /** Used property grid. */
2432 wxPropertyGrid* m_pg;
2433
2434 /** Used property grid state. */
2435 wxPropertyGridPageState* m_state;
2436
2437 /** Tree-hierarchy of added properties (that can have children). */
2438 wxArrayPGProperty m_propHierarchy;
2439
2440 /** Hashmap for string-id to wxPGChoicesData mapping. */
2441 wxPGHashMapS2P m_dictIdChoices;
2442 };
2443
2444 // -----------------------------------------------------------------------
2445
2446 //
2447 // Undefine macros that are not needed outside propertygrid sources
2448 //
2449 #ifndef __wxPG_SOURCE_FILE__
2450 #undef wxPG_FL_DESC_REFRESH_REQUIRED
2451 #undef wxPG_FL_SCROLLBAR_DETECTED
2452 #undef wxPG_FL_CREATEDSTATE
2453 #undef wxPG_FL_NOSTATUSBARHELP
2454 #undef wxPG_FL_SCROLLED
2455 #undef wxPG_FL_FOCUS_INSIDE_CHILD
2456 #undef wxPG_FL_FOCUS_INSIDE
2457 #undef wxPG_FL_MOUSE_INSIDE_CHILD
2458 #undef wxPG_FL_CUR_USES_CUSTOM_IMAGE
2459 #undef wxPG_FL_PRIMARY_FILLS_ENTIRE
2460 #undef wxPG_FL_VALUE_MODIFIED
2461 #undef wxPG_FL_MOUSE_INSIDE
2462 #undef wxPG_FL_FOCUSED
2463 #undef wxPG_FL_MOUSE_CAPTURED
2464 #undef wxPG_FL_INITIALIZED
2465 #undef wxPG_FL_ACTIVATION_BY_CLICK
2466 #undef wxPG_FL_DONT_CENTER_SPLITTER
2467 #undef wxPG_SUPPORT_TOOLTIPS
2468 #undef wxPG_DOUBLE_BUFFER
2469 #undef wxPG_ICON_WIDTH
2470 #undef wxPG_USE_RENDERER_NATIVE
2471 // Following are needed by the manager headers
2472 // #undef const wxString&
2473 #endif
2474
2475 // -----------------------------------------------------------------------
2476
2477 #endif
2478
2479 #endif // _WX_PROPGRID_PROPGRID_H_
2480