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