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