1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/propgrid/propgrid.cpp
3 // Purpose: wxPropertyGrid
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/object.h"
25 #include "wx/string.h"
28 #include "wx/window.h"
31 #include "wx/dcmemory.h"
32 #include "wx/button.h"
35 #include "wx/cursor.h"
36 #include "wx/dialog.h"
37 #include "wx/settings.h"
38 #include "wx/msgdlg.h"
39 #include "wx/choice.h"
40 #include "wx/stattext.h"
41 #include "wx/scrolwin.h"
42 #include "wx/dirdlg.h"
44 #include "wx/textdlg.h"
45 #include "wx/filedlg.h"
46 #include "wx/statusbr.h"
52 // This define is necessary to prevent macro clearing
53 #define __wxPG_SOURCE_FILE__
55 #include "wx/propgrid/propgrid.h"
56 #include "wx/propgrid/editors.h"
58 #if wxPG_USE_RENDERER_NATIVE
59 #include "wx/renderer.h"
62 #include "wx/odcombo.h"
65 #include "wx/dcbuffer.h"
67 // Two pics for the expand / collapse buttons.
68 // Files are not supplied with this project (since it is
69 // recommended to use either custom or native rendering).
70 // If you want them, get wxTreeMultiCtrl by Jorgen Bodde,
71 // and copy xpm files from archive to wxPropertyGrid src directory
72 // (and also comment/undef wxPG_ICON_WIDTH in propGrid.h
73 // and set wxPG_USE_RENDERER_NATIVE to 0).
74 #ifndef wxPG_ICON_WIDTH
75 #if defined(__WXMAC__)
76 #include "mac_collapse.xpm"
77 #include "mac_expand.xpm"
78 #elif defined(__WXGTK__)
79 #include "linux_collapse.xpm"
80 #include "linux_expand.xpm"
82 #include "default_collapse.xpm"
83 #include "default_expand.xpm"
88 //#define wxPG_TEXT_INDENT 4 // For the wxComboControl
89 //#define wxPG_ALLOW_CLIPPING 1 // If 1, GetUpdateRegion() in OnPaint event handler is not ignored
90 #define wxPG_GUTTER_DIV 3 // gutter is max(iconwidth/gutter_div,gutter_min)
91 #define wxPG_GUTTER_MIN 3 // gutter before and after image of [+] or [-]
92 #define wxPG_YSPACING_MIN 1
93 #define wxPG_DEFAULT_VSPACING 2 // This matches .NET propertygrid's value,
94 // but causes normal combobox to spill out under MSW
96 //#define wxPG_OPTIMAL_WIDTH 200 // Arbitrary
98 //#define wxPG_MIN_SCROLLBAR_WIDTH 10 // Smallest scrollbar width on any platform
99 // Must be larger than largest control border
103 #define wxPG_DEFAULT_CURSOR wxNullCursor
106 //#define wxPG_NAT_CHOICE_BORDER_ANY 0
108 //#define wxPG_HIDER_BUTTON_HEIGHT 25
110 #define wxPG_PIXELS_PER_UNIT m_lineHeight
112 #ifdef wxPG_ICON_WIDTH
113 #define m_iconHeight m_iconWidth
116 //#define wxPG_TOOLTIP_DELAY 1000
118 // This is the number of pixels the expander button inside
119 // property cells (i.e. not in the grey margin area are
121 #define IN_CELL_EXPANDER_BUTTON_X_ADJUST 2
123 // -----------------------------------------------------------------------
126 void wxPropertyGrid::AutoGetTranslation ( bool enable
)
128 wxPGGlobalVars
->m_autoGetTranslation
= enable
;
131 void wxPropertyGrid::AutoGetTranslation ( bool ) { }
134 // -----------------------------------------------------------------------
136 const char wxPropertyGridNameStr
[] = "wxPropertyGrid";
138 // -----------------------------------------------------------------------
139 // Statics in one class for easy destruction.
140 // -----------------------------------------------------------------------
142 #include "wx/module.h"
144 class wxPGGlobalVarsClassManager
: public wxModule
146 DECLARE_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
)
148 wxPGGlobalVarsClassManager() {}
149 virtual bool OnInit() { wxPGGlobalVars
= new wxPGGlobalVarsClass(); return true; }
150 virtual void OnExit() { delete wxPGGlobalVars
; wxPGGlobalVars
= NULL
; }
153 IMPLEMENT_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
, wxModule
)
156 // When wxPG is loaded dynamically after the application is already running
157 // then the built-in module system won't pick this one up. Add it manually.
158 void wxPGInitResourceModule()
160 wxModule
* module = new wxPGGlobalVarsClassManager
;
162 wxModule::RegisterModule(module);
165 wxPGGlobalVarsClass
* wxPGGlobalVars
= NULL
;
168 wxPGGlobalVarsClass::wxPGGlobalVarsClass()
170 wxPGProperty::sm_wxPG_LABEL
= new wxString(wxPG_LABEL_STRING
);
172 m_boolChoices
.Add(_("False"));
173 m_boolChoices
.Add(_("True"));
175 m_fontFamilyChoices
= NULL
;
177 m_defaultRenderer
= new wxPGDefaultRenderer();
179 m_autoGetTranslation
= false;
187 // Prepare some shared variants
188 m_vEmptyString
= wxString();
190 m_vMinusOne
= (long) -1;
194 // Prepare cached string constants
195 m_strstring
= wxS("string");
196 m_strlong
= wxS("long");
197 m_strbool
= wxS("bool");
198 m_strlist
= wxS("list");
199 m_strDefaultValue
= wxS("DefaultValue");
200 m_strMin
= wxS("Min");
201 m_strMax
= wxS("Max");
202 m_strUnits
= wxS("Units");
203 m_strHint
= wxS("Hint");
204 #if wxPG_COMPATIBILITY_1_4
205 m_strInlineHelp
= wxS("InlineHelp");
212 wxPGGlobalVarsClass::~wxPGGlobalVarsClass()
216 delete m_defaultRenderer
;
218 // This will always have one ref
219 delete m_fontFamilyChoices
;
222 for ( i
=0; i
<m_arrValidators
.size(); i
++ )
223 delete ((wxValidator
*)m_arrValidators
[i
]);
227 // Destroy value type class instances.
228 wxPGHashMapS2P::iterator vt_it
;
230 // Destroy editor class instances.
231 // iterate over all the elements in the class
232 for( vt_it
= m_mapEditorClasses
.begin(); vt_it
!= m_mapEditorClasses
.end(); ++vt_it
)
234 delete ((wxPGEditor
*)vt_it
->second
);
237 delete wxPGProperty::sm_wxPG_LABEL
;
240 void wxPropertyGridInitGlobalsIfNeeded()
244 // -----------------------------------------------------------------------
246 // -----------------------------------------------------------------------
248 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid
, wxScrolledWindow
)
250 BEGIN_EVENT_TABLE(wxPropertyGrid
, wxScrolledWindow
)
251 EVT_IDLE(wxPropertyGrid::OnIdle
)
252 EVT_PAINT(wxPropertyGrid::OnPaint
)
253 EVT_SIZE(wxPropertyGrid::OnResize
)
254 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry
)
255 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry
)
256 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange
)
257 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent
)
258 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent
)
259 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent
)
260 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent
)
261 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged
)
262 EVT_MOTION(wxPropertyGrid::OnMouseMove
)
263 EVT_LEFT_DOWN(wxPropertyGrid::OnMouseClick
)
264 EVT_LEFT_UP(wxPropertyGrid::OnMouseUp
)
265 EVT_RIGHT_UP(wxPropertyGrid::OnMouseRightClick
)
266 EVT_LEFT_DCLICK(wxPropertyGrid::OnMouseDoubleClick
)
267 EVT_KEY_DOWN(wxPropertyGrid::OnKey
)
270 // -----------------------------------------------------------------------
272 wxPropertyGrid::wxPropertyGrid()
278 // -----------------------------------------------------------------------
280 wxPropertyGrid::wxPropertyGrid( wxWindow
*parent
,
285 const wxString
& name
)
289 Create(parent
,id
,pos
,size
,style
,name
);
292 // -----------------------------------------------------------------------
294 bool wxPropertyGrid::Create( wxWindow
*parent
,
299 const wxString
& name
)
302 if (!(style
&wxBORDER_MASK
))
304 style
|= wxBORDER_THEME
;
309 // Filter out wxTAB_TRAVERSAL - we will handle TABs manually
310 style
&= ~(wxTAB_TRAVERSAL
);
311 style
|= wxWANTS_CHARS
;
313 wxScrolledWindow::Create(parent
,id
,pos
,size
,style
,name
);
320 // -----------------------------------------------------------------------
323 // Initialize values to defaults
325 void wxPropertyGrid::Init1()
327 // Register editor classes, if necessary.
328 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
329 wxPropertyGrid::RegisterDefaultEditors();
331 m_validatingEditor
= 0;
334 m_wndEditor
= m_wndEditor2
= NULL
;
338 m_labelEditor
= NULL
;
339 m_labelEditorProperty
= NULL
;
340 m_eventObject
= this;
342 m_processedEvent
= NULL
;
343 m_sortFunction
= NULL
;
344 m_inDoPropertyChanged
= 0;
345 m_inCommitChangesFromEditor
= 0;
346 m_inDoSelectProperty
= 0;
347 m_permanentValidationFailureBehavior
= wxPG_VFB_DEFAULT
;
352 // Set up default unspecified value 'colour'
353 m_unspecifiedAppearance
.SetFgCol(*wxLIGHT_GREY
);
356 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_RIGHT
);
357 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_DOWN
);
358 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_LEFT
);
359 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_UP
);
360 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY
, WXK_RIGHT
);
361 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY
, WXK_LEFT
);
362 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT
, WXK_ESCAPE
);
363 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_DOWN
, wxMOD_ALT
);
364 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_F4
);
366 m_coloursCustomized
= 0;
369 #if wxPG_DOUBLE_BUFFER
370 m_doubleBuffer
= NULL
;
373 #ifndef wxPG_ICON_WIDTH
379 m_iconWidth
= wxPG_ICON_WIDTH
;
384 m_gutterWidth
= wxPG_GUTTER_MIN
;
385 m_subgroup_extramargin
= 10;
389 m_width
= m_height
= 0;
391 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
394 m_chgInfo_changedProperty
= NULL
;
397 // -----------------------------------------------------------------------
400 // Initialize after parent etc. set
402 void wxPropertyGrid::Init2()
404 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
407 // Smaller controls on Mac
408 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
411 // Now create state, if one didn't exist already
412 // (wxPropertyGridManager might have created it for us).
415 m_pState
= CreateState();
416 m_pState
->m_pPropGrid
= this;
417 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
420 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
421 m_pState
->m_dontCenterSplitter
= true;
423 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
425 m_pState
->InitNonCatMode();
427 m_pState
->m_properties
= m_pState
->m_abcArray
;
430 GetClientSize(&m_width
,&m_height
);
432 #ifndef wxPG_ICON_WIDTH
433 // create two bitmap nodes for drawing
434 m_expandbmp
= new wxBitmap(expand_xpm
);
435 m_collbmp
= new wxBitmap(collapse_xpm
);
437 // calculate average font height for bitmap centering
439 m_iconWidth
= m_expandbmp
->GetWidth();
440 m_iconHeight
= m_expandbmp
->GetHeight();
443 m_curcursor
= wxCURSOR_ARROW
;
444 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
446 // adjust bitmap icon y position so they are centered
447 m_vspacing
= wxPG_DEFAULT_VSPACING
;
449 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
451 // Allocate cell datas
452 m_propertyDefaultCell
.SetEmptyData();
453 m_categoryDefaultCell
.SetEmptyData();
457 // This helps with flicker
458 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
460 // Hook the top-level parent
465 // set virtual size to this window size
466 wxSize wndsize
= GetSize();
467 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
469 m_timeCreated
= ::wxGetLocalTimeMillis();
471 //m_canvas->Create(this, wxID_ANY, wxPoint(0, 0), GetClientSize(),
472 // wxWANTS_CHARS | wxCLIP_CHILDREN);
473 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
475 m_iFlags
|= wxPG_FL_INITIALIZED
;
477 m_ncWidth
= wndsize
.GetWidth();
479 // Need to call OnResize handler or size given in constructor/Create
481 wxSizeEvent
sizeEvent(wndsize
,0);
485 // -----------------------------------------------------------------------
487 wxPropertyGrid::~wxPropertyGrid()
492 wxCriticalSectionLocker(wxPGGlobalVars
->m_critSect
);
496 // Remove grid and property pointers from live wxPropertyGridEvents.
497 for ( i
=0; i
<m_liveEvents
.size(); i
++ )
499 wxPropertyGridEvent
* evt
= m_liveEvents
[i
];
500 evt
->SetPropertyGrid(NULL
);
501 evt
->SetProperty(NULL
);
503 m_liveEvents
.clear();
505 if ( m_processedEvent
)
507 // All right... we are being deleted while wxPropertyGrid event
508 // is being sent. Make sure that event propagates as little
509 // as possible (although usually this is not enough to prevent
511 m_processedEvent
->Skip(false);
512 m_processedEvent
->StopPropagation();
514 // Let's use wxMessageBox to make the message appear more
515 // reliably (and *before* the crash can happen).
516 ::wxMessageBox("wxPropertyGrid was being destroyed in an event "
517 "generated by it. This usually leads to a crash "
518 "so it is recommended to destroy the control "
519 "at idle time instead.");
522 DoSelectProperty(NULL
, wxPG_SEL_NOVALIDATE
|wxPG_SEL_DONT_SEND_EVENT
);
524 // This should do prevent things from going too badly wrong
525 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
527 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
530 // Call with NULL to disconnect event handling
531 if ( GetExtraStyle() & wxPG_EX_ENABLE_TLP_TRACKING
)
535 wxASSERT_MSG( !IsEditorsValueModified(),
536 wxS("Most recent change in property editor was ")
537 wxS("lost!!! (if you don't want this to happen, ")
538 wxS("close your frames and dialogs using ")
539 wxS("Close(false).)") );
542 #if wxPG_DOUBLE_BUFFER
543 if ( m_doubleBuffer
)
544 delete m_doubleBuffer
;
547 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
550 delete m_cursorSizeWE
;
552 #ifndef wxPG_ICON_WIDTH
557 // Delete common value records
558 for ( i
=0; i
<m_commonValues
.size(); i
++ )
560 // Use temporary variable to work around possible strange VC6 (asserts because m_size is zero)
561 wxPGCommonValue
* value
= m_commonValues
[i
];
566 // -----------------------------------------------------------------------
568 bool wxPropertyGrid::Destroy()
570 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
573 return wxScrolledWindow::Destroy();
576 // -----------------------------------------------------------------------
578 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
580 return new wxPropertyGridPageState();
583 // -----------------------------------------------------------------------
584 // wxPropertyGrid overridden wxWindow methods
585 // -----------------------------------------------------------------------
587 void wxPropertyGrid::SetWindowStyleFlag( long style
)
589 long old_style
= m_windowStyle
;
591 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
593 wxASSERT( m_pState
);
595 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
598 EnableCategories( true );
600 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
602 // Disable categories
603 EnableCategories( false );
605 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
611 PrepareAfterItemsAdded();
613 m_pState
->m_itemsAdded
= 1;
615 #if wxPG_SUPPORT_TOOLTIPS
616 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
622 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
623 SetToolTip ( tooltip );
624 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
627 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
632 wxScrolledWindow::SetToolTip( NULL
);
637 wxScrolledWindow::SetWindowStyleFlag ( style
);
639 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
641 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
643 CalculateFontAndBitmapStuff( m_vspacing
);
649 // -----------------------------------------------------------------------
651 void wxPropertyGrid::Freeze()
655 wxScrolledWindow::Freeze();
660 // -----------------------------------------------------------------------
662 void wxPropertyGrid::Thaw()
668 wxScrolledWindow::Thaw();
669 RecalculateVirtualSize();
670 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
674 // Force property re-selection
675 // NB: We must copy the selection.
676 wxArrayPGProperty selection
= m_pState
->m_selection
;
677 DoSetSelection(selection
, wxPG_SEL_FORCE
| wxPG_SEL_NONVISIBLE
);
681 // -----------------------------------------------------------------------
683 bool wxPropertyGrid::DoAddToSelection( wxPGProperty
* prop
, int selFlags
)
685 wxCHECK( prop
, false );
687 if ( !(GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION
) )
688 return DoSelectProperty(prop
, selFlags
);
690 wxArrayPGProperty
& selection
= m_pState
->m_selection
;
692 if ( !selection
.size() )
694 return DoSelectProperty(prop
, selFlags
);
698 // For categories, only one can be selected at a time
699 if ( prop
->IsCategory() || selection
[0]->IsCategory() )
702 selection
.push_back(prop
);
704 if ( !(selFlags
& wxPG_SEL_DONT_SEND_EVENT
) )
706 SendEvent( wxEVT_PG_SELECTED
, prop
, NULL
);
715 // -----------------------------------------------------------------------
717 bool wxPropertyGrid::DoRemoveFromSelection( wxPGProperty
* prop
, int selFlags
)
719 wxCHECK( prop
, false );
722 wxArrayPGProperty
& selection
= m_pState
->m_selection
;
723 if ( selection
.size() <= 1 )
725 res
= DoSelectProperty(NULL
, selFlags
);
729 m_pState
->DoRemoveFromSelection(prop
);
737 // -----------------------------------------------------------------------
739 bool wxPropertyGrid::DoSelectAndEdit( wxPGProperty
* prop
,
740 unsigned int colIndex
,
741 unsigned int selFlags
)
744 // NB: Enable following if label editor background colour is
745 // ever changed to any other than m_colSelBack.
747 // We use this workaround to prevent visible flicker when editing
748 // a cell. Atleast on wxMSW, there is a difficult to find
749 // (and perhaps prevent) redraw somewhere between making property
750 // selected and enabling label editing.
752 //wxColour prevColSelBack = m_colSelBack;
753 //m_colSelBack = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
759 res
= DoSelectProperty(prop
, selFlags
);
764 DoClearSelection(false, wxPG_SEL_NO_REFRESH
);
766 if ( m_pState
->m_editableColumns
.Index(colIndex
) == wxNOT_FOUND
)
768 res
= DoAddToSelection(prop
, selFlags
);
772 res
= DoAddToSelection(prop
, selFlags
|wxPG_SEL_NO_REFRESH
);
774 DoBeginLabelEdit(colIndex
, selFlags
);
778 //m_colSelBack = prevColSelBack;
782 // -----------------------------------------------------------------------
784 bool wxPropertyGrid::AddToSelectionFromInputEvent( wxPGProperty
* prop
,
785 unsigned int colIndex
,
786 wxMouseEvent
* mouseEvent
,
789 const wxArrayPGProperty
& selection
= GetSelectedProperties();
790 bool alreadySelected
= m_pState
->DoIsPropertySelected(prop
);
793 // Set to 2 if also add all items in between
794 int addToExistingSelection
= 0;
796 if ( GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION
)
800 if ( mouseEvent
->GetEventType() == wxEVT_RIGHT_DOWN
||
801 mouseEvent
->GetEventType() == wxEVT_RIGHT_UP
)
803 // Allow right-click for context menu without
804 // disturbing the selection.
805 if ( GetSelectedProperties().size() <= 1 ||
807 return DoSelectAndEdit(prop
, colIndex
, selFlags
);
812 if ( mouseEvent
->ControlDown() )
814 addToExistingSelection
= 1;
816 else if ( mouseEvent
->ShiftDown() )
818 if ( selection
.size() > 0 && !prop
->IsCategory() )
819 addToExistingSelection
= 2;
821 addToExistingSelection
= 1;
827 if ( addToExistingSelection
== 1 )
830 if ( !alreadySelected
)
832 res
= DoAddToSelection(prop
, selFlags
);
834 else if ( GetSelectedProperties().size() > 1 )
836 res
= DoRemoveFromSelection(prop
, selFlags
);
839 else if ( addToExistingSelection
== 2 )
841 // Add this, and all in between
843 // Find top selected property
844 wxPGProperty
* topSelProp
= selection
[0];
845 int topSelPropY
= topSelProp
->GetY();
846 for ( unsigned int i
=1; i
<selection
.size(); i
++ )
848 wxPGProperty
* p
= selection
[i
];
850 if ( y
< topSelPropY
)
857 wxPGProperty
* startFrom
;
858 wxPGProperty
* stopAt
;
860 if ( prop
->GetY() <= topSelPropY
)
862 // Property is above selection (or same)
868 // Property is below selection
869 startFrom
= topSelProp
;
873 // Iterate through properties in-between, and select them
874 wxPropertyGridIterator it
;
876 for ( it
= GetIterator(wxPG_ITERATE_VISIBLE
, startFrom
);
880 wxPGProperty
* p
= *it
;
882 if ( !p
->IsCategory() &&
883 !m_pState
->DoIsPropertySelected(p
) )
885 DoAddToSelection(p
, selFlags
);
894 res
= DoSelectAndEdit(prop
, colIndex
, selFlags
);
900 // -----------------------------------------------------------------------
902 void wxPropertyGrid::DoSetSelection( const wxArrayPGProperty
& newSelection
,
905 if ( newSelection
.size() > 0 )
907 if ( !DoSelectProperty(newSelection
[0], selFlags
) )
912 DoClearSelection(false, selFlags
);
915 for ( unsigned int i
= 1; i
< newSelection
.size(); i
++ )
917 DoAddToSelection(newSelection
[i
], selFlags
);
923 // -----------------------------------------------------------------------
925 void wxPropertyGrid::MakeColumnEditable( unsigned int column
,
928 wxASSERT( column
!= 1 );
930 wxArrayInt
& cols
= m_pState
->m_editableColumns
;
934 cols
.push_back(column
);
938 for ( int i
= cols
.size() - 1; i
> 0; i
-- )
940 if ( cols
[i
] == (int)column
)
941 cols
.erase( cols
.begin() + i
);
946 // -----------------------------------------------------------------------
948 void wxPropertyGrid::DoBeginLabelEdit( unsigned int colIndex
,
951 wxPGProperty
* selected
= GetSelection();
952 wxCHECK_RET(selected
, wxT("No property selected"));
953 wxCHECK_RET(colIndex
!= 1, wxT("Do not use this for column 1"));
955 if ( !(selFlags
& wxPG_SEL_DONT_SEND_EVENT
) )
957 if ( SendEvent( wxEVT_PG_LABEL_EDIT_BEGIN
,
964 const wxPGCell
* cell
= NULL
;
965 if ( selected
->HasCell(colIndex
) )
967 cell
= &selected
->GetCell(colIndex
);
968 if ( !cell
->HasText() && colIndex
== 0 )
969 text
= selected
->GetLabel();
975 text
= selected
->GetLabel();
977 cell
= &selected
->GetOrCreateCell(colIndex
);
980 if ( cell
&& cell
->HasText() )
981 text
= cell
->GetText();
983 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE
); // send event
985 m_selColumn
= colIndex
;
987 wxRect r
= GetEditorWidgetRect(selected
, m_selColumn
);
989 wxWindow
* tc
= GenerateEditorTextCtrl(r
.GetPosition(),
997 wxWindowID id
= tc
->GetId();
998 tc
->Connect(id
, wxEVT_COMMAND_TEXT_ENTER
,
999 wxCommandEventHandler(wxPropertyGrid::OnLabelEditorEnterPress
),
1001 tc
->Connect(id
, wxEVT_KEY_DOWN
,
1002 wxKeyEventHandler(wxPropertyGrid::OnLabelEditorKeyPress
),
1007 m_labelEditor
= wxStaticCast(tc
, wxTextCtrl
);
1008 m_labelEditorProperty
= selected
;
1011 // -----------------------------------------------------------------------
1014 wxPropertyGrid::OnLabelEditorEnterPress( wxCommandEvent
& WXUNUSED(event
) )
1016 DoEndLabelEdit(true);
1019 // -----------------------------------------------------------------------
1021 void wxPropertyGrid::OnLabelEditorKeyPress( wxKeyEvent
& event
)
1023 int keycode
= event
.GetKeyCode();
1025 // If key code was registered as action trigger, then trigger that action
1026 if ( keycode
== WXK_ESCAPE
)
1028 DoEndLabelEdit(false);
1036 // -----------------------------------------------------------------------
1038 void wxPropertyGrid::DoEndLabelEdit( bool commit
, int selFlags
)
1040 if ( !m_labelEditor
)
1043 wxPGProperty
* prop
= m_labelEditorProperty
;
1048 if ( !(selFlags
& wxPG_SEL_DONT_SEND_EVENT
) )
1050 // wxPG_SEL_NOVALIDATE is passed correctly in selFlags
1051 if ( SendEvent( wxEVT_PG_LABEL_EDIT_ENDING
,
1052 prop
, NULL
, selFlags
,
1057 wxString text
= m_labelEditor
->GetValue();
1058 wxPGCell
* cell
= NULL
;
1059 if ( prop
->HasCell(m_selColumn
) )
1061 cell
= &prop
->GetCell(m_selColumn
);
1065 if ( m_selColumn
== 0 )
1066 prop
->SetLabel(text
);
1068 cell
= &prop
->GetOrCreateCell(m_selColumn
);
1072 cell
->SetText(text
);
1076 int wasFocused
= m_iFlags
& wxPG_FL_FOCUSED
;
1078 DestroyEditorWnd(m_labelEditor
);
1080 m_labelEditor
= NULL
;
1081 m_labelEditorProperty
= NULL
;
1083 // Fix focus (needed at least on wxGTK)
1090 // -----------------------------------------------------------------------
1092 void wxPropertyGrid::SetExtraStyle( long exStyle
)
1094 if ( exStyle
& wxPG_EX_ENABLE_TLP_TRACKING
)
1095 OnTLPChanging(::wxGetTopLevelParent(this));
1097 OnTLPChanging(NULL
);
1099 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
1101 #if defined(__WXMSW__)
1104 // Don't use WS_EX_COMPOSITED just now.
1107 if ( m_iFlags & wxPG_FL_IN_MANAGER )
1108 hWnd = (HWND)GetParent()->GetHWND();
1110 hWnd = (HWND)GetHWND();
1112 ::SetWindowLong( hWnd, GWL_EXSTYLE,
1113 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
1116 //#elif defined(__WXGTK20__)
1118 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
1119 // truly was double-buffered.
1120 if ( !this->IsDoubleBuffered() )
1122 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
1126 #if wxPG_DOUBLE_BUFFER
1127 delete m_doubleBuffer
;
1128 m_doubleBuffer
= NULL
;
1133 wxScrolledWindow::SetExtraStyle( exStyle
);
1135 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
1136 m_pState
->InitNonCatMode();
1138 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
1139 m_windowStyle
|= wxPG_TOOLTIPS
;
1142 wxPGGlobalVars
->m_extraStyle
= exStyle
;
1145 // -----------------------------------------------------------------------
1147 // returns the best acceptable minimal size
1148 wxSize
wxPropertyGrid::DoGetBestSize() const
1150 int lineHeight
= wxMax(15, m_lineHeight
);
1152 // don't make the grid too tall (limit height to 10 items) but don't
1153 // make it too small neither
1154 int numLines
= wxMin
1156 wxMax(m_pState
->m_properties
->GetChildCount(), 3),
1160 wxClientDC
dc(const_cast<wxPropertyGrid
*>(this));
1161 int width
= m_marginWidth
;
1162 for ( unsigned int i
= 0; i
< m_pState
->m_colWidths
.size(); i
++ )
1164 width
+= m_pState
->GetColumnFitWidth(dc
, m_pState
->DoGetRoot(), i
, true);
1167 const wxSize sz
= wxSize(width
, lineHeight
*numLines
+ 40);
1173 // -----------------------------------------------------------------------
1175 void wxPropertyGrid::OnTLPChanging( wxWindow
* newTLP
)
1177 if ( newTLP
== m_tlp
)
1180 wxLongLong currentTime
= ::wxGetLocalTimeMillis();
1183 // Parent changed so let's redetermine and re-hook the
1184 // correct top-level window.
1187 m_tlp
->Disconnect( wxEVT_CLOSE_WINDOW
,
1188 wxCloseEventHandler(wxPropertyGrid::OnTLPClose
),
1190 m_tlpClosed
= m_tlp
;
1191 m_tlpClosedTime
= currentTime
;
1196 // Only accept new tlp if same one was not just dismissed.
1197 if ( newTLP
!= m_tlpClosed
||
1198 m_tlpClosedTime
+250 < currentTime
)
1200 newTLP
->Connect( wxEVT_CLOSE_WINDOW
,
1201 wxCloseEventHandler(wxPropertyGrid::OnTLPClose
),
1214 // -----------------------------------------------------------------------
1216 void wxPropertyGrid::OnTLPClose( wxCloseEvent
& event
)
1218 // ClearSelection forces value validation/commit.
1219 if ( event
.CanVeto() && !DoClearSelection() )
1225 // Ok, it can close, set tlp pointer to NULL. Some other event
1226 // handler can of course veto the close, but our OnIdle() should
1227 // then be able to regain the tlp pointer.
1228 OnTLPChanging(NULL
);
1233 // -----------------------------------------------------------------------
1235 bool wxPropertyGrid::Reparent( wxWindowBase
*newParent
)
1237 OnTLPChanging((wxWindow
*)newParent
);
1239 bool res
= wxScrolledWindow::Reparent(newParent
);
1244 // -----------------------------------------------------------------------
1245 // wxPropertyGrid Font and Colour Methods
1246 // -----------------------------------------------------------------------
1248 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
1252 m_captionFont
= wxScrolledWindow::GetFont();
1254 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1255 m_subgroup_extramargin
= x
+ (x
/2);
1258 #if wxPG_USE_RENDERER_NATIVE
1259 m_iconWidth
= wxPG_ICON_WIDTH
;
1260 #elif wxPG_ICON_WIDTH
1262 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
1263 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
1264 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
1268 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
1269 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
1270 m_gutterWidth
= wxPG_GUTTER_MIN
;
1273 if ( vspacing
<= 1 ) vdiv
= 12;
1274 else if ( vspacing
>= 3 ) vdiv
= 3;
1276 m_spacingy
= m_fontHeight
/ vdiv
;
1277 if ( m_spacingy
< wxPG_YSPACING_MIN
)
1278 m_spacingy
= wxPG_YSPACING_MIN
;
1281 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
1282 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1284 m_captionFont
.SetWeight(wxBOLD
);
1285 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1287 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1290 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1291 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1294 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1296 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1297 RecalculateVirtualSize();
1299 InvalidateBestSize();
1302 // -----------------------------------------------------------------------
1304 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1310 // -----------------------------------------------------------------------
1312 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1313 int ga
= 1000, int ba
= 1000,
1314 bool forceDifferent
= false)
1321 // Recursion guard (allow 2 max)
1322 static int isinside
= 0;
1324 wxCHECK_MSG( isinside
< 3,
1326 wxT("wxPGAdjustColour should not be recursively called more than once") );
1331 int g
= src
.Green();
1334 if ( r2
>255 ) r2
= 255;
1335 else if ( r2
<0) r2
= 0;
1337 if ( g2
>255 ) g2
= 255;
1338 else if ( g2
<0) g2
= 0;
1340 if ( b2
>255 ) b2
= 255;
1341 else if ( b2
<0) b2
= 0;
1343 // Make sure they are somewhat different
1344 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1345 dst
= wxPGAdjustColour(src
,-(ra
*2));
1347 dst
= wxColour(r2
,g2
,b2
);
1349 // Recursion guard (allow 2 max)
1356 static int wxPGGetColAvg( const wxColour
& col
)
1358 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1362 void wxPropertyGrid::RegainColours()
1364 if ( !(m_coloursCustomized
& 0x0002) )
1366 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1368 // Make sure colour is dark enough
1370 int colDec
= wxPGGetColAvg(col
) - 230;
1372 int colDec
= wxPGGetColAvg(col
) - 200;
1375 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1378 m_categoryDefaultCell
.GetData()->SetBgCol(m_colCapBack
);
1381 if ( !(m_coloursCustomized
& 0x0001) )
1382 m_colMargin
= m_colCapBack
;
1384 if ( !(m_coloursCustomized
& 0x0004) )
1391 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1392 m_colCapFore
= capForeCol
;
1393 m_categoryDefaultCell
.GetData()->SetFgCol(capForeCol
);
1396 if ( !(m_coloursCustomized
& 0x0008) )
1398 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1399 m_colPropBack
= bgCol
;
1400 m_propertyDefaultCell
.GetData()->SetBgCol(bgCol
);
1401 if ( !m_unspecifiedAppearance
.GetBgCol().IsOk() )
1402 m_unspecifiedAppearance
.SetBgCol(bgCol
);
1405 if ( !(m_coloursCustomized
& 0x0010) )
1407 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1408 m_colPropFore
= fgCol
;
1409 m_propertyDefaultCell
.GetData()->SetFgCol(fgCol
);
1410 if ( !m_unspecifiedAppearance
.GetFgCol().IsOk() )
1411 m_unspecifiedAppearance
.SetFgCol(fgCol
);
1414 if ( !(m_coloursCustomized
& 0x0020) )
1415 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1417 if ( !(m_coloursCustomized
& 0x0040) )
1418 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1420 if ( !(m_coloursCustomized
& 0x0080) )
1421 m_colLine
= m_colCapBack
;
1423 if ( !(m_coloursCustomized
& 0x0100) )
1424 m_colDisPropFore
= m_colCapFore
;
1426 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1429 // -----------------------------------------------------------------------
1431 void wxPropertyGrid::ResetColours()
1433 m_coloursCustomized
= 0;
1440 // -----------------------------------------------------------------------
1442 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1444 // Must disable active editor.
1447 bool res
= wxScrolledWindow::SetFont( font
);
1448 if ( res
&& GetParent()) // may not have been Create()ed yet if SetFont called from SetWindowVariant
1450 CalculateFontAndBitmapStuff( m_vspacing
);
1457 // -----------------------------------------------------------------------
1459 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1462 m_coloursCustomized
|= 0x80;
1466 // -----------------------------------------------------------------------
1468 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1471 m_coloursCustomized
|= 0x01;
1475 // -----------------------------------------------------------------------
1477 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1479 m_colPropBack
= col
;
1480 m_coloursCustomized
|= 0x08;
1482 m_propertyDefaultCell
.GetData()->SetBgCol(col
);
1483 m_unspecifiedAppearance
.SetBgCol(col
);
1488 // -----------------------------------------------------------------------
1490 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1492 m_colPropFore
= col
;
1493 m_coloursCustomized
|= 0x10;
1495 m_propertyDefaultCell
.GetData()->SetFgCol(col
);
1496 m_unspecifiedAppearance
.SetFgCol(col
);
1501 // -----------------------------------------------------------------------
1503 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1505 m_colEmptySpace
= col
;
1510 // -----------------------------------------------------------------------
1512 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1514 m_colDisPropFore
= col
;
1515 m_coloursCustomized
|= 0x100;
1519 // -----------------------------------------------------------------------
1521 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1524 m_coloursCustomized
|= 0x20;
1528 // -----------------------------------------------------------------------
1530 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1533 m_coloursCustomized
|= 0x40;
1537 // -----------------------------------------------------------------------
1539 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1542 m_coloursCustomized
|= 0x02;
1544 m_categoryDefaultCell
.GetData()->SetBgCol(col
);
1549 // -----------------------------------------------------------------------
1551 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1554 m_coloursCustomized
|= 0x04;
1556 m_categoryDefaultCell
.GetData()->SetFgCol(col
);
1561 // -----------------------------------------------------------------------
1562 // wxPropertyGrid property adding and removal
1563 // -----------------------------------------------------------------------
1565 void wxPropertyGrid::PrepareAfterItemsAdded()
1567 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1569 m_pState
->m_itemsAdded
= 0;
1571 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1572 Sort(wxPG_SORT_TOP_LEVEL_ONLY
);
1574 RecalculateVirtualSize();
1576 // Fix editor position
1577 CorrectEditorWidgetPosY();
1580 // -----------------------------------------------------------------------
1581 // wxPropertyGrid property operations
1582 // -----------------------------------------------------------------------
1584 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1586 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1590 bool changed
= false;
1592 // Is it inside collapsed section?
1593 if ( !p
->IsVisible() )
1596 wxPGProperty
* parent
= p
->GetParent();
1597 wxPGProperty
* grandparent
= parent
->GetParent();
1599 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1600 Expand( grandparent
);
1608 GetViewStart(&vx
,&vy
);
1609 vy
*=wxPG_PIXELS_PER_UNIT
;
1615 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1616 m_iFlags
|= wxPG_FL_SCROLLED
;
1619 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1621 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1622 m_iFlags
|= wxPG_FL_SCROLLED
;
1632 // -----------------------------------------------------------------------
1633 // wxPropertyGrid helper methods called by properties
1634 // -----------------------------------------------------------------------
1636 // Control font changer helper.
1637 void wxPropertyGrid::SetCurControlBoldFont()
1639 wxASSERT( m_wndEditor
);
1640 m_wndEditor
->SetFont( m_captionFont
);
1643 // -----------------------------------------------------------------------
1645 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1648 #if wxPG_SMALL_SCREEN
1649 // On small-screen devices, always show dialogs with default position and size.
1650 return wxDefaultPosition
;
1652 int splitterX
= GetSplitterPosition();
1656 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1658 ImprovedClientToScreen( &x
, &y
);
1660 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1661 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1668 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1678 new_y
= y
+ m_lineHeight
;
1680 return wxPoint(new_x
,new_y
);
1684 // -----------------------------------------------------------------------
1686 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1688 if ( src_str
.length() == 0 )
1694 bool prev_is_slash
= false;
1696 wxString::const_iterator i
= src_str
.begin();
1700 for ( ; i
!= src_str
.end(); ++i
)
1704 if ( a
!= wxS('\\') )
1706 if ( !prev_is_slash
)
1712 if ( a
== wxS('n') )
1715 dst_str
<< wxS('\n');
1717 dst_str
<< wxS('\n');
1720 else if ( a
== wxS('t') )
1721 dst_str
<< wxS('\t');
1725 prev_is_slash
= false;
1729 if ( prev_is_slash
)
1731 dst_str
<< wxS('\\');
1732 prev_is_slash
= false;
1736 prev_is_slash
= true;
1743 // -----------------------------------------------------------------------
1745 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1747 if ( src_str
.length() == 0 )
1753 wxString::const_iterator i
= src_str
.begin();
1754 wxUniChar prev_a
= wxS('\0');
1758 for ( ; i
!= src_str
.end(); ++i
)
1762 if ( a
>= wxS(' ') )
1764 // This surely is not something that requires an escape sequence.
1769 // This might need...
1770 if ( a
== wxS('\r') )
1772 // DOS style line end.
1773 // Already taken care below
1775 else if ( a
== wxS('\n') )
1776 // UNIX style line end.
1777 dst_str
<< wxS("\\n");
1778 else if ( a
== wxS('\t') )
1780 dst_str
<< wxS('\t');
1783 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1793 // -----------------------------------------------------------------------
1795 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1802 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1805 // -----------------------------------------------------------------------
1806 // wxPropertyGrid graphics related methods
1807 // -----------------------------------------------------------------------
1809 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1814 // Don't paint after destruction has begun
1815 if ( !HasInternalFlag(wxPG_FL_INITIALIZED
) )
1818 // Find out where the window is scrolled to
1819 int vx
,vy
; // Top left corner of client
1820 GetViewStart(&vx
,&vy
);
1821 vy
*= wxPG_PIXELS_PER_UNIT
;
1823 // Update everything inside the box
1824 wxRect r
= GetUpdateRegion().GetBox();
1828 // FIXME: This is just a workaround for a bug that causes splitters not
1829 // to paint when other windows are being dragged over the grid.
1831 r
.width
= GetClientSize().x
;
1833 // Repaint this rectangle
1834 DrawItems( dc
, r
.y
, r
.y
+ r
.height
, &r
);
1836 // We assume that the size set when grid is shown
1837 // is what is desired.
1838 SetInternalFlag(wxPG_FL_GOOD_SIZE_SET
);
1841 // -----------------------------------------------------------------------
1843 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1844 wxPGProperty
* property
) const
1846 // Prepare rectangle to be used
1848 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1849 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1851 #if (wxPG_USE_RENDERER_NATIVE)
1853 #elif wxPG_ICON_WIDTH
1854 // Drawing expand/collapse button manually
1855 dc
.SetPen(m_colPropFore
);
1856 if ( property
->IsCategory() )
1857 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1859 dc
.SetBrush(m_colPropBack
);
1861 dc
.DrawRectangle( r
);
1862 int _y
= r
.y
+(m_iconWidth
/2);
1863 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1868 if ( property
->IsExpanded() )
1870 // wxRenderer functions are non-mutating in nature, so it
1871 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1872 // Hopefully this does not cause problems.
1873 #if (wxPG_USE_RENDERER_NATIVE)
1874 wxRendererNative::Get().DrawTreeItemButton(
1880 #elif wxPG_ICON_WIDTH
1889 #if (wxPG_USE_RENDERER_NATIVE)
1890 wxRendererNative::Get().DrawTreeItemButton(
1896 #elif wxPG_ICON_WIDTH
1897 int _x
= r
.x
+(m_iconWidth
/2);
1898 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1904 #if (wxPG_USE_RENDERER_NATIVE)
1906 #elif wxPG_ICON_WIDTH
1909 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1913 // -----------------------------------------------------------------------
1916 // This is the one called by OnPaint event handler and others.
1917 // topy and bottomy are already unscrolled (ie. physical)
1919 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1920 unsigned int topItemY
,
1921 unsigned int bottomItemY
,
1922 const wxRect
* drawRect
)
1926 bottomItemY
< topItemY
||
1930 m_pState
->EnsureVirtualHeight();
1932 wxRect tempDrawRect
;
1935 tempDrawRect
= wxRect(0, topItemY
,
1938 drawRect
= &tempDrawRect
;
1941 // items added check
1942 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1944 int paintFinishY
= 0;
1946 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1949 bool isBuffered
= false;
1951 #if wxPG_DOUBLE_BUFFER
1952 wxMemoryDC
* bufferDC
= NULL
;
1954 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1956 if ( !m_doubleBuffer
)
1958 paintFinishY
= drawRect
->y
;
1963 bufferDC
= new wxMemoryDC();
1965 // If nothing was changed, then just copy from double-buffer
1966 bufferDC
->SelectObject( *m_doubleBuffer
);
1976 dc
.SetClippingRegion( *drawRect
);
1977 paintFinishY
= DoDrawItems( *dcPtr
, drawRect
, isBuffered
);
1978 int drawBottomY
= drawRect
->y
+ drawRect
->height
;
1980 // Clear area beyond last painted property
1981 if ( paintFinishY
< drawBottomY
)
1983 dcPtr
->SetPen(m_colEmptySpace
);
1984 dcPtr
->SetBrush(m_colEmptySpace
);
1985 dcPtr
->DrawRectangle(0, paintFinishY
,
1990 dc
.DestroyClippingRegion();
1993 #if wxPG_DOUBLE_BUFFER
1996 dc
.Blit( drawRect
->x
, drawRect
->y
, drawRect
->width
,
1998 bufferDC
, 0, 0, wxCOPY
);
2005 // Just clear the area
2006 dc
.SetPen(m_colEmptySpace
);
2007 dc
.SetBrush(m_colEmptySpace
);
2008 dc
.DrawRectangle(*drawRect
);
2012 // -----------------------------------------------------------------------
2014 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
2015 const wxRect
* drawRect
,
2016 bool isBuffered
) const
2018 const wxPGProperty
* firstItem
;
2019 const wxPGProperty
* lastItem
;
2021 firstItem
= DoGetItemAtY(drawRect
->y
);
2022 lastItem
= DoGetItemAtY(drawRect
->y
+drawRect
->height
-1);
2025 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
2027 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
2030 wxCHECK_MSG( !m_pState
->m_itemsAdded
, drawRect
->y
,
2032 wxASSERT( m_pState
->m_properties
->GetChildCount() );
2034 int lh
= m_lineHeight
;
2037 int lastItemBottomY
;
2039 firstItemTopY
= drawRect
->y
;
2040 lastItemBottomY
= drawRect
->y
+ drawRect
->height
;
2042 // Align y coordinates to item boundaries
2043 firstItemTopY
-= firstItemTopY
% lh
;
2044 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
2045 lastItemBottomY
-= 1;
2047 // Entire range outside scrolled, visible area?
2048 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() ||
2049 lastItemBottomY
<= 0 )
2052 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
,
2054 "invalid y values" );
2057 wxLogDebug(" -> DoDrawItems ( \"%s\" -> \"%s\"
2058 "height=%i (ch=%i), drawRect = 0x%lX )",
2059 firstItem->GetLabel().c_str(),
2060 lastItem->GetLabel().c_str(),
2061 (int)(lastItemBottomY - firstItemTopY),
2063 (unsigned long)drawRect );
2068 long windowStyle
= m_windowStyle
;
2073 // With wxPG_DOUBLE_BUFFER, do double buffering
2074 // - buffer's y = 0, so align drawRect and coordinates to that
2076 #if wxPG_DOUBLE_BUFFER
2083 xRelMod
= drawRect
->x
;
2084 yRelMod
= drawRect
->y
;
2087 // drawRect conversion
2092 firstItemTopY
-= yRelMod
;
2093 lastItemBottomY
-= yRelMod
;
2096 wxUnusedVar(isBuffered
);
2099 int x
= m_marginWidth
- xRelMod
;
2101 wxFont normalFont
= GetFont();
2103 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) != 0;
2105 bool isPgEnabled
= IsEnabled();
2108 // Prepare some pens and brushes that are often changed to.
2111 wxBrush
marginBrush(m_colMargin
);
2112 wxPen
marginPen(m_colMargin
);
2113 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
2114 wxPen
linepen(m_colLine
,1,wxSOLID
);
2116 wxColour selBackCol
;
2118 selBackCol
= m_colSelBack
;
2120 selBackCol
= m_colMargin
;
2122 // pen that has same colour as text
2123 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
2126 // Clear margin with background colour
2128 dc
.SetBrush( marginBrush
);
2129 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2131 dc
.SetPen( *wxTRANSPARENT_PEN
);
2132 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2135 const wxPGProperty
* firstSelected
= GetSelection();
2136 const wxPropertyGridPageState
* state
= m_pState
;
2137 const wxArrayInt
& colWidths
= state
->m_colWidths
;
2139 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2140 bool wasSelectedPainted
= false;
2143 // TODO: Only render columns that are within clipping region.
2145 dc
.SetFont(normalFont
);
2147 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2148 int endScanBottomY
= lastItemBottomY
+ lh
;
2149 int y
= firstItemTopY
;
2152 // Pregenerate list of visible properties.
2153 wxArrayPGProperty visPropArray
;
2154 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2156 for ( ; !it
.AtEnd(); it
.Next() )
2158 const wxPGProperty
* p
= *it
;
2160 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2162 visPropArray
.push_back((wxPGProperty
*)p
);
2164 if ( y
> endScanBottomY
)
2171 visPropArray
.push_back(NULL
);
2173 wxPGProperty
* nextP
= visPropArray
[0];
2175 int gridWidth
= state
->m_width
;
2178 for ( unsigned int arrInd
=1;
2179 nextP
&& y
<= lastItemBottomY
;
2182 wxPGProperty
* p
= nextP
;
2183 nextP
= visPropArray
[arrInd
];
2185 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2186 int textMarginHere
= x
;
2187 int renderFlags
= 0;
2189 int greyDepth
= m_marginWidth
;
2190 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2191 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2193 int greyDepthX
= greyDepth
- xRelMod
;
2195 // Use basic depth if in non-categoric mode and parent is base array.
2196 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2198 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2201 // Paint margin area
2202 dc
.SetBrush(marginBrush
);
2203 dc
.SetPen(marginPen
);
2204 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2206 dc
.SetPen( linepen
);
2212 // Modified by JACS to not draw a margin if wxPG_HIDE_MARGIN is specified, since it
2213 // looks better, at least under Windows when we have a themed border (the themed-window-specific
2214 // whitespace between the real border and the propgrid margin exacerbates the double-border look).
2216 // Is this or its parent themed?
2217 bool suppressMarginEdge
= (GetWindowStyle() & wxPG_HIDE_MARGIN
) &&
2218 (((GetWindowStyle() & wxBORDER_MASK
) == wxBORDER_THEME
) ||
2219 (((GetWindowStyle() & wxBORDER_MASK
) == wxBORDER_NONE
) && ((GetParent()->GetWindowStyle() & wxBORDER_MASK
) == wxBORDER_THEME
)));
2221 bool suppressMarginEdge
= false;
2223 if (!suppressMarginEdge
)
2224 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2227 // Blank out the margin edge
2228 dc
.SetPen(wxPen(GetBackgroundColour()));
2229 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2230 dc
.SetPen( linepen
);
2237 for ( si
=0; si
<colWidths
.size(); si
++ )
2239 sx
+= colWidths
[si
];
2240 dc
.DrawLine( sx
, y
, sx
, y2
);
2243 // Horizontal Line, below
2244 // (not if both this and next is category caption)
2245 if ( p
->IsCategory() &&
2246 nextP
&& nextP
->IsCategory() )
2247 dc
.SetPen(m_colCapBack
);
2249 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2252 // Need to override row colours?
2256 bool isSelected
= state
->DoIsPropertySelected(p
);
2260 // Disabled may get different colour.
2261 if ( !p
->IsEnabled() )
2263 renderFlags
|= wxPGCellRenderer::Disabled
|
2264 wxPGCellRenderer::DontUseCellFgCol
;
2265 rowFgCol
= m_colDisPropFore
;
2270 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2271 if ( p
== firstSelected
)
2272 wasSelectedPainted
= true;
2275 renderFlags
|= wxPGCellRenderer::Selected
;
2277 if ( !p
->IsCategory() )
2279 renderFlags
|= wxPGCellRenderer::DontUseCellFgCol
|
2280 wxPGCellRenderer::DontUseCellBgCol
;
2282 if ( reallyFocused
&& p
== firstSelected
)
2284 rowFgCol
= m_colSelFore
;
2285 rowBgCol
= selBackCol
;
2287 else if ( isPgEnabled
)
2289 rowFgCol
= m_colPropFore
;
2290 if ( p
== firstSelected
)
2291 rowBgCol
= m_colMargin
;
2293 rowBgCol
= selBackCol
;
2297 rowFgCol
= m_colDisPropFore
;
2298 rowBgCol
= selBackCol
;
2305 if ( rowBgCol
.IsOk() )
2306 rowBgBrush
= wxBrush(rowBgCol
);
2308 if ( HasInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
) )
2309 renderFlags
= renderFlags
& ~wxPGCellRenderer::DontUseCellColours
;
2312 // Fill additional margin area with background colour of first cell
2313 if ( greyDepthX
< textMarginHere
)
2315 if ( !(renderFlags
& wxPGCellRenderer::DontUseCellBgCol
) )
2317 wxPGCell
& cell
= p
->GetCell(0);
2318 rowBgCol
= cell
.GetBgCol();
2319 rowBgBrush
= wxBrush(rowBgCol
);
2321 dc
.SetBrush(rowBgBrush
);
2322 dc
.SetPen(rowBgCol
);
2323 dc
.DrawRectangle(greyDepthX
+1, y
,
2324 textMarginHere
-greyDepthX
, lh
-1);
2327 bool fontChanged
= false;
2329 // Expander button rectangle
2330 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2335 // Default cell rect fill the entire row
2336 wxRect
cellRect(greyDepthX
, y
,
2337 gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2339 bool isCategory
= p
->IsCategory();
2343 dc
.SetFont(m_captionFont
);
2346 if ( renderFlags
& wxPGCellRenderer::DontUseCellBgCol
)
2348 dc
.SetBrush(rowBgBrush
);
2349 dc
.SetPen(rowBgCol
);
2352 if ( renderFlags
& wxPGCellRenderer::DontUseCellFgCol
)
2354 dc
.SetTextForeground(rowFgCol
);
2359 // Fine tune button rectangle to actually fit the cell
2360 if ( butRect
.x
> 0 )
2361 butRect
.x
+= IN_CELL_EXPANDER_BUTTON_X_ADJUST
;
2363 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&&
2364 (windowStyle
& wxPG_BOLD_MODIFIED
) )
2366 dc
.SetFont(m_captionFont
);
2370 // Magic fine-tuning for non-category rows
2374 int firstCellWidth
= colWidths
[0] - (greyDepthX
- m_marginWidth
);
2375 int firstCellX
= cellRect
.x
;
2377 // Calculate cellRect.x for the last cell
2378 unsigned int ci
= 0;
2380 for ( ci
=0; ci
<colWidths
.size(); ci
++ )
2381 cellX
+= colWidths
[ci
];
2384 // Draw cells from back to front so that we can easily tell if the
2385 // cell on the right was empty from text
2386 bool prevFilled
= true;
2387 ci
= colWidths
.size();
2396 textXAdd
= textMarginHere
- greyDepthX
;
2397 cellRect
.width
= firstCellWidth
;
2398 cellRect
.x
= firstCellX
;
2402 int colWidth
= colWidths
[ci
];
2403 cellRect
.width
= colWidth
;
2404 cellRect
.x
-= colWidth
;
2407 // Merge with column to the right?
2408 if ( !prevFilled
&& isCategory
)
2410 cellRect
.width
+= colWidths
[ci
+1];
2414 cellRect
.width
-= 1;
2416 wxWindow
* cellEditor
= NULL
;
2417 int cellRenderFlags
= renderFlags
;
2419 // Tree Item Button (must be drawn before clipping is set up)
2420 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2421 DrawExpanderButton( dc
, butRect
, p
);
2424 if ( isSelected
&& (ci
== 1 || ci
== m_selColumn
) )
2426 if ( p
== firstSelected
)
2428 if ( ci
== 1 && m_wndEditor
)
2429 cellEditor
= m_wndEditor
;
2430 else if ( ci
== m_selColumn
&& m_labelEditor
)
2431 cellEditor
= m_labelEditor
;
2436 wxColour editorBgCol
=
2437 cellEditor
->GetBackgroundColour();
2438 dc
.SetBrush(editorBgCol
);
2439 dc
.SetPen(editorBgCol
);
2440 dc
.SetTextForeground(m_colPropFore
);
2441 dc
.DrawRectangle(cellRect
);
2443 if ( m_dragStatus
!= 0 ||
2444 (m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2449 dc
.SetBrush(m_colPropBack
);
2450 dc
.SetPen(m_colPropBack
);
2451 if ( p
->IsEnabled() )
2452 dc
.SetTextForeground(m_colPropFore
);
2454 dc
.SetTextForeground(m_colDisPropFore
);
2459 if ( renderFlags
& wxPGCellRenderer::DontUseCellBgCol
)
2461 dc
.SetBrush(rowBgBrush
);
2462 dc
.SetPen(rowBgCol
);
2465 if ( renderFlags
& wxPGCellRenderer::DontUseCellFgCol
)
2467 dc
.SetTextForeground(rowFgCol
);
2471 dc
.SetClippingRegion(cellRect
);
2473 cellRect
.x
+= textXAdd
;
2474 cellRect
.width
-= textXAdd
;
2479 wxPGCellRenderer
* renderer
;
2480 int cmnVal
= p
->GetCommonValue();
2481 if ( cmnVal
== -1 || ci
!= 1 )
2483 renderer
= p
->GetCellRenderer(ci
);
2484 prevFilled
= renderer
->Render(dc
, cellRect
, this,
2490 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2491 prevFilled
= renderer
->Render(dc
, cellRect
, this,
2501 dc
.DestroyClippingRegion(); // Is this really necessary?
2506 dc
.SetFont(normalFont
);
2511 // Refresh editor controls (seems not needed on msw)
2512 // NOTE: This code is mandatory for GTK!
2513 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2514 if ( wasSelectedPainted
)
2517 m_wndEditor
->Refresh();
2519 m_wndEditor2
->Refresh();
2526 // -----------------------------------------------------------------------
2528 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2532 if ( m_width
< 10 || m_height
< 10 ||
2533 !m_pState
->m_properties
->GetChildCount() ||
2535 return wxRect(0,0,0,0);
2540 // Return rect which encloses the given property range
2541 // (in logical grid coordinates)
2544 int visTop
= p1
->GetY();
2547 visBottom
= p2
->GetY() + m_lineHeight
;
2549 visBottom
= m_height
+ visTop
;
2551 // If seleced property is inside the range, we'll extend the range to include
2553 wxPGProperty
* selected
= GetSelection();
2556 int selectedY
= selected
->GetY();
2557 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2559 wxWindow
* editor
= GetEditorControl();
2562 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2563 if ( visBottom2
> visBottom
)
2564 visBottom
= visBottom2
;
2569 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2572 // -----------------------------------------------------------------------
2574 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2579 if ( m_pState
->m_itemsAdded
)
2580 PrepareAfterItemsAdded();
2582 wxRect r
= GetPropertyRect(p1
, p2
);
2585 // Convert rectangle from logical grid coordinates to physical ones
2587 GetViewStart(&vx
, &vy
);
2588 vx
*= wxPG_PIXELS_PER_UNIT
;
2589 vy
*= wxPG_PIXELS_PER_UNIT
;
2596 // -----------------------------------------------------------------------
2598 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2600 if ( m_pState
->DoIsPropertySelected(p
) )
2602 // NB: We must copy the selection.
2603 wxArrayPGProperty selection
= m_pState
->m_selection
;
2604 DoSetSelection(selection
, wxPG_SEL_FORCE
);
2607 DrawItemAndChildren(p
);
2610 // -----------------------------------------------------------------------
2612 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2617 // Draw item, children, and parent too, if it is not category
2618 wxPGProperty
* parent
= p
->GetParent();
2621 !parent
->IsCategory() &&
2622 parent
->GetParent() )
2625 parent
= parent
->GetParent();
2628 DrawItemAndChildren(p
);
2631 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2633 wxCHECK_RET( p
, wxT("invalid property id") );
2635 // Do not draw if in non-visible page
2636 if ( p
->GetParentState() != m_pState
)
2639 // do not draw a single item if multiple pending
2640 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2643 // Update child control.
2644 wxPGProperty
* selected
= GetSelection();
2645 if ( selected
&& selected
->GetParent() == p
)
2648 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2650 DrawItems(p
, lastDrawn
);
2653 // -----------------------------------------------------------------------
2655 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2656 const wxRect
*rect
)
2658 PrepareAfterItemsAdded();
2660 wxWindow::Refresh(false, rect
);
2662 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2663 // I think this really helps only GTK+1.2
2664 if ( m_wndEditor
) m_wndEditor
->Refresh();
2665 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2669 // -----------------------------------------------------------------------
2670 // wxPropertyGrid global operations
2671 // -----------------------------------------------------------------------
2673 void wxPropertyGrid::Clear()
2675 m_pState
->DoClear();
2681 RecalculateVirtualSize();
2683 // Need to clear some area at the end
2685 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2688 // -----------------------------------------------------------------------
2690 bool wxPropertyGrid::EnableCategories( bool enable
)
2697 // Enable categories
2700 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2705 // Disable categories
2707 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2710 if ( !m_pState
->EnableCategories(enable
) )
2715 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2717 m_pState
->m_itemsAdded
= 1; // force
2718 PrepareAfterItemsAdded();
2722 m_pState
->m_itemsAdded
= 1;
2724 // No need for RecalculateVirtualSize() here - it is already called in
2725 // wxPropertyGridPageState method above.
2732 // -----------------------------------------------------------------------
2734 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2736 wxASSERT( pNewState
);
2737 wxASSERT( pNewState
->GetGrid() );
2739 if ( pNewState
== m_pState
)
2742 wxArrayPGProperty oldSelection
= m_pState
->m_selection
;
2744 // Call ClearSelection() instead of DoClearSelection()
2745 // so that selection clear events are not sent.
2748 m_pState
->m_selection
= oldSelection
;
2750 bool orig_mode
= m_pState
->IsInNonCatMode();
2751 bool new_state_mode
= pNewState
->IsInNonCatMode();
2753 m_pState
= pNewState
;
2756 int pgWidth
= GetClientSize().x
;
2757 if ( HasVirtualWidth() )
2759 int minWidth
= pgWidth
;
2760 if ( pNewState
->m_width
< minWidth
)
2762 pNewState
->m_width
= minWidth
;
2763 pNewState
->CheckColumnWidths();
2769 // Just in case, fully re-center splitter
2770 //if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER ) )
2771 // pNewState->m_fSplitterX = -1.0;
2773 pNewState
->OnClientWidthChange(pgWidth
,
2774 pgWidth
- pNewState
->m_width
);
2779 // If necessary, convert state to correct mode.
2780 if ( orig_mode
!= new_state_mode
)
2782 // This should refresh as well.
2783 EnableCategories( orig_mode
?false:true );
2785 else if ( !m_frozen
)
2787 // Refresh, if not frozen.
2788 m_pState
->PrepareAfterItemsAdded();
2790 // Reselect (Use SetSelection() instead of Do-variant so that
2791 // events won't be sent).
2792 SetSelection(m_pState
->m_selection
);
2794 RecalculateVirtualSize(0);
2798 m_pState
->m_itemsAdded
= 1;
2801 // -----------------------------------------------------------------------
2803 // Call to SetSplitterPosition will always disable splitter auto-centering
2804 // if parent window is shown.
2805 void wxPropertyGrid::DoSetSplitterPosition( int newxpos
,
2809 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2812 wxPropertyGridPageState
* state
= m_pState
;
2814 if ( flags
& wxPG_SPLITTER_FROM_EVENT
)
2815 state
->m_dontCenterSplitter
= true;
2817 state
->DoSetSplitterPosition(newxpos
, splitterIndex
, flags
);
2819 if ( flags
& wxPG_SPLITTER_REFRESH
)
2821 if ( GetSelection() )
2822 CorrectEditorWidgetSizeX();
2830 // -----------------------------------------------------------------------
2832 void wxPropertyGrid::ResetColumnSizes( bool enableAutoResizing
)
2834 wxPropertyGridPageState
* state
= m_pState
;
2836 state
->ResetColumnSizes(0);
2838 if ( enableAutoResizing
&& HasFlag(wxPG_SPLITTER_AUTO_CENTER
) )
2839 m_pState
->m_dontCenterSplitter
= false;
2842 // -----------------------------------------------------------------------
2844 void wxPropertyGrid::CenterSplitter( bool enableAutoResizing
)
2846 SetSplitterPosition( m_width
/2 );
2847 if ( enableAutoResizing
&& HasFlag(wxPG_SPLITTER_AUTO_CENTER
) )
2848 m_pState
->m_dontCenterSplitter
= false;
2851 // -----------------------------------------------------------------------
2852 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2853 // -----------------------------------------------------------------------
2855 // Returns nearest paint visible property (such that will be painted unless
2856 // window is scrolled or resized). If given property is paint visible, then
2857 // it itself will be returned
2858 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2860 int vx
,vy1
;// Top left corner of client
2861 GetViewStart(&vx
,&vy1
);
2862 vy1
*= wxPG_PIXELS_PER_UNIT
;
2864 int vy2
= vy1
+ m_height
;
2865 int propY
= p
->GetY2(m_lineHeight
);
2867 if ( (propY
+ m_lineHeight
) < vy1
)
2870 return DoGetItemAtY( vy1
);
2872 else if ( propY
> vy2
)
2875 return DoGetItemAtY( vy2
);
2878 // Itself paint visible
2883 // -----------------------------------------------------------------------
2884 // Methods related to change in value, value modification and sending events
2885 // -----------------------------------------------------------------------
2887 // commits any changes in editor of selected property
2888 // return true if validation did not fail
2889 // flags are same as with DoSelectProperty
2890 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2892 // Committing already?
2893 if ( m_inCommitChangesFromEditor
)
2896 // Don't do this if already processing editor event. It might
2897 // induce recursive dialogs and crap like that.
2898 if ( m_iFlags
& wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
)
2900 if ( m_inDoPropertyChanged
)
2906 wxPGProperty
* selected
= GetSelection();
2909 IsEditorsValueModified() &&
2910 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2913 m_inCommitChangesFromEditor
= 1;
2915 wxVariant
variant(selected
->GetValueRef());
2916 bool valueIsPending
= false;
2918 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2919 // due to another window getting focus
2920 wxWindow
* oldFocus
= m_curFocused
;
2922 bool validationFailure
= false;
2923 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2925 m_chgInfo_changedProperty
= NULL
;
2927 // If truly modified, schedule value as pending.
2928 if ( selected
->GetEditorClass()->
2929 GetValueFromControl( variant
,
2931 GetEditorControl() ) )
2933 if ( DoEditorValidate() &&
2934 PerformValidation(selected
, variant
) )
2936 valueIsPending
= true;
2940 validationFailure
= true;
2945 EditorsValueWasNotModified();
2950 m_inCommitChangesFromEditor
= 0;
2952 if ( validationFailure
&& !forceSuccess
)
2956 oldFocus
->SetFocus();
2957 m_curFocused
= oldFocus
;
2960 res
= OnValidationFailure(selected
, variant
);
2962 // Now prevent further validation failure messages
2965 EditorsValueWasNotModified();
2966 OnValidationFailureReset(selected
);
2969 else if ( valueIsPending
)
2971 DoPropertyChanged( selected
, flags
);
2972 EditorsValueWasNotModified();
2981 // -----------------------------------------------------------------------
2983 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
,
2987 // Runs all validation functionality.
2988 // Returns true if value passes all tests.
2991 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2994 // Variant list a special value that cannot be validated
2996 if ( pendingValue
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2998 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
3003 // Adapt list to child values, if necessary
3004 wxVariant listValue
= pendingValue
;
3005 wxVariant
* pPendingValue
= &pendingValue
;
3006 wxVariant
* pList
= NULL
;
3008 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
3009 // string value, then we need treat as it was changed instead
3010 // (or, in addition, as is the case with composite string parent).
3011 // This includes creating list variant for child values.
3013 wxPGProperty
* pwc
= p
->GetParent();
3014 wxPGProperty
* changedProperty
= p
;
3015 wxPGProperty
* baseChangedProperty
= changedProperty
;
3016 wxVariant bcpPendingList
;
3018 listValue
= pendingValue
;
3019 listValue
.SetName(p
->GetBaseName());
3022 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
3024 wxVariantList tempList
;
3025 wxVariant
lv(tempList
, pwc
->GetBaseName());
3026 lv
.Append(listValue
);
3028 pPendingValue
= &listValue
;
3030 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
3032 baseChangedProperty
= pwc
;
3033 bcpPendingList
= lv
;
3036 changedProperty
= pwc
;
3037 pwc
= pwc
->GetParent();
3041 wxPGProperty
* evtChangingProperty
= changedProperty
;
3043 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
3045 value
= *pPendingValue
;
3049 // Convert list to child values
3050 pList
= pPendingValue
;
3051 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
3054 wxVariant evtChangingValue
= value
;
3056 if ( flags
& SendEvtChanging
)
3058 // FIXME: After proper ValueToString()s added, remove
3059 // this. It is just a temporary fix, as evt_changing
3060 // will simply not work for wxPG_PROP_COMPOSED_VALUE
3061 // (unless it is selected, and textctrl editor is open).
3062 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3064 evtChangingProperty
= baseChangedProperty
;
3065 if ( evtChangingProperty
!= p
)
3067 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
3071 evtChangingValue
= pendingValue
;
3075 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3077 if ( changedProperty
== GetSelection() )
3079 wxWindow
* editor
= GetEditorControl();
3080 wxASSERT( editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
3081 evtChangingValue
= wxStaticCast(editor
, wxTextCtrl
)->GetValue();
3085 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
3090 wxASSERT( m_chgInfo_changedProperty
== NULL
);
3091 m_chgInfo_changedProperty
= changedProperty
;
3092 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
3093 m_chgInfo_pendingValue
= value
;
3096 m_chgInfo_valueList
= *pList
;
3098 m_chgInfo_valueList
.MakeNull();
3100 // If changedProperty is not property which value was edited,
3101 // then call wxPGProperty::ValidateValue() for that as well.
3102 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
3104 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
3108 if ( flags
& SendEvtChanging
)
3110 // SendEvent returns true if event was vetoed
3111 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
,
3112 &evtChangingValue
) )
3116 if ( flags
& IsStandaloneValidation
)
3118 // If called in 'generic' context, we need to reset
3119 // m_chgInfo_changedProperty and write back translated value.
3120 m_chgInfo_changedProperty
= NULL
;
3121 pendingValue
= value
;
3127 // -----------------------------------------------------------------------
3129 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
3131 if ( !msg
.length() )
3135 if ( !wxPGGlobalVars
->m_offline
)
3137 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
3140 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
3143 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
3146 pStatusBar
->SetStatusText(msg
);
3154 ::wxMessageBox(msg
, wxT("Property Error"));
3157 // -----------------------------------------------------------------------
3159 bool wxPropertyGrid::OnValidationFailure( wxPGProperty
* property
,
3160 wxVariant
& invalidValue
)
3162 wxWindow
* editor
= GetEditorControl();
3164 // First call property's handler
3165 property
->OnValidationFailure(invalidValue
);
3167 bool res
= DoOnValidationFailure(property
, invalidValue
);
3170 // For non-wxTextCtrl editors, we do need to revert the value
3171 if ( !editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) &&
3172 property
== GetSelection() )
3174 property
->GetEditorClass()->UpdateControl(property
, editor
);
3177 property
->SetFlag(wxPG_PROP_INVALID_VALUE
);
3182 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
3184 int vfb
= m_validationInfo
.m_failureBehavior
;
3186 if ( vfb
& wxPG_VFB_BEEP
)
3189 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
3190 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
3192 unsigned int colCount
= m_pState
->GetColumnCount();
3194 // We need backup marked property's cells
3195 m_propCellsBackup
= property
->m_cells
;
3197 wxColour vfbFg
= *wxWHITE
;
3198 wxColour vfbBg
= *wxRED
;
3200 property
->EnsureCells(colCount
);
3202 for ( unsigned int i
=0; i
<colCount
; i
++ )
3204 wxPGCell
& cell
= property
->m_cells
[i
];
3205 cell
.SetFgCol(vfbFg
);
3206 cell
.SetBgCol(vfbBg
);
3209 DrawItemAndChildren(property
);
3211 if ( property
== GetSelection() )
3213 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
3215 wxWindow
* editor
= GetEditorControl();
3218 editor
->SetForegroundColour(vfbFg
);
3219 editor
->SetBackgroundColour(vfbBg
);
3224 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
3226 wxString msg
= m_validationInfo
.m_failureMessage
;
3228 if ( !msg
.length() )
3229 msg
= wxT("You have entered invalid value. Press ESC to cancel editing.");
3231 DoShowPropertyError(property
, msg
);
3234 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
3237 // -----------------------------------------------------------------------
3239 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
3241 int vfb
= m_validationInfo
.m_failureBehavior
;
3243 if ( vfb
& wxPG_VFB_MARK_CELL
)
3246 property
->m_cells
= m_propCellsBackup
;
3248 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
3250 if ( property
== GetSelection() && GetEditorControl() )
3252 // Calling this will recreate the control, thus resetting its colour
3253 RefreshProperty(property
);
3257 DrawItemAndChildren(property
);
3262 // -----------------------------------------------------------------------
3264 // flags are same as with DoSelectProperty
3265 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
3267 if ( m_inDoPropertyChanged
)
3270 wxPGProperty
* selected
= GetSelection();
3272 m_pState
->m_anyModified
= 1;
3274 m_inDoPropertyChanged
= 1;
3276 // Maybe need to update control
3277 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
3279 // These values were calculated in PerformValidation()
3280 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
3281 wxVariant value
= m_chgInfo_pendingValue
;
3283 wxPGProperty
* topPaintedProperty
= changedProperty
;
3285 while ( !topPaintedProperty
->IsCategory() &&
3286 !topPaintedProperty
->IsRoot() )
3288 topPaintedProperty
= topPaintedProperty
->GetParent();
3291 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
3293 // NB: Call GetEditorControl() as late as possible, because OnSetValue()
3294 // and perhaps other user-defined virtual functions may change it.
3295 wxWindow
* editor
= GetEditorControl();
3297 // Set as Modified (not if dragging just began)
3298 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
3300 p
->m_flags
|= wxPG_PROP_MODIFIED
;
3301 if ( p
== selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3304 SetCurControlBoldFont();
3310 // Propagate updates to parent(s)
3312 wxPGProperty
* prevPwc
= NULL
;
3314 while ( prevPwc
!= topPaintedProperty
)
3316 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3318 if ( pwc
== selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3321 SetCurControlBoldFont();
3325 pwc
= pwc
->GetParent();
3328 // Draw the actual property
3329 DrawItemAndChildren( topPaintedProperty
);
3332 // If value was set by wxPGProperty::OnEvent, then update the editor
3334 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3340 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3341 if ( m_wndEditor
) m_wndEditor
->Refresh();
3342 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3347 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3349 // If top parent has composite string value, then send to child parents,
3350 // starting from baseChangedProperty.
3351 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3353 pwc
= m_chgInfo_baseChangedProperty
;
3355 while ( pwc
!= changedProperty
)
3357 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
);
3358 pwc
= pwc
->GetParent();
3362 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
);
3364 m_inDoPropertyChanged
= 0;
3369 // -----------------------------------------------------------------------
3371 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3373 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3375 m_chgInfo_changedProperty
= NULL
;
3377 if ( PerformValidation(p
, newValue
) )
3379 DoPropertyChanged(p
);
3384 OnValidationFailure(p
, newValue
);
3390 // -----------------------------------------------------------------------
3392 wxVariant
wxPropertyGrid::GetUncommittedPropertyValue()
3394 wxPGProperty
* prop
= GetSelectedProperty();
3397 return wxNullVariant
;
3399 wxTextCtrl
* tc
= GetEditorTextCtrl();
3400 wxVariant value
= prop
->GetValue();
3402 if ( !tc
|| !IsEditorsValueModified() )
3405 if ( !prop
->StringToValue(value
, tc
->GetValue()) )
3408 if ( !PerformValidation(prop
, value
, IsStandaloneValidation
) )
3409 return prop
->GetValue();
3414 // -----------------------------------------------------------------------
3416 // Runs wxValidator for the selected property
3417 bool wxPropertyGrid::DoEditorValidate()
3419 #if wxUSE_VALIDATORS
3420 wxRecursionGuard
guard(m_validatingEditor
);
3421 if ( guard
.IsInside() )
3424 wxPGProperty
* selected
= GetSelection();
3427 wxWindow
* wnd
= GetEditorControl();
3429 wxValidator
* validator
= selected
->GetValidator();
3430 if ( validator
&& wnd
)
3432 validator
->SetWindow(wnd
);
3433 if ( !validator
->Validate(this) )
3441 // -----------------------------------------------------------------------
3443 void wxPropertyGrid::HandleCustomEditorEvent( wxEvent
&event
)
3445 // It is possible that this handler receives event even before
3446 // the control has been properly initialized. Let's skip the
3447 // event handling in that case.
3451 // Don't care about the event if it originated from the
3452 // 'label editor'. In this function we only care about the
3453 // property value editor.
3454 if ( m_labelEditor
&& event
.GetId() == m_labelEditor
->GetId() )
3460 wxPGProperty
* selected
= GetSelection();
3462 // Somehow, event is handled after property has been deselected.
3463 // Possibly, but very rare.
3465 selected
->HasFlag(wxPG_PROP_BEING_DELETED
) ||
3466 // Also don't handle editor event if wxEVT_PG_CHANGED or
3467 // similar is currently doing something (showing a
3468 // message box, for instance).
3472 if ( m_iFlags
& wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
)
3475 wxVariant
pendingValue(selected
->GetValueRef());
3476 wxWindow
* wnd
= GetEditorControl();
3477 wxWindow
* editorWnd
= wxDynamicCast(event
.GetEventObject(), wxWindow
);
3479 bool wasUnspecified
= selected
->IsValueUnspecified();
3480 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3481 bool valueIsPending
= false;
3483 m_chgInfo_changedProperty
= NULL
;
3485 m_iFlags
&= ~wxPG_FL_VALUE_CHANGE_IN_EVENT
;
3488 // Filter out excess wxTextCtrl modified events
3489 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&& wnd
)
3491 if ( wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3493 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3495 wxString newTcValue
= tc
->GetValue();
3496 if ( m_prevTcValue
== newTcValue
)
3498 m_prevTcValue
= newTcValue
;
3500 else if ( wnd
->IsKindOf(CLASSINFO(wxComboCtrl
)) )
3502 wxComboCtrl
* cc
= (wxComboCtrl
*) wnd
;
3504 wxString newTcValue
= cc
->GetTextCtrl()->GetValue();
3505 if ( m_prevTcValue
== newTcValue
)
3507 m_prevTcValue
= newTcValue
;
3511 SetInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
);
3513 bool validationFailure
= false;
3514 bool buttonWasHandled
= false;
3517 // Try common button handling
3518 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3520 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3524 buttonWasHandled
= true;
3525 // Store as res2, as previously (and still currently alternatively)
3526 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3527 // in wxPGProperty::OnEvent().
3528 adapter
->ShowDialog( this, selected
);
3533 if ( !buttonWasHandled
)
3535 if ( wnd
|| m_wndEditor2
)
3537 // First call editor class' event handler.
3538 const wxPGEditor
* editor
= selected
->GetEditorClass();
3540 if ( editor
->OnEvent( this, selected
, editorWnd
, event
) )
3542 // If changes, validate them
3543 if ( DoEditorValidate() )
3545 if ( editor
->GetValueFromControl( pendingValue
,
3548 valueIsPending
= true;
3552 validationFailure
= true;
3557 // Then the property's custom handler (must be always called, unless
3558 // validation failed).
3559 if ( !validationFailure
)
3560 buttonWasHandled
= selected
->OnEvent( this, editorWnd
, event
);
3563 // SetValueInEvent(), as called in one of the functions referred above
3564 // overrides editor's value.
3565 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3567 valueIsPending
= true;
3568 pendingValue
= m_changeInEventValue
;
3569 selFlags
|= wxPG_SEL_DIALOGVAL
;
3572 if ( !validationFailure
&& valueIsPending
)
3573 if ( !PerformValidation(selected
, pendingValue
) )
3574 validationFailure
= true;
3576 if ( validationFailure
)
3578 OnValidationFailure(selected
, pendingValue
);
3580 else if ( valueIsPending
)
3582 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3584 DoPropertyChanged(selected
, selFlags
);
3585 EditorsValueWasNotModified();
3587 // Regardless of editor type, unfocus editor on
3588 // text-editing related enter press.
3589 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3596 // No value after all
3598 // Regardless of editor type, unfocus editor on
3599 // text-editing related enter press.
3600 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3605 // Let unhandled button click events go to the parent
3606 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3608 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3609 GetEventHandler()->AddPendingEvent(evt
);
3613 ClearInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
);
3616 // -----------------------------------------------------------------------
3617 // wxPropertyGrid editor control helper methods
3618 // -----------------------------------------------------------------------
3620 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3622 int itemy
= p
->GetY2(m_lineHeight
);
3623 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3624 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3625 int imageOffset
= 0;
3627 int vx
, vy
; // Top left corner of client
3628 GetViewStart(&vx
, &vy
);
3629 vy
*= wxPG_PIXELS_PER_UNIT
;
3633 // TODO: If custom image detection changes from current, change this.
3634 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
)
3636 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3637 int iw
= p
->OnMeasureImage().x
;
3639 iw
= wxPG_CUSTOM_IMAGE_WIDTH
;
3640 imageOffset
= p
->GetImageOffset(iw
);
3643 else if ( column
== 0 )
3645 splitterX
+= (p
->m_depth
- 1) * m_subgroup_extramargin
;
3650 splitterX
+imageOffset
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3652 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-imageOffset
-1,
3657 // -----------------------------------------------------------------------
3659 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3661 wxSize sz
= GetImageSize(p
, item
);
3662 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3663 wxPG_CUSTOM_IMAGE_SPACINGY
,
3668 // return size of custom paint image
3669 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3671 // If called with NULL property, then return default image
3672 // size for properties that use image.
3674 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3676 wxSize cis
= p
->OnMeasureImage(item
);
3678 int choiceCount
= p
->m_choices
.GetCount();
3679 int comVals
= p
->GetDisplayedCommonValueCount();
3680 if ( item
>= choiceCount
&& comVals
> 0 )
3682 unsigned int cvi
= item
-choiceCount
;
3683 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3685 else if ( item
>= 0 && choiceCount
== 0 )
3686 return wxSize(0, 0);
3691 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3696 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3703 // -----------------------------------------------------------------------
3705 // takes scrolling into account
3706 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3709 GetViewStart(&vx
,&vy
);
3710 vy
*=wxPG_PIXELS_PER_UNIT
;
3711 vx
*=wxPG_PIXELS_PER_UNIT
;
3714 ClientToScreen( px
, py
);
3717 // -----------------------------------------------------------------------
3719 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3722 GetViewStart(&pt2
.x
,&pt2
.y
);
3723 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3724 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3728 return m_pState
->HitTest(pt2
);
3731 // -----------------------------------------------------------------------
3733 // custom set cursor
3734 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3736 if ( type
== m_curcursor
&& !override
) return;
3738 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3740 if ( type
== wxCURSOR_SIZEWE
)
3741 cursor
= m_cursorSizeWE
;
3743 SetCursor( *cursor
);
3748 // -----------------------------------------------------------------------
3751 wxPropertyGrid::GetUnspecifiedValueText( int argFlags
) const
3753 const wxPGCell
& ua
= GetUnspecifiedValueAppearance();
3755 if ( ua
.HasText() &&
3756 !(argFlags
& wxPG_FULL_VALUE
) &&
3757 !(argFlags
& wxPG_EDITABLE_VALUE
) )
3758 return ua
.GetText();
3760 return wxEmptyString
;
3763 // -----------------------------------------------------------------------
3764 // wxPropertyGrid property selection, editor creation
3765 // -----------------------------------------------------------------------
3768 // This class forwards events from property editor controls to wxPropertyGrid.
3769 class wxPropertyGridEditorEventForwarder
: public wxEvtHandler
3772 wxPropertyGridEditorEventForwarder( wxPropertyGrid
* propGrid
)
3773 : wxEvtHandler(), m_propGrid(propGrid
)
3777 virtual ~wxPropertyGridEditorEventForwarder()
3782 bool ProcessEvent( wxEvent
& event
)
3787 m_propGrid
->HandleCustomEditorEvent(event
);
3790 // NB: On wxMSW, a wxTextCtrl with wxTE_PROCESS_ENTER
3791 // may beep annoyingly if that event is skipped
3792 // and passed to parent event handler.
3793 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3796 return wxEvtHandler::ProcessEvent(event
);
3799 wxPropertyGrid
* m_propGrid
;
3802 // Setups event handling for child control
3803 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3805 wxWindowID id
= argWnd
->GetId();
3807 if ( argWnd
== m_wndEditor
)
3809 argWnd
->Connect(id
, wxEVT_MOTION
,
3810 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3812 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3813 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3815 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3816 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3818 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3819 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3821 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3822 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3824 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3825 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3829 wxPropertyGridEditorEventForwarder
* forwarder
;
3830 forwarder
= new wxPropertyGridEditorEventForwarder(this);
3831 argWnd
->PushEventHandler(forwarder
);
3833 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3834 wxCharEventHandler(wxPropertyGrid::OnChildKeyDown
),
3838 void wxPropertyGrid::DestroyEditorWnd( wxWindow
* wnd
)
3845 // Do not free editors immediately (for sake of processing events)
3846 wxPendingDelete
.Append(wnd
);
3849 void wxPropertyGrid::FreeEditors()
3852 // Return focus back to canvas from children (this is required at least for
3853 // GTK+, which, unlike Windows, clears focus when control is destroyed
3854 // instead of moving it to closest parent).
3855 wxWindow
* focus
= wxWindow::FindFocus();
3858 wxWindow
* parent
= focus
->GetParent();
3861 if ( parent
== this )
3866 parent
= parent
->GetParent();
3870 // Do not free editors immediately if processing events
3873 wxEvtHandler
* handler
= m_wndEditor2
->PopEventHandler(false);
3874 m_wndEditor2
->Hide();
3875 wxPendingDelete
.Append( handler
);
3876 DestroyEditorWnd(m_wndEditor2
);
3877 m_wndEditor2
= NULL
;
3882 wxEvtHandler
* handler
= m_wndEditor
->PopEventHandler(false);
3883 m_wndEditor
->Hide();
3884 wxPendingDelete
.Append( handler
);
3885 DestroyEditorWnd(m_wndEditor
);
3890 // Call with NULL to de-select property
3891 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3896 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3897 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3901 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3905 if ( m_inDoSelectProperty
)
3908 m_inDoSelectProperty
= 1;
3912 m_inDoSelectProperty
= 0;
3916 wxArrayPGProperty prevSelection
= m_pState
->m_selection
;
3917 wxPGProperty
* prevFirstSel
;
3919 if ( prevSelection
.size() > 0 )
3920 prevFirstSel
= prevSelection
[0];
3922 prevFirstSel
= NULL
;
3924 if ( prevFirstSel
&& prevFirstSel
->HasFlag(wxPG_PROP_BEING_DELETED
) )
3925 prevFirstSel
= NULL
;
3927 // Always send event, as this is indirect call
3928 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE
);
3932 wxPrintf( "Selected %s\n", prevFirstSel->GetClassInfo()->GetClassName() );
3934 wxPrintf( "None selected\n" );
3937 wxPrintf( "P = %s\n", p->GetClassInfo()->GetClassName() );
3939 wxPrintf( "P = NULL\n" );
3942 // If we are frozen, then just set the values.
3945 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3946 m_editorFocused
= 0;
3947 m_pState
->DoSetSelection(p
);
3949 // If frozen, always free controls. But don't worry, as Thaw will
3950 // recall SelectProperty to recreate them.
3953 // Prevent any further selection measures in this call
3959 if ( prevFirstSel
== p
&&
3960 prevSelection
.size() <= 1 &&
3961 !(flags
& wxPG_SEL_FORCE
) )
3963 // Only set focus if not deselecting
3966 if ( flags
& wxPG_SEL_FOCUS
)
3970 m_wndEditor
->SetFocus();
3971 m_editorFocused
= 1;
3980 m_inDoSelectProperty
= 0;
3985 // First, deactivate previous
3988 OnValidationFailureReset(prevFirstSel
);
3990 // Must double-check if this is an selected in case of forceswitch
3991 if ( p
!= prevFirstSel
)
3993 if ( !CommitChangesFromEditor(flags
) )
3995 // Validation has failed, so we can't exit the previous editor
3996 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3997 // _("Invalid Value"),wxOK|wxICON_ERROR);
3998 m_inDoSelectProperty
= 0;
4005 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
4006 EditorsValueWasNotModified();
4009 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
4011 m_pState
->DoSetSelection(p
);
4013 // Redraw unselected
4014 for ( unsigned int i
=0; i
<prevSelection
.size(); i
++ )
4016 DrawItem(prevSelection
[i
]);
4020 // Then, activate the one given.
4023 int propY
= p
->GetY2(m_lineHeight
);
4025 int splitterX
= GetSplitterPosition();
4026 m_editorFocused
= 0;
4027 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
4029 wxASSERT( m_wndEditor
== NULL
);
4032 // Only create editor for non-disabled non-caption
4033 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
4035 // do this for non-caption items
4039 // Do we need to paint the custom image, if any?
4040 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
4041 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
4042 !p
->GetEditorClass()->CanContainCustomImage()
4044 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
4046 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
4047 wxPoint goodPos
= grect
.GetPosition();
4049 // Editor appearance can now be considered clear
4050 m_editorAppearance
.SetEmptyData();
4052 const wxPGEditor
* editor
= p
->GetEditorClass();
4053 wxCHECK_MSG(editor
, false,
4054 wxT("NULL editor class not allowed"));
4056 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
4058 wxPGWindowList wndList
=
4059 editor
->CreateControls(this,
4064 m_wndEditor
= wndList
.m_primary
;
4065 m_wndEditor2
= wndList
.m_secondary
;
4066 wxWindow
* primaryCtrl
= GetEditorControl();
4069 // Essentially, primaryCtrl == m_wndEditor
4072 // NOTE: It is allowed for m_wndEditor to be NULL - in this
4073 // case value is drawn as normal, and m_wndEditor2 is
4074 // assumed to be a right-aligned button that triggers
4075 // a separate editorCtrl window.
4079 wxASSERT_MSG( m_wndEditor
->GetParent() == GetPanel(),
4080 "CreateControls must use result of "
4081 "wxPropertyGrid::GetPanel() as parent "
4084 // Set validator, if any
4085 #if wxUSE_VALIDATORS
4086 wxValidator
* validator
= p
->GetValidator();
4088 primaryCtrl
->SetValidator(*validator
);
4091 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
4092 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
4094 // If it has modified status, use bold font
4095 // (must be done before capturing m_ctrlXAdjust)
4096 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) &&
4097 (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
4098 SetCurControlBoldFont();
4100 // Store x relative to splitter (we'll need it).
4101 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
4103 // Check if background clear is not necessary
4104 wxPoint pos
= m_wndEditor
->GetPosition();
4105 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
4107 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
4110 m_wndEditor
->SetSizeHints(3, 3);
4112 SetupChildEventHandling(primaryCtrl
);
4114 // Focus and select all (wxTextCtrl, wxComboBox etc)
4115 if ( flags
& wxPG_SEL_FOCUS
)
4117 primaryCtrl
->SetFocus();
4119 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
4123 if ( p
->IsValueUnspecified() )
4124 SetEditorAppearance(m_unspecifiedAppearance
,
4131 wxASSERT_MSG( m_wndEditor2
->GetParent() == GetPanel(),
4132 "CreateControls must use result of "
4133 "wxPropertyGrid::GetPanel() as parent "
4136 // Get proper id for wndSecondary
4137 m_wndSecId
= m_wndEditor2
->GetId();
4138 wxWindowList children
= m_wndEditor2
->GetChildren();
4139 wxWindowList::iterator node
= children
.begin();
4140 if ( node
!= children
.end() )
4141 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
4143 m_wndEditor2
->SetSizeHints(3,3);
4145 m_wndEditor2
->Show();
4147 SetupChildEventHandling(m_wndEditor2
);
4149 // If no primary editor, focus to button to allow
4150 // it to interprete ENTER etc.
4151 // NOTE: Due to problems focusing away from it, this
4152 // has been disabled.
4154 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
4155 m_wndEditor2->SetFocus();
4159 if ( flags
& wxPG_SEL_FOCUS
)
4160 m_editorFocused
= 1;
4165 // Make sure focus is in grid canvas (important for wxGTK,
4170 EditorsValueWasNotModified();
4172 // If it's inside collapsed section, expand parent, scroll, etc.
4173 // Also, if it was partially visible, scroll it into view.
4174 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
4179 m_wndEditor
->Show(true);
4182 if ( !(flags
& wxPG_SEL_NO_REFRESH
) )
4187 // Make sure focus is in grid canvas
4191 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
4197 // Show help text in status bar.
4198 // (if found and grid not embedded in manager with help box and
4199 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
4202 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
4204 wxStatusBar
* statusbar
= NULL
;
4205 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
4207 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
4209 statusbar
= frame
->GetStatusBar();
4214 const wxString
* pHelpString
= (const wxString
*) NULL
;
4218 pHelpString
= &p
->GetHelpString();
4219 if ( pHelpString
->length() )
4221 // Set help box text.
4222 statusbar
->SetStatusText( *pHelpString
);
4223 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
4227 if ( (!pHelpString
|| !pHelpString
->length()) &&
4228 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
4230 // Clear help box - but only if it was written
4231 // by us at previous time.
4232 statusbar
->SetStatusText( m_emptyString
);
4233 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
4239 m_inDoSelectProperty
= 0;
4241 // call wx event handler (here so that it also occurs on deselection)
4242 if ( !(flags
& wxPG_SEL_DONT_SEND_EVENT
) )
4243 SendEvent( wxEVT_PG_SELECTED
, p
, NULL
);
4248 // -----------------------------------------------------------------------
4250 bool wxPropertyGrid::UnfocusEditor()
4252 wxPGProperty
* selected
= GetSelection();
4254 if ( !selected
|| !m_wndEditor
|| m_frozen
)
4257 if ( !CommitChangesFromEditor(0) )
4266 // -----------------------------------------------------------------------
4268 void wxPropertyGrid::RefreshEditor()
4270 wxPGProperty
* p
= GetSelection();
4274 wxWindow
* wnd
= GetEditorControl();
4278 // Set editor font boldness - must do this before
4279 // calling UpdateControl().
4280 if ( HasFlag(wxPG_BOLD_MODIFIED
) )
4282 if ( p
->HasFlag(wxPG_PROP_MODIFIED
) )
4283 wnd
->SetFont(GetCaptionFont());
4285 wnd
->SetFont(GetFont());
4288 const wxPGEditor
* editorClass
= p
->GetEditorClass();
4290 editorClass
->UpdateControl(p
, wnd
);
4292 if ( p
->IsValueUnspecified() )
4293 SetEditorAppearance(m_unspecifiedAppearance
, true);
4296 // -----------------------------------------------------------------------
4298 bool wxPropertyGrid::SelectProperty( wxPGPropArg id
, bool focus
)
4300 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
4302 int flags
= wxPG_SEL_DONT_SEND_EVENT
;
4304 flags
|= wxPG_SEL_FOCUS
;
4306 return DoSelectProperty(p
, flags
);
4309 // -----------------------------------------------------------------------
4310 // wxPropertyGrid expand/collapse state
4311 // -----------------------------------------------------------------------
4313 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
4315 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
4316 wxPGProperty
* selected
= GetSelection();
4318 // If active editor was inside collapsed section, then disable it
4319 if ( selected
&& selected
->IsSomeParent(p
) )
4324 // Store dont-center-splitter flag 'cause we need to temporarily set it
4325 bool prevDontCenterSplitter
= m_pState
->m_dontCenterSplitter
;
4326 m_pState
->m_dontCenterSplitter
= true;
4328 bool res
= m_pState
->DoCollapse(pwc
);
4333 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
4335 RecalculateVirtualSize();
4339 m_pState
->m_dontCenterSplitter
= prevDontCenterSplitter
;
4344 // -----------------------------------------------------------------------
4346 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
4348 wxCHECK_MSG( p
, false, wxT("invalid property id") );
4350 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4352 // Store dont-center-splitter flag 'cause we need to temporarily set it
4353 bool prevDontCenterSplitter
= m_pState
->m_dontCenterSplitter
;
4354 m_pState
->m_dontCenterSplitter
= true;
4356 bool res
= m_pState
->DoExpand(pwc
);
4361 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
4363 RecalculateVirtualSize();
4367 m_pState
->m_dontCenterSplitter
= prevDontCenterSplitter
;
4372 // -----------------------------------------------------------------------
4374 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
4377 return m_pState
->DoHideProperty(p
, hide
, flags
);
4379 wxArrayPGProperty selection
= m_pState
->m_selection
; // Must use a copy
4380 int selRemoveCount
= 0;
4381 for ( unsigned int i
=0; i
<selection
.size(); i
++ )
4383 wxPGProperty
* selected
= selection
[i
];
4384 if ( selected
== p
|| selected
->IsSomeParent(p
) )
4386 if ( !DoRemoveFromSelection(p
, flags
) )
4388 selRemoveCount
+= 1;
4392 m_pState
->DoHideProperty(p
, hide
, flags
);
4394 RecalculateVirtualSize();
4401 // -----------------------------------------------------------------------
4402 // wxPropertyGrid size related methods
4403 // -----------------------------------------------------------------------
4405 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
4407 // Don't check for !HasInternalFlag(wxPG_FL_INITIALIZED) here. Otherwise
4408 // virtual size calculation may go wrong.
4409 if ( HasInternalFlag(wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) ||
4415 // If virtual height was changed, then recalculate editor control position(s)
4416 if ( m_pState
->m_vhCalcPending
)
4417 CorrectEditorWidgetPosY();
4419 m_pState
->EnsureVirtualHeight();
4421 wxASSERT_LEVEL_2_MSG(
4422 m_pState
->GetVirtualHeight() == m_pState
->GetActualVirtualHeight(),
4423 "VirtualHeight and ActualVirtualHeight should match"
4426 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4428 int x
= m_pState
->m_width
;
4429 int y
= m_pState
->m_virtualHeight
;
4432 GetClientSize(&width
,&height
);
4434 // Now adjust virtual size.
4435 SetVirtualSize(x
, y
);
4441 // Adjust scrollbars
4442 if ( HasVirtualWidth() )
4444 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
4445 xPos
= GetScrollPos( wxHORIZONTAL
);
4448 if ( forceXPos
!= -1 )
4451 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4454 int yAmount
= y
/ wxPG_PIXELS_PER_UNIT
;
4455 int yPos
= GetScrollPos( wxVERTICAL
);
4457 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4458 xAmount
, yAmount
, xPos
, yPos
, true );
4460 // Must re-get size now
4461 GetClientSize(&width
,&height
);
4463 if ( !HasVirtualWidth() )
4465 m_pState
->SetVirtualWidth(width
);
4472 m_pState
->CheckColumnWidths();
4474 if ( GetSelection() )
4475 CorrectEditorWidgetSizeX();
4477 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4480 // -----------------------------------------------------------------------
4482 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4484 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4488 GetClientSize(&width
, &height
);
4493 #if wxPG_DOUBLE_BUFFER
4494 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4496 int dblh
= (m_lineHeight
*2);
4497 if ( !m_doubleBuffer
)
4499 // Create double buffer bitmap to draw on, if none
4500 int w
= (width
>250)?width
:250;
4501 int h
= height
+ dblh
;
4503 m_doubleBuffer
= new wxBitmap( w
, h
);
4507 int w
= m_doubleBuffer
->GetWidth();
4508 int h
= m_doubleBuffer
->GetHeight();
4510 // Double buffer must be large enough
4511 if ( w
< width
|| h
< (height
+dblh
) )
4513 if ( w
< width
) w
= width
;
4514 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4515 delete m_doubleBuffer
;
4516 m_doubleBuffer
= new wxBitmap( w
, h
);
4523 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4524 m_ncWidth
= event
.GetSize().x
;
4528 if ( m_pState
->m_itemsAdded
)
4529 PrepareAfterItemsAdded();
4531 // Without this, virtual size (atleast under wxGTK) will be skewed
4532 RecalculateVirtualSize();
4538 // -----------------------------------------------------------------------
4540 void wxPropertyGrid::SetVirtualWidth( int width
)
4544 // Disable virtual width
4545 width
= GetClientSize().x
;
4546 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4550 // Enable virtual width
4551 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4553 m_pState
->SetVirtualWidth( width
);
4556 void wxPropertyGrid::SetFocusOnCanvas()
4558 SetFocusIgnoringChildren();
4559 m_editorFocused
= 0;
4562 // -----------------------------------------------------------------------
4563 // wxPropertyGrid mouse event handling
4564 // -----------------------------------------------------------------------
4566 // selFlags uses same values DoSelectProperty's flags
4567 // Returns true if event was vetoed.
4568 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
,
4570 unsigned int selFlags
,
4571 unsigned int column
)
4573 // selFlags should have wxPG_SEL_NOVALIDATE if event is not
4576 // Send property grid event of specific type and with specific property
4577 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4578 evt
.SetPropertyGrid(this);
4579 evt
.SetEventObject(m_eventObject
);
4581 evt
.SetColumn(column
);
4582 if ( eventType
== wxEVT_PG_CHANGING
)
4585 evt
.SetCanVeto(true);
4586 m_validationInfo
.m_pValue
= pValue
;
4587 evt
.SetupValidationInfo();
4592 evt
.SetPropertyValue(p
->GetValue());
4594 if ( !(selFlags
& wxPG_SEL_NOVALIDATE
) )
4595 evt
.SetCanVeto(true);
4598 wxPropertyGridEvent
* prevProcessedEvent
= m_processedEvent
;
4599 m_processedEvent
= &evt
;
4600 m_eventObject
->HandleWindowEvent(evt
);
4601 m_processedEvent
= prevProcessedEvent
;
4603 return evt
.WasVetoed();
4606 // -----------------------------------------------------------------------
4608 // Return false if should be skipped
4609 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4613 // Need to set focus?
4614 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4619 wxPropertyGridPageState
* state
= m_pState
;
4621 int splitterHitOffset
;
4622 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4624 wxPGProperty
* p
= DoGetItemAtY(y
);
4628 int depth
= (int)p
->GetDepth() - 1;
4630 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4632 if ( x
>= marginEnds
)
4636 if ( p
->IsCategory() )
4638 // This is category.
4639 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4641 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4643 // Expand, collapse, activate etc. if click on text or left of splitter.
4646 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4651 if ( !AddToSelectionFromInputEvent( p
,
4656 // On double-click, expand/collapse.
4657 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4659 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4660 else DoExpand( p
, true );
4664 else if ( splitterHit
== -1 )
4667 unsigned int selFlag
= 0;
4668 if ( columnHit
== 1 )
4670 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4671 selFlag
= wxPG_SEL_FOCUS
;
4673 if ( !AddToSelectionFromInputEvent( p
,
4679 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4681 if ( p
->GetChildCount() && !p
->IsCategory() )
4682 // On double-click, expand/collapse.
4683 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4685 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4686 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4687 else DoExpand( p
, true );
4694 // click on splitter
4695 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4697 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4699 // Double-clicking the splitter causes auto-centering
4700 if ( m_pState
->GetColumnCount() <= 2 )
4702 ResetColumnSizes( true );
4704 SendEvent(wxEVT_PG_COL_DRAGGING
,
4707 wxPG_SEL_NOVALIDATE
,
4708 (unsigned int)m_draggedSplitter
);
4711 else if ( m_dragStatus
== 0 )
4714 // Begin draggin the splitter
4718 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE
);
4720 // Allow application to veto dragging
4721 if ( !SendEvent(wxEVT_PG_COL_BEGIN_DRAG
,
4723 (unsigned int)splitterHit
) )
4727 // Changes must be committed here or the
4728 // value won't be drawn correctly
4729 if ( !CommitChangesFromEditor() )
4732 m_wndEditor
->Show ( false );
4735 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4738 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4742 m_draggedSplitter
= splitterHit
;
4743 m_dragOffset
= splitterHitOffset
;
4745 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4746 // Fixes button disappearance bug
4748 m_wndEditor2
->Show ( false );
4751 m_startingSplitterX
= x
- splitterHitOffset
;
4760 if ( p
->GetChildCount() )
4762 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4764 // Fine tune cell button x
4765 if ( !p
->IsCategory() )
4766 nx
-= IN_CELL_EXPANDER_BUTTON_X_ADJUST
;
4768 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4770 int y2
= y
% m_lineHeight
;
4771 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4773 // On click on expander button, expand/collapse
4774 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4775 DoCollapse( p
, true );
4777 DoExpand( p
, true );
4786 // -----------------------------------------------------------------------
4788 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
),
4789 unsigned int WXUNUSED(y
),
4790 wxMouseEvent
& event
)
4794 // Select property here as well
4795 wxPGProperty
* p
= m_propHover
;
4796 AddToSelectionFromInputEvent(p
, m_colHover
, &event
);
4798 // Send right click event.
4799 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4806 // -----------------------------------------------------------------------
4808 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
),
4809 unsigned int WXUNUSED(y
),
4810 wxMouseEvent
& event
)
4814 // Select property here as well
4815 wxPGProperty
* p
= m_propHover
;
4817 AddToSelectionFromInputEvent(p
, m_colHover
, &event
);
4819 // Send double-click event.
4820 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4827 // -----------------------------------------------------------------------
4829 #if wxPG_SUPPORT_TOOLTIPS
4831 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4833 if ( tipString
.length() )
4835 wxScrolledWindow::SetToolTip(tipString
);
4839 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4840 wxScrolledWindow::SetToolTip( m_emptyString
);
4842 wxScrolledWindow::SetToolTip( NULL
);
4847 #endif // #if wxPG_SUPPORT_TOOLTIPS
4849 // -----------------------------------------------------------------------
4851 // Return false if should be skipped
4852 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
,
4853 wxMouseEvent
&event
)
4855 // Safety check (needed because mouse capturing may
4856 // otherwise freeze the control)
4857 if ( m_dragStatus
> 0 && !event
.Dragging() )
4859 HandleMouseUp(x
, y
, event
);
4862 wxPropertyGridPageState
* state
= m_pState
;
4864 int splitterHitOffset
;
4865 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4866 int splitterX
= x
- splitterHitOffset
;
4868 m_colHover
= columnHit
;
4870 if ( m_dragStatus
> 0 )
4872 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4873 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4876 int newSplitterX
= x
- m_dragOffset
;
4878 // Splitter redraw required?
4879 if ( newSplitterX
!= splitterX
)
4882 DoSetSplitterPosition(newSplitterX
,
4884 wxPG_SPLITTER_REFRESH
|
4885 wxPG_SPLITTER_FROM_EVENT
);
4887 SendEvent(wxEVT_PG_COL_DRAGGING
,
4890 wxPG_SEL_NOVALIDATE
,
4891 (unsigned int)m_draggedSplitter
);
4902 int ih
= m_lineHeight
;
4905 #if wxPG_SUPPORT_TOOLTIPS
4906 wxPGProperty
* prevHover
= m_propHover
;
4907 unsigned char prevSide
= m_mouseSide
;
4909 int curPropHoverY
= y
- (y
% ih
);
4911 // On which item it hovers
4914 ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) )
4917 // Mouse moves on another property
4919 m_propHover
= DoGetItemAtY(y
);
4920 m_propHoverY
= curPropHoverY
;
4923 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4926 #if wxPG_SUPPORT_TOOLTIPS
4927 // Store which side we are on
4929 if ( columnHit
== 1 )
4931 else if ( columnHit
== 0 )
4935 // If tooltips are enabled, show label or value as a tip
4936 // in case it doesn't otherwise show in full length.
4938 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4940 wxToolTip
* tooltip
= GetToolTip();
4942 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4944 if ( m_propHover
&& !m_propHover
->IsCategory() )
4947 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4949 // Show help string as a tooltip
4950 wxString tipString
= m_propHover
->GetHelpString();
4952 SetToolTip(tipString
);
4956 // Show cropped value string as a tooltip
4960 if ( m_mouseSide
== 1 )
4962 tipString
= m_propHover
->m_label
;
4963 space
= splitterX
-m_marginWidth
-3;
4965 else if ( m_mouseSide
== 2 )
4967 tipString
= m_propHover
->GetDisplayedString();
4969 space
= m_width
- splitterX
;
4970 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4971 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+
4972 wxCC_CUSTOM_IMAGE_MARGIN1
+
4973 wxCC_CUSTOM_IMAGE_MARGIN2
;
4979 GetTextExtent( tipString
, &tw
, &th
, 0, 0 );
4982 SetToolTip( tipString
);
4989 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4990 SetToolTip( m_emptyString
);
4992 wxScrolledWindow::SetToolTip( NULL
);
5003 #if wxPG_ALLOW_EMPTY_TOOLTIPS
5004 SetToolTip( m_emptyString
);
5006 wxScrolledWindow::SetToolTip( NULL
);
5014 if ( splitterHit
== -1 ||
5016 HasFlag(wxPG_STATIC_SPLITTER
) )
5018 // hovering on something else
5019 if ( m_curcursor
!= wxCURSOR_ARROW
)
5020 CustomSetCursor( wxCURSOR_ARROW
);
5024 // Do not allow splitter cursor on caption items.
5025 // (also not if we were dragging and its started
5026 // outside the splitter region)
5028 if ( !m_propHover
->IsCategory() &&
5032 // hovering on splitter
5034 // NB: Condition disabled since MouseLeave event (from the
5035 // editor control) cannot be reliably detected.
5036 //if ( m_curcursor != wxCURSOR_SIZEWE )
5037 CustomSetCursor( wxCURSOR_SIZEWE
, true );
5043 // hovering on something else
5044 if ( m_curcursor
!= wxCURSOR_ARROW
)
5045 CustomSetCursor( wxCURSOR_ARROW
);
5050 // Multi select by dragging
5052 if ( (GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION
) &&
5053 event
.LeftIsDown() &&
5057 !state
->DoIsPropertySelected(m_propHover
) )
5059 // Additional requirement is that the hovered property
5060 // is adjacent to edges of selection.
5061 const wxArrayPGProperty
& selection
= GetSelectedProperties();
5063 // Since categories cannot be selected along with 'other'
5064 // properties, exclude them from iterator flags.
5065 int iterFlags
= wxPG_ITERATE_VISIBLE
& (~wxPG_PROP_CATEGORY
);
5067 for ( int i
=(selection
.size()-1); i
>=0; i
-- )
5069 // TODO: This could be optimized by keeping track of
5070 // which properties are at the edges of selection.
5071 wxPGProperty
* selProp
= selection
[i
];
5072 if ( state
->ArePropertiesAdjacent(m_propHover
, selProp
,
5075 DoAddToSelection(m_propHover
);
5084 // -----------------------------------------------------------------------
5086 // Also handles Leaving event
5087 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
5088 wxMouseEvent
&WXUNUSED(event
) )
5090 wxPropertyGridPageState
* state
= m_pState
;
5094 int splitterHitOffset
;
5095 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
5097 // No event type check - basicly calling this method should
5098 // just stop dragging.
5099 // Left up after dragged?
5100 if ( m_dragStatus
>= 1 )
5103 // End Splitter Dragging
5105 // DO NOT ENABLE FOLLOWING LINE!
5106 // (it is only here as a reminder to not to do it)
5109 SendEvent(wxEVT_PG_COL_END_DRAG
,
5112 wxPG_SEL_NOVALIDATE
,
5113 (unsigned int)m_draggedSplitter
);
5115 // Disable splitter auto-centering (but only if moved any -
5116 // otherwise we end up disabling auto-center even after a
5117 // recentering double-click).
5118 int posDiff
= abs(m_startingSplitterX
-
5119 GetSplitterPosition(m_draggedSplitter
));
5122 state
->m_dontCenterSplitter
= true;
5124 // This is necessary to return cursor
5125 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5128 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5131 // Set back the default cursor, if necessary
5132 if ( splitterHit
== -1 ||
5135 CustomSetCursor( wxCURSOR_ARROW
);
5140 // Control background needs to be cleared
5141 wxPGProperty
* selected
= GetSelection();
5142 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && selected
)
5143 DrawItem( selected
);
5147 m_wndEditor
->Show ( true );
5150 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
5151 // Fixes button disappearance bug
5153 m_wndEditor2
->Show ( true );
5156 // This clears the focus.
5157 m_editorFocused
= 0;
5163 // -----------------------------------------------------------------------
5165 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
5167 int splitterX
= GetSplitterPosition();
5170 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &ux
, &uy
);
5172 wxWindow
* wnd
= GetEditorControl();
5174 // Hide popup on clicks
5175 if ( event
.GetEventType() != wxEVT_MOTION
)
5176 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
5178 ((wxOwnerDrawnComboBox
*)wnd
)->HidePopup();
5184 if ( wnd
== NULL
|| m_dragStatus
||
5186 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
5187 ux
>= (r
.x
+r
.width
) ||
5189 event
.m_y
>= (r
.y
+r
.height
)
5199 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
5204 // -----------------------------------------------------------------------
5206 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
5209 if ( OnMouseCommon( event
, &x
, &y
) )
5211 HandleMouseClick(x
,y
,event
);
5216 // -----------------------------------------------------------------------
5218 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
5221 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
5222 HandleMouseRightClick(x
,y
,event
);
5226 // -----------------------------------------------------------------------
5228 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
5230 // Always run standard mouse-down handler as well
5231 OnMouseClick(event
);
5234 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
5235 HandleMouseDoubleClick(x
,y
,event
);
5239 // -----------------------------------------------------------------------
5241 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
5244 if ( OnMouseCommon( event
, &x
, &y
) )
5246 HandleMouseMove(x
,y
,event
);
5251 // -----------------------------------------------------------------------
5253 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
5256 if ( OnMouseCommon( event
, &x
, &y
) )
5258 HandleMouseUp(x
,y
,event
);
5263 // -----------------------------------------------------------------------
5265 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
5267 // This may get called from child control as well, so event's
5268 // mouse position cannot be relied on.
5270 if ( event
.Entering() )
5272 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
5274 // TODO: Fix this (detect parent and only do
5275 // cursor trick if it is a manager).
5276 wxASSERT( GetParent() );
5277 GetParent()->SetCursor(wxNullCursor
);
5279 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
5282 GetParent()->SetCursor(wxNullCursor
);
5284 else if ( event
.Leaving() )
5286 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
5287 SetCursor( wxNullCursor
);
5289 // Get real cursor position
5290 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
5292 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
5295 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
5297 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
5301 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
5309 // -----------------------------------------------------------------------
5311 // Common code used by various OnMouseXXXChild methods.
5312 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
5314 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
5315 wxASSERT( topCtrlWnd
);
5317 event
.GetPosition(&x
,&y
);
5319 int splitterX
= GetSplitterPosition();
5321 wxRect r
= topCtrlWnd
->GetRect();
5322 if ( !m_dragStatus
&&
5323 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
5324 y
>= 0 && y
< r
.height \
5327 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
5332 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
5339 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
5342 if ( OnMouseChildCommon(event
,&x
,&y
) )
5344 bool res
= HandleMouseClick(x
,y
,event
);
5345 if ( !res
) event
.Skip();
5349 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
5352 wxASSERT( m_wndEditor
);
5353 // These coords may not be exact (about +-2),
5354 // but that should not matter (right click is about item, not position).
5355 wxPoint pt
= m_wndEditor
->GetPosition();
5356 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
5358 // FIXME: Used to set m_propHover to selection here. Was it really
5361 bool res
= HandleMouseRightClick(x
,y
,event
);
5362 if ( !res
) event
.Skip();
5365 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
5368 if ( OnMouseChildCommon(event
,&x
,&y
) )
5370 bool res
= HandleMouseMove(x
,y
,event
);
5371 if ( !res
) event
.Skip();
5375 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
5378 if ( OnMouseChildCommon(event
,&x
,&y
) )
5380 bool res
= HandleMouseUp(x
,y
,event
);
5381 if ( !res
) event
.Skip();
5385 // -----------------------------------------------------------------------
5386 // wxPropertyGrid keyboard event handling
5387 // -----------------------------------------------------------------------
5389 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
5391 // Translates wxKeyEvent to wxPG_ACTION_XXX
5393 int keycode
= event
.GetKeyCode();
5394 int modifiers
= event
.GetModifiers();
5396 wxASSERT( !(modifiers
&~(0xFFFF)) );
5398 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
5400 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
5402 if ( it
== m_actionTriggers
.end() )
5407 int second
= (it
->second
>>16) & 0xFFFF;
5411 return (it
->second
& 0xFFFF);
5414 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
5416 wxASSERT( !(modifiers
&~(0xFFFF)) );
5418 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
5420 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
5422 if ( it
!= m_actionTriggers
.end() )
5424 // This key combination is already used
5426 // Can add secondary?
5427 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
5428 wxT("You can only add up to two separate actions per key combination.") );
5430 action
= it
->second
| (action
<<16);
5433 m_actionTriggers
[hashMapKey
] = action
;
5436 void wxPropertyGrid::ClearActionTriggers( int action
)
5438 wxPGHashMapI2I::iterator it
;
5443 didSomething
= false;
5445 for ( it
= m_actionTriggers
.begin();
5446 it
!= m_actionTriggers
.end();
5449 if ( it
->second
== action
)
5451 m_actionTriggers
.erase(it
);
5452 didSomething
= true;
5457 while ( didSomething
);
5460 void wxPropertyGrid::HandleKeyEvent( wxKeyEvent
&event
, bool fromChild
)
5463 // Handles key event when editor control is not focused.
5466 wxCHECK2(!m_frozen
, return);
5468 // Travelsal between items, collapsing/expanding, etc.
5469 wxPGProperty
* selected
= GetSelection();
5470 int keycode
= event
.GetKeyCode();
5471 bool editorFocused
= IsEditorFocused();
5473 if ( keycode
== WXK_TAB
)
5475 wxWindow
* mainControl
;
5477 if ( HasInternalFlag(wxPG_FL_IN_MANAGER
) )
5478 mainControl
= GetParent();
5482 if ( !event
.ShiftDown() )
5484 if ( !editorFocused
&& m_wndEditor
)
5486 DoSelectProperty( selected
, wxPG_SEL_FOCUS
);
5490 // Tab traversal workaround for platforms on which
5491 // wxWindow::Navigate() may navigate into first child
5492 // instead of next sibling. Does not work perfectly
5493 // in every scenario (for instance, when property grid
5494 // is either first or last control).
5495 #if defined(__WXGTK__)
5496 wxWindow
* sibling
= mainControl
->GetNextSibling();
5498 sibling
->SetFocusFromKbd();
5500 Navigate(wxNavigationKeyEvent::IsForward
);
5506 if ( editorFocused
)
5512 #if defined(__WXGTK__)
5513 wxWindow
* sibling
= mainControl
->GetPrevSibling();
5515 sibling
->SetFocusFromKbd();
5517 Navigate(wxNavigationKeyEvent::IsBackward
);
5525 // Ignore Alt and Control when they are down alone
5526 if ( keycode
== WXK_ALT
||
5527 keycode
== WXK_CONTROL
)
5534 int action
= KeyEventToActions(event
, &secondAction
);
5536 if ( editorFocused
&& action
== wxPG_ACTION_CANCEL_EDIT
)
5539 // Esc cancels any changes
5540 if ( IsEditorsValueModified() )
5542 EditorsValueWasNotModified();
5544 // Update the control as well
5545 selected
->GetEditorClass()->
5546 SetControlStringValue( selected
,
5548 selected
->GetDisplayedString() );
5551 OnValidationFailureReset(selected
);
5557 // Except for TAB, ESC, and any keys specifically dedicated to
5558 // wxPropertyGrid itself, handle child control events in child control.
5560 wxPGFindInVector(m_dedicatedKeys
, keycode
) == wxNOT_FOUND
)
5562 // Only propagate event if it had modifiers
5563 if ( !event
.HasModifiers() )
5565 event
.StopPropagation();
5571 bool wasHandled
= false;
5576 if ( ButtonTriggerKeyTest(action
, event
) )
5579 wxPGProperty
* p
= selected
;
5581 // Travel and expand/collapse
5584 if ( p
->GetChildCount() )
5586 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
5588 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
5591 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
5593 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
5600 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
5604 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5610 if ( selectDir
>= -1 )
5612 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5615 // If editor was focused, then make the next editor focused as well
5617 if ( editorFocused
)
5618 selFlags
|= wxPG_SEL_FOCUS
;
5619 DoSelectProperty(p
, selFlags
);
5626 // If nothing was selected, select the first item now
5627 // (or navigate out of tab).
5628 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5630 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5631 if ( p
) DoSelectProperty(p
);
5640 // -----------------------------------------------------------------------
5642 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5644 // If there was editor open and focused, then this event should not
5645 // really be processed here.
5646 if ( IsEditorFocused() )
5648 // However, if event had modifiers, it is probably still best
5650 if ( event
.HasModifiers() )
5653 event
.StopPropagation();
5657 HandleKeyEvent(event
, false);
5660 // -----------------------------------------------------------------------
5662 bool wxPropertyGrid::ButtonTriggerKeyTest( int action
, wxKeyEvent
& event
)
5667 action
= KeyEventToActions(event
, &secondAction
);
5670 // Does the keycode trigger button?
5671 if ( action
== wxPG_ACTION_PRESS_BUTTON
&&
5674 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
, m_wndEditor2
->GetId());
5675 GetEventHandler()->AddPendingEvent(evt
);
5682 // -----------------------------------------------------------------------
5684 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5686 HandleKeyEvent(event
, true);
5689 // -----------------------------------------------------------------------
5690 // wxPropertyGrid miscellaneous event handling
5691 // -----------------------------------------------------------------------
5693 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5696 // Check if the focus is in this control or one of its children
5697 wxWindow
* newFocused
= wxWindow::FindFocus();
5699 if ( newFocused
!= m_curFocused
)
5700 HandleFocusChange( newFocused
);
5703 // Check if top-level parent has changed
5704 if ( GetExtraStyle() & wxPG_EX_ENABLE_TLP_TRACKING
)
5706 wxWindow
* tlp
= ::wxGetTopLevelParent(this);
5712 // Resolve pending property removals
5713 if ( m_deletedProperties
.size() > 0 )
5715 wxArrayPGProperty
& arr
= m_deletedProperties
;
5716 for ( unsigned int i
=0; i
<arr
.size(); i
++ )
5718 DeleteProperty(arr
[i
]);
5722 if ( m_removedProperties
.size() > 0 )
5724 wxArrayPGProperty
& arr
= m_removedProperties
;
5725 for ( unsigned int i
=0; i
<arr
.size(); i
++ )
5727 RemoveProperty(arr
[i
]);
5733 bool wxPropertyGrid::IsEditorFocused() const
5735 wxWindow
* focus
= wxWindow::FindFocus();
5737 if ( focus
== m_wndEditor
|| focus
== m_wndEditor2
||
5738 focus
== GetEditorControl() )
5744 // Called by focus event handlers. newFocused is the window that becomes focused.
5745 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5747 unsigned int oldFlags
= m_iFlags
;
5748 bool wasEditorFocused
= false;
5749 wxWindow
* wndEditor
= m_wndEditor
;
5751 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5753 wxWindow
* parent
= newFocused
;
5755 // This must be one of nextFocus' parents.
5758 if ( parent
== wndEditor
)
5760 wasEditorFocused
= true;
5762 // Use m_eventObject, which is either wxPropertyGrid or
5763 // wxPropertyGridManager, as appropriate.
5764 else if ( parent
== m_eventObject
)
5766 m_iFlags
|= wxPG_FL_FOCUSED
;
5769 parent
= parent
->GetParent();
5772 // Notify editor control when it receives a focus
5773 if ( wasEditorFocused
&& m_curFocused
!= newFocused
)
5775 wxPGProperty
* p
= GetSelection();
5778 const wxPGEditor
* editor
= p
->GetEditorClass();
5779 ResetEditorAppearance();
5780 editor
->OnFocus(p
, GetEditorControl());
5784 m_curFocused
= newFocused
;
5786 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5787 (oldFlags
& wxPG_FL_FOCUSED
) )
5789 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5791 // Need to store changed value
5792 CommitChangesFromEditor();
5798 // Preliminary code for tab-order respecting
5799 // tab-traversal (but should be moved to
5802 wxWindow* prevFocus = event.GetWindow();
5803 wxWindow* useThis = this;
5804 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5805 useThis = GetParent();
5808 prevFocus->GetParent() == useThis->GetParent() )
5810 wxList& children = useThis->GetParent()->GetChildren();
5812 wxNode* node = children.Find(prevFocus);
5814 if ( node->GetNext() &&
5815 useThis == node->GetNext()->GetData() )
5816 DoSelectProperty(GetFirst());
5817 else if ( node->GetPrevious () &&
5818 useThis == node->GetPrevious()->GetData() )
5819 DoSelectProperty(GetLastProperty());
5826 wxPGProperty
* selected
= GetSelection();
5827 if ( selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5828 DrawItem( selected
);
5832 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5834 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5835 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5836 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5837 //else if ( event.GetWindow() )
5839 HandleFocusChange(event
.GetWindow());
5844 // -----------------------------------------------------------------------
5846 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5848 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5852 // -----------------------------------------------------------------------
5854 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5856 m_iFlags
|= wxPG_FL_SCROLLED
;
5861 // -----------------------------------------------------------------------
5863 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5865 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5867 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5871 // -----------------------------------------------------------------------
5872 // Property editor related functions
5873 // -----------------------------------------------------------------------
5875 // noDefCheck = true prevents infinite recursion.
5876 wxPGEditor
* wxPropertyGrid::DoRegisterEditorClass( wxPGEditor
* editorClass
,
5877 const wxString
& editorName
,
5880 wxASSERT( editorClass
);
5882 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5883 RegisterDefaultEditors();
5885 wxString name
= editorName
;
5886 if ( name
.length() == 0 )
5887 name
= editorClass
->GetName();
5889 // Existing editor under this name?
5890 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5892 if ( vt_it
!= wxPGGlobalVars
->m_mapEditorClasses
.end() )
5894 // If this name was already used, try class name.
5895 name
= editorClass
->GetClassInfo()->GetClassName();
5896 vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5899 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5900 (wxPGEditor
*) vt_it
->second
,
5901 "Editor with given name was already registered" );
5903 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5908 // Use this in RegisterDefaultEditors.
5909 #define wxPGRegisterDefaultEditorClass(EDITOR) \
5910 if ( wxPGEditor_##EDITOR == NULL ) \
5912 wxPGEditor_##EDITOR = wxPropertyGrid::RegisterEditorClass( \
5913 new wxPG##EDITOR##Editor, true ); \
5916 // Registers all default editor classes
5917 void wxPropertyGrid::RegisterDefaultEditors()
5919 wxPGRegisterDefaultEditorClass( TextCtrl
);
5920 wxPGRegisterDefaultEditorClass( Choice
);
5921 wxPGRegisterDefaultEditorClass( ComboBox
);
5922 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5923 #if wxPG_INCLUDE_CHECKBOX
5924 wxPGRegisterDefaultEditorClass( CheckBox
);
5926 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5928 // Register SpinCtrl etc. editors before use
5929 RegisterAdditionalEditors();
5932 // -----------------------------------------------------------------------
5933 // wxPGStringTokenizer
5934 // Needed to handle C-style string lists (e.g. "str1" "str2")
5935 // -----------------------------------------------------------------------
5937 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5938 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5942 wxPGStringTokenizer::~wxPGStringTokenizer()
5946 bool wxPGStringTokenizer::HasMoreTokens()
5948 const wxString
& str
= *m_str
;
5950 wxString::const_iterator i
= m_curPos
;
5952 wxUniChar delim
= m_delimeter
;
5954 wxUniChar prev_a
= wxT('\0');
5956 bool inToken
= false;
5958 while ( i
!= str
.end() )
5967 m_readyToken
.clear();
5972 if ( prev_a
!= wxT('\\') )
5976 if ( a
!= wxT('\\') )
5996 m_curPos
= str
.end();
6004 wxString
wxPGStringTokenizer::GetNextToken()
6006 return m_readyToken
;
6009 // -----------------------------------------------------------------------
6011 // -----------------------------------------------------------------------
6013 wxPGChoiceEntry::wxPGChoiceEntry()
6014 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
6018 // -----------------------------------------------------------------------
6020 // -----------------------------------------------------------------------
6022 wxPGChoicesData::wxPGChoicesData()
6026 wxPGChoicesData::~wxPGChoicesData()
6031 void wxPGChoicesData::Clear()
6036 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
6038 wxASSERT( m_items
.size() == 0 );
6040 m_items
= data
->m_items
;
6043 wxPGChoiceEntry
& wxPGChoicesData::Insert( int index
,
6044 const wxPGChoiceEntry
& item
)
6046 wxVector
<wxPGChoiceEntry
>::iterator it
;
6050 index
= (int) m_items
.size();
6054 it
= m_items
.begin() + index
;
6057 m_items
.insert(it
, item
);
6059 wxPGChoiceEntry
& ownEntry
= m_items
[index
];
6061 // Need to fix value?
6062 if ( ownEntry
.GetValue() == wxPG_INVALID_VALUE
)
6063 ownEntry
.SetValue(index
);
6068 // -----------------------------------------------------------------------
6069 // wxPropertyGridEvent
6070 // -----------------------------------------------------------------------
6072 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
6075 wxDEFINE_EVENT( wxEVT_PG_SELECTED
, wxPropertyGridEvent
);
6076 wxDEFINE_EVENT( wxEVT_PG_CHANGING
, wxPropertyGridEvent
);
6077 wxDEFINE_EVENT( wxEVT_PG_CHANGED
, wxPropertyGridEvent
);
6078 wxDEFINE_EVENT( wxEVT_PG_HIGHLIGHTED
, wxPropertyGridEvent
);
6079 wxDEFINE_EVENT( wxEVT_PG_RIGHT_CLICK
, wxPropertyGridEvent
);
6080 wxDEFINE_EVENT( wxEVT_PG_PAGE_CHANGED
, wxPropertyGridEvent
);
6081 wxDEFINE_EVENT( wxEVT_PG_ITEM_EXPANDED
, wxPropertyGridEvent
);
6082 wxDEFINE_EVENT( wxEVT_PG_ITEM_COLLAPSED
, wxPropertyGridEvent
);
6083 wxDEFINE_EVENT( wxEVT_PG_DOUBLE_CLICK
, wxPropertyGridEvent
);
6084 wxDEFINE_EVENT( wxEVT_PG_LABEL_EDIT_BEGIN
, wxPropertyGridEvent
);
6085 wxDEFINE_EVENT( wxEVT_PG_LABEL_EDIT_ENDING
, wxPropertyGridEvent
);
6086 wxDEFINE_EVENT( wxEVT_PG_COL_BEGIN_DRAG
, wxPropertyGridEvent
);
6087 wxDEFINE_EVENT( wxEVT_PG_COL_DRAGGING
, wxPropertyGridEvent
);
6088 wxDEFINE_EVENT( wxEVT_PG_COL_END_DRAG
, wxPropertyGridEvent
);
6090 // -----------------------------------------------------------------------
6092 void wxPropertyGridEvent::Init()
6094 m_validationInfo
= NULL
;
6097 m_wasVetoed
= false;
6100 // -----------------------------------------------------------------------
6102 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
6103 : wxCommandEvent(commandType
,id
)
6109 // -----------------------------------------------------------------------
6111 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
6112 : wxCommandEvent(event
)
6114 m_eventType
= event
.GetEventType();
6115 m_eventObject
= event
.m_eventObject
;
6117 OnPropertyGridSet();
6118 m_property
= event
.m_property
;
6119 m_validationInfo
= event
.m_validationInfo
;
6120 m_canVeto
= event
.m_canVeto
;
6121 m_wasVetoed
= event
.m_wasVetoed
;
6124 // -----------------------------------------------------------------------
6126 void wxPropertyGridEvent::OnPropertyGridSet()
6132 wxCriticalSectionLocker(wxPGGlobalVars
->m_critSect
);
6134 m_pg
->m_liveEvents
.push_back(this);
6137 // -----------------------------------------------------------------------
6139 wxPropertyGridEvent::~wxPropertyGridEvent()
6144 wxCriticalSectionLocker(wxPGGlobalVars
->m_critSect
);
6147 // Use iterate from the back since it is more likely that the event
6148 // being desroyed is at the end of the array.
6149 wxVector
<wxPropertyGridEvent
*>& liveEvents
= m_pg
->m_liveEvents
;
6151 for ( int i
= liveEvents
.size()-1; i
>= 0; i
-- )
6153 if ( liveEvents
[i
] == this )
6155 liveEvents
.erase(liveEvents
.begin() + i
);
6162 // -----------------------------------------------------------------------
6164 wxEvent
* wxPropertyGridEvent::Clone() const
6166 return new wxPropertyGridEvent( *this );
6169 // -----------------------------------------------------------------------
6170 // wxPropertyGridPopulator
6171 // -----------------------------------------------------------------------
6173 wxPropertyGridPopulator::wxPropertyGridPopulator()
6177 wxPGGlobalVars
->m_offline
++;
6180 // -----------------------------------------------------------------------
6182 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
6185 m_propHierarchy
.clear();
6188 // -----------------------------------------------------------------------
6190 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
6196 // -----------------------------------------------------------------------
6198 wxPropertyGridPopulator::~wxPropertyGridPopulator()
6201 // Free unused sets of choices
6202 wxPGHashMapS2P::iterator it
;
6204 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
6206 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
6213 m_pg
->GetPanel()->Refresh();
6215 wxPGGlobalVars
->m_offline
--;
6218 // -----------------------------------------------------------------------
6220 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
6221 const wxString
& propLabel
,
6222 const wxString
& propName
,
6223 const wxString
* propValue
,
6224 wxPGChoices
* pChoices
)
6226 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
6227 wxPGProperty
* parent
= GetCurParent();
6229 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
6231 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
6235 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
6237 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
6241 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
6243 property
->SetLabel(propLabel
);
6244 property
->DoSetName(propName
);
6246 if ( pChoices
&& pChoices
->IsOk() )
6247 property
->SetChoices(*pChoices
);
6249 m_state
->DoInsert(parent
, -1, property
);
6252 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
|
6253 wxPG_PROGRAMMATIC_VALUE
);
6258 // -----------------------------------------------------------------------
6260 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
6262 m_propHierarchy
.push_back(property
);
6263 DoScanForChildren();
6264 m_propHierarchy
.pop_back();
6267 // -----------------------------------------------------------------------
6269 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
6270 const wxString
& idString
)
6272 wxPGChoices choices
;
6275 if ( choicesString
[0] == wxT('@') )
6277 wxString ids
= choicesString
.substr(1);
6278 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
6279 if ( it
== m_dictIdChoices
.end() )
6280 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
6282 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6287 if ( idString
.length() )
6289 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
6290 if ( it
!= m_dictIdChoices
.end() )
6292 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6299 // Parse choices string
6300 wxString::const_iterator it
= choicesString
.begin();
6304 bool labelValid
= false;
6306 for ( ; it
!= choicesString
.end(); ++it
)
6312 if ( c
== wxT('"') )
6317 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6318 choices
.Add(label
, l
);
6321 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6326 else if ( c
== wxT('=') )
6333 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
6340 if ( c
== wxT('"') )
6353 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6354 choices
.Add(label
, l
);
6357 if ( !choices
.IsOk() )
6359 choices
.EnsureData();
6363 if ( idString
.length() )
6364 m_dictIdChoices
[idString
] = choices
.GetData();
6371 // -----------------------------------------------------------------------
6373 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6375 if ( s
.Last() == wxT('%') )
6377 wxString s2
= s
.substr(0,s
.length()-1);
6379 if ( s2
.ToLong(&val
, 10) )
6381 *pval
= (val
*max
)/100;
6387 return s
.ToLong(pval
, 10);
6390 // -----------------------------------------------------------------------
6392 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6393 const wxString
& type
,
6394 const wxString
& value
)
6396 int l
= m_propHierarchy
.size();
6400 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6401 wxString valuel
= value
.Lower();
6404 if ( type
.length() == 0 )
6409 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6411 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6413 else if ( value
.ToLong(&v
, 0) )
6420 if ( type
== wxT("string") )
6424 else if ( type
== wxT("int") )
6427 value
.ToLong(&v
, 0);
6430 else if ( type
== wxT("bool") )
6432 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6439 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6444 p
->SetAttribute( name
, variant
);
6449 // -----------------------------------------------------------------------
6451 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6453 wxLogError(_("Error in resource: %s"),msg
.c_str());
6456 // -----------------------------------------------------------------------
6458 #endif // wxUSE_PROPGRID