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 // -----------------------------------------------------------------------
121 void wxPropertyGrid::AutoGetTranslation ( bool enable
)
123 wxPGGlobalVars
->m_autoGetTranslation
= enable
;
126 void wxPropertyGrid::AutoGetTranslation ( bool ) { }
129 // -----------------------------------------------------------------------
131 const char wxPropertyGridNameStr
[] = "wxPropertyGrid";
133 // -----------------------------------------------------------------------
134 // Statics in one class for easy destruction.
135 // -----------------------------------------------------------------------
137 #include "wx/module.h"
139 class wxPGGlobalVarsClassManager
: public wxModule
141 DECLARE_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
)
143 wxPGGlobalVarsClassManager() {}
144 virtual bool OnInit() { wxPGGlobalVars
= new wxPGGlobalVarsClass(); return true; }
145 virtual void OnExit() { delete wxPGGlobalVars
; wxPGGlobalVars
= NULL
; }
148 IMPLEMENT_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
, wxModule
)
151 // When wxPG is loaded dynamically after the application is already running
152 // then the built-in module system won't pick this one up. Add it manually.
153 void wxPGInitResourceModule()
155 wxModule
* module = new wxPGGlobalVarsClassManager
;
157 wxModule::RegisterModule(module);
160 wxPGGlobalVarsClass
* wxPGGlobalVars
= NULL
;
163 wxPGGlobalVarsClass::wxPGGlobalVarsClass()
165 wxPGProperty::sm_wxPG_LABEL
= new wxString(wxPG_LABEL_STRING
);
167 m_boolChoices
.Add(_("False"));
168 m_boolChoices
.Add(_("True"));
170 m_fontFamilyChoices
= NULL
;
172 m_defaultRenderer
= new wxPGDefaultRenderer();
174 m_autoGetTranslation
= false;
182 // Prepare some shared variants
183 m_vEmptyString
= wxString();
185 m_vMinusOne
= (long) -1;
189 // Prepare cached string constants
190 m_strstring
= wxS("string");
191 m_strlong
= wxS("long");
192 m_strbool
= wxS("bool");
193 m_strlist
= wxS("list");
194 m_strDefaultValue
= wxS("DefaultValue");
195 m_strMin
= wxS("Min");
196 m_strMax
= wxS("Max");
197 m_strUnits
= wxS("Units");
198 m_strInlineHelp
= wxS("InlineHelp");
204 wxPGGlobalVarsClass::~wxPGGlobalVarsClass()
208 delete m_defaultRenderer
;
210 // This will always have one ref
211 delete m_fontFamilyChoices
;
214 for ( i
=0; i
<m_arrValidators
.size(); i
++ )
215 delete ((wxValidator
*)m_arrValidators
[i
]);
219 // Destroy value type class instances.
220 wxPGHashMapS2P::iterator vt_it
;
222 // Destroy editor class instances.
223 // iterate over all the elements in the class
224 for( vt_it
= m_mapEditorClasses
.begin(); vt_it
!= m_mapEditorClasses
.end(); ++vt_it
)
226 delete ((wxPGEditor
*)vt_it
->second
);
229 delete wxPGProperty::sm_wxPG_LABEL
;
232 void wxPropertyGridInitGlobalsIfNeeded()
236 // -----------------------------------------------------------------------
238 // -----------------------------------------------------------------------
241 // wxPGCanvas acts as a graphics sub-window of the
242 // wxScrolledWindow that wxPropertyGrid is.
244 class wxPGCanvas
: public wxPanel
247 wxPGCanvas() : wxPanel()
250 virtual ~wxPGCanvas() { }
253 void OnMouseMove( wxMouseEvent
&event
)
255 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
256 pg
->OnMouseMove( event
);
259 void OnMouseClick( wxMouseEvent
&event
)
261 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
262 pg
->OnMouseClick( event
);
265 void OnMouseUp( wxMouseEvent
&event
)
267 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
268 pg
->OnMouseUp( event
);
271 void OnMouseRightClick( wxMouseEvent
&event
)
273 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
274 pg
->OnMouseRightClick( event
);
277 void OnMouseDoubleClick( wxMouseEvent
&event
)
279 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
280 pg
->OnMouseDoubleClick( event
);
283 void OnKey( wxKeyEvent
& event
)
285 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
289 void OnPaint( wxPaintEvent
& event
);
291 // Always be focussable, even with child windows
292 virtual void SetCanFocus(bool WXUNUSED(canFocus
))
293 { wxPanel::SetCanFocus(true); }
297 DECLARE_EVENT_TABLE()
298 DECLARE_ABSTRACT_CLASS(wxPGCanvas
)
302 IMPLEMENT_ABSTRACT_CLASS(wxPGCanvas
,wxPanel
)
304 BEGIN_EVENT_TABLE(wxPGCanvas
, wxPanel
)
305 EVT_MOTION(wxPGCanvas::OnMouseMove
)
306 EVT_PAINT(wxPGCanvas::OnPaint
)
307 EVT_LEFT_DOWN(wxPGCanvas::OnMouseClick
)
308 EVT_LEFT_UP(wxPGCanvas::OnMouseUp
)
309 EVT_RIGHT_UP(wxPGCanvas::OnMouseRightClick
)
310 EVT_LEFT_DCLICK(wxPGCanvas::OnMouseDoubleClick
)
311 EVT_KEY_DOWN(wxPGCanvas::OnKey
)
315 void wxPGCanvas::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
317 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
318 wxASSERT( pg
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
322 // Don't paint after destruction has begun
323 if ( !(pg
->GetInternalFlags() & wxPG_FL_INITIALIZED
) )
326 // Update everything inside the box
327 wxRect r
= GetUpdateRegion().GetBox();
329 // FIXME: This is just a workaround for a bug that causes splitters not
330 // to paint when other windows are being dragged over the grid.
331 wxRect fullRect
= GetRect();
333 r
.width
= fullRect
.width
;
335 // Repaint this rectangle
336 pg
->DrawItems( dc
, r
.y
, r
.y
+ r
.height
, &r
);
338 // We assume that the size set when grid is shown
339 // is what is desired.
340 pg
->SetInternalFlag(wxPG_FL_GOOD_SIZE_SET
);
343 // -----------------------------------------------------------------------
345 // -----------------------------------------------------------------------
347 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid
, wxScrolledWindow
)
349 BEGIN_EVENT_TABLE(wxPropertyGrid
, wxScrolledWindow
)
350 EVT_IDLE(wxPropertyGrid::OnIdle
)
351 EVT_MOTION(wxPropertyGrid::OnMouseMoveBottom
)
352 EVT_PAINT(wxPropertyGrid::OnPaint
)
353 EVT_SIZE(wxPropertyGrid::OnResize
)
354 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry
)
355 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry
)
356 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange
)
357 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent
)
358 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent
)
359 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent
)
360 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent
)
361 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged
)
365 // -----------------------------------------------------------------------
367 wxPropertyGrid::wxPropertyGrid()
373 // -----------------------------------------------------------------------
375 wxPropertyGrid::wxPropertyGrid( wxWindow
*parent
,
380 const wxString
& name
)
384 Create(parent
,id
,pos
,size
,style
,name
);
387 // -----------------------------------------------------------------------
389 bool wxPropertyGrid::Create( wxWindow
*parent
,
394 const wxString
& name
)
397 if ( !(style
&wxBORDER_MASK
) )
398 style
|= wxSIMPLE_BORDER
;
402 // Filter out wxTAB_TRAVERSAL - we will handle TABs manually
403 style
&= ~(wxTAB_TRAVERSAL
);
404 style
|= wxWANTS_CHARS
;
406 wxScrolledWindow::Create(parent
,id
,pos
,size
,style
,name
);
413 // -----------------------------------------------------------------------
416 // Initialize values to defaults
418 void wxPropertyGrid::Init1()
420 // Register editor classes, if necessary.
421 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
422 wxPropertyGrid::RegisterDefaultEditors();
426 m_wndEditor
= m_wndEditor2
= NULL
;
430 m_labelEditor
= NULL
;
431 m_labelEditorProperty
= NULL
;
432 m_eventObject
= this;
434 m_sortFunction
= NULL
;
435 m_inDoPropertyChanged
= 0;
436 m_inCommitChangesFromEditor
= 0;
437 m_inDoSelectProperty
= 0;
438 m_permanentValidationFailureBehavior
= wxPG_VFB_DEFAULT
;
444 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_RIGHT
);
445 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_DOWN
);
446 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_LEFT
);
447 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_UP
);
448 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY
, WXK_RIGHT
);
449 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY
, WXK_LEFT
);
450 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT
, WXK_ESCAPE
);
451 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_DOWN
, wxMOD_ALT
);
452 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_F4
);
454 m_coloursCustomized
= 0;
459 #if wxPG_DOUBLE_BUFFER
460 m_doubleBuffer
= NULL
;
463 #ifndef wxPG_ICON_WIDTH
469 m_iconWidth
= wxPG_ICON_WIDTH
;
474 m_gutterWidth
= wxPG_GUTTER_MIN
;
475 m_subgroup_extramargin
= 10;
479 m_width
= m_height
= 0;
481 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
484 m_chgInfo_changedProperty
= NULL
;
487 // -----------------------------------------------------------------------
490 // Initialize after parent etc. set
492 void wxPropertyGrid::Init2()
494 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
497 // Smaller controls on Mac
498 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
501 // Now create state, if one didn't exist already
502 // (wxPropertyGridManager might have created it for us).
505 m_pState
= CreateState();
506 m_pState
->m_pPropGrid
= this;
507 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
510 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
511 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
513 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
515 m_pState
->InitNonCatMode();
517 m_pState
->m_properties
= m_pState
->m_abcArray
;
520 GetClientSize(&m_width
,&m_height
);
522 #ifndef wxPG_ICON_WIDTH
523 // create two bitmap nodes for drawing
524 m_expandbmp
= new wxBitmap(expand_xpm
);
525 m_collbmp
= new wxBitmap(collapse_xpm
);
527 // calculate average font height for bitmap centering
529 m_iconWidth
= m_expandbmp
->GetWidth();
530 m_iconHeight
= m_expandbmp
->GetHeight();
533 m_curcursor
= wxCURSOR_ARROW
;
534 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
536 // adjust bitmap icon y position so they are centered
537 m_vspacing
= wxPG_DEFAULT_VSPACING
;
539 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
541 // Allocate cell datas indirectly by calling setter
542 m_propertyDefaultCell
.SetBgCol(*wxBLACK
);
543 m_categoryDefaultCell
.SetBgCol(*wxBLACK
);
547 // This helps with flicker
548 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
550 // Hook the top-level parent
555 // set virtual size to this window size
556 wxSize wndsize
= GetSize();
557 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
559 m_timeCreated
= ::wxGetLocalTimeMillis();
561 m_canvas
= new wxPGCanvas();
562 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
563 wxWANTS_CHARS
| wxCLIP_CHILDREN
);
564 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
566 m_iFlags
|= wxPG_FL_INITIALIZED
;
568 m_ncWidth
= wndsize
.GetWidth();
570 // Need to call OnResize handler or size given in constructor/Create
572 wxSizeEvent
sizeEvent(wndsize
,0);
576 // -----------------------------------------------------------------------
578 wxPropertyGrid::~wxPropertyGrid()
582 DoSelectProperty(NULL
, wxPG_SEL_NOVALIDATE
|wxPG_SEL_DONT_SEND_EVENT
);
584 // This should do prevent things from going too badly wrong
585 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
587 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
588 m_canvas
->ReleaseMouse();
590 // Call with NULL to disconnect event handling
591 if ( GetExtraStyle() & wxPG_EX_ENABLE_TLP_TRACKING
)
595 wxASSERT_MSG( !IsEditorsValueModified(),
596 wxS("Most recent change in property editor was ")
597 wxS("lost!!! (if you don't want this to happen, ")
598 wxS("close your frames and dialogs using ")
599 wxS("Close(false).)") );
602 #if wxPG_DOUBLE_BUFFER
603 if ( m_doubleBuffer
)
604 delete m_doubleBuffer
;
607 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
610 delete m_cursorSizeWE
;
612 #ifndef wxPG_ICON_WIDTH
617 // Delete common value records
618 for ( i
=0; i
<m_commonValues
.size(); i
++ )
620 delete GetCommonValue(i
);
624 // -----------------------------------------------------------------------
626 bool wxPropertyGrid::Destroy()
628 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
629 m_canvas
->ReleaseMouse();
631 return wxScrolledWindow::Destroy();
634 // -----------------------------------------------------------------------
636 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
638 return new wxPropertyGridPageState();
641 // -----------------------------------------------------------------------
642 // wxPropertyGrid overridden wxWindow methods
643 // -----------------------------------------------------------------------
645 void wxPropertyGrid::SetWindowStyleFlag( long style
)
647 long old_style
= m_windowStyle
;
649 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
651 wxASSERT( m_pState
);
653 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
656 EnableCategories( true );
658 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
660 // Disable categories
661 EnableCategories( false );
663 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
669 PrepareAfterItemsAdded();
671 m_pState
->m_itemsAdded
= 1;
673 #if wxPG_SUPPORT_TOOLTIPS
674 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
680 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
681 SetToolTip ( tooltip );
682 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
685 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
690 m_canvas
->SetToolTip( NULL
);
695 wxScrolledWindow::SetWindowStyleFlag ( style
);
697 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
699 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
701 CalculateFontAndBitmapStuff( m_vspacing
);
707 // -----------------------------------------------------------------------
709 void wxPropertyGrid::Freeze()
713 wxScrolledWindow::Freeze();
718 // -----------------------------------------------------------------------
720 void wxPropertyGrid::Thaw()
726 wxScrolledWindow::Thaw();
727 RecalculateVirtualSize();
728 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
732 // Force property re-selection
733 // NB: We must copy the selection.
734 wxArrayPGProperty selection
= m_pState
->m_selection
;
735 DoSetSelection(selection
, wxPG_SEL_FORCE
);
739 // -----------------------------------------------------------------------
741 bool wxPropertyGrid::DoAddToSelection( wxPGProperty
* prop
, int selFlags
)
743 wxCHECK( prop
, false );
745 if ( !(GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION
) )
746 return DoSelectProperty(prop
, selFlags
);
748 wxArrayPGProperty
& selection
= m_pState
->m_selection
;
750 if ( !selection
.size() )
752 return DoSelectProperty(prop
, selFlags
);
756 // For categories, only one can be selected at a time
757 if ( prop
->IsCategory() || selection
[0]->IsCategory() )
760 selection
.push_back(prop
);
762 if ( !(selFlags
& wxPG_SEL_DONT_SEND_EVENT
) )
764 SendEvent( wxEVT_PG_SELECTED
, prop
, NULL
);
773 // -----------------------------------------------------------------------
775 bool wxPropertyGrid::DoRemoveFromSelection( wxPGProperty
* prop
, int selFlags
)
777 wxCHECK( prop
, false );
780 wxArrayPGProperty
& selection
= m_pState
->m_selection
;
781 if ( selection
.size() <= 1 )
783 res
= DoSelectProperty(NULL
, selFlags
);
787 m_pState
->DoRemoveFromSelection(prop
);
795 // -----------------------------------------------------------------------
797 bool wxPropertyGrid::DoSelectAndEdit( wxPGProperty
* prop
,
798 unsigned int colIndex
,
799 unsigned int selFlags
)
802 // NB: Enable following if label editor background colour is
803 // ever changed to any other than m_colSelBack.
805 // We use this workaround to prevent visible flicker when editing
806 // a cell. Atleast on wxMSW, there is a difficult to find
807 // (and perhaps prevent) redraw somewhere between making property
808 // selected and enabling label editing.
810 //wxColour prevColSelBack = m_colSelBack;
811 //m_colSelBack = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
817 res
= DoSelectProperty(prop
, selFlags
);
822 DoClearSelection(false, wxPG_SEL_NO_REFRESH
);
824 if ( m_pState
->m_editableColumns
.Index(colIndex
) == wxNOT_FOUND
)
826 res
= DoAddToSelection(prop
, selFlags
);
830 res
= DoAddToSelection(prop
, selFlags
|wxPG_SEL_NO_REFRESH
);
832 DoBeginLabelEdit(colIndex
, selFlags
);
836 //m_colSelBack = prevColSelBack;
840 // -----------------------------------------------------------------------
842 bool wxPropertyGrid::AddToSelectionFromInputEvent( wxPGProperty
* prop
,
843 unsigned int colIndex
,
844 wxMouseEvent
* mouseEvent
,
847 bool alreadySelected
= m_pState
->DoIsPropertySelected(prop
);
849 bool addToExistingSelection
;
851 if ( GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION
)
855 if ( mouseEvent
->GetEventType() == wxEVT_RIGHT_DOWN
||
856 mouseEvent
->GetEventType() == wxEVT_RIGHT_UP
)
858 // Allow right-click for context menu without
859 // disturbing the selection.
860 if ( GetSelectedProperties().size() <= 1 ||
862 return DoSelectAndEdit(prop
, colIndex
, selFlags
);
867 addToExistingSelection
= mouseEvent
->ShiftDown();
872 addToExistingSelection
= false;
877 addToExistingSelection
= false;
880 if ( addToExistingSelection
)
882 if ( !alreadySelected
)
884 res
= DoAddToSelection(prop
, selFlags
);
886 else if ( GetSelectedProperties().size() > 1 )
888 res
= DoRemoveFromSelection(prop
, selFlags
);
893 res
= DoSelectAndEdit(prop
, colIndex
, selFlags
);
899 // -----------------------------------------------------------------------
901 void wxPropertyGrid::DoSetSelection( const wxArrayPGProperty
& newSelection
,
904 if ( newSelection
.size() > 0 )
906 if ( !DoSelectProperty(newSelection
[0], selFlags
) )
911 DoClearSelection(false, selFlags
);
914 for ( unsigned int i
= 1; i
< newSelection
.size(); i
++ )
916 DoAddToSelection(newSelection
[i
], selFlags
);
922 // -----------------------------------------------------------------------
924 void wxPropertyGrid::MakeColumnEditable( unsigned int column
,
927 wxASSERT( column
!= 1 );
929 wxArrayInt
& cols
= m_pState
->m_editableColumns
;
933 cols
.push_back(column
);
937 for ( int i
= cols
.size() - 1; i
> 0; i
-- )
939 if ( cols
[i
] == (int)column
)
940 cols
.erase( cols
.begin() + i
);
945 // -----------------------------------------------------------------------
947 void wxPropertyGrid::DoBeginLabelEdit( unsigned int colIndex
,
950 wxPGProperty
* selected
= GetSelection();
951 wxCHECK_RET(selected
, wxT("No property selected"));
952 wxCHECK_RET(colIndex
!= 1, wxT("Do not use this for column 1"));
954 if ( !(selFlags
& wxPG_SEL_DONT_SEND_EVENT
) )
956 if ( SendEvent( wxEVT_PG_LABEL_EDIT_BEGIN
,
963 const wxPGCell
* cell
= NULL
;
964 if ( selected
->HasCell(colIndex
) )
966 cell
= &selected
->GetCell(colIndex
);
967 if ( !cell
->HasText() && colIndex
== 0 )
968 text
= selected
->GetLabel();
974 text
= selected
->GetLabel();
976 cell
= &selected
->GetOrCreateCell(colIndex
);
979 if ( cell
&& cell
->HasText() )
980 text
= cell
->GetText();
982 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE
); // send event
984 m_selColumn
= colIndex
;
986 wxRect r
= GetEditorWidgetRect(selected
, m_selColumn
);
988 wxWindow
* tc
= GenerateEditorTextCtrl(r
.GetPosition(),
996 wxWindowID id
= tc
->GetId();
997 tc
->Connect(id
, wxEVT_COMMAND_TEXT_ENTER
,
998 wxCommandEventHandler(wxPropertyGrid::OnLabelEditorEnterPress
),
1000 tc
->Connect(id
, wxEVT_KEY_DOWN
,
1001 wxKeyEventHandler(wxPropertyGrid::OnLabelEditorKeyPress
),
1006 m_labelEditor
= wxStaticCast(tc
, wxTextCtrl
);
1007 m_labelEditorProperty
= selected
;
1010 // -----------------------------------------------------------------------
1013 wxPropertyGrid::OnLabelEditorEnterPress( wxCommandEvent
& WXUNUSED(event
) )
1015 DoEndLabelEdit(true);
1018 // -----------------------------------------------------------------------
1020 void wxPropertyGrid::OnLabelEditorKeyPress( wxKeyEvent
& event
)
1022 int keycode
= event
.GetKeyCode();
1024 if ( keycode
== WXK_ESCAPE
)
1026 DoEndLabelEdit(false);
1034 // -----------------------------------------------------------------------
1036 void wxPropertyGrid::DoEndLabelEdit( bool commit
, int selFlags
)
1038 if ( !m_labelEditor
)
1041 wxPGProperty
* prop
= m_labelEditorProperty
;
1046 if ( !(selFlags
& wxPG_SEL_DONT_SEND_EVENT
) )
1048 // wxPG_SEL_NOVALIDATE is passed correctly in selFlags
1049 if ( SendEvent( wxEVT_PG_LABEL_EDIT_ENDING
,
1050 prop
, NULL
, selFlags
,
1055 wxString text
= m_labelEditor
->GetValue();
1056 wxPGCell
* cell
= NULL
;
1057 if ( prop
->HasCell(m_selColumn
) )
1059 cell
= &prop
->GetCell(m_selColumn
);
1063 if ( m_selColumn
== 0 )
1064 prop
->SetLabel(text
);
1066 cell
= &prop
->GetOrCreateCell(m_selColumn
);
1070 cell
->SetText(text
);
1075 DestroyEditorWnd(m_labelEditor
);
1076 m_labelEditor
= NULL
;
1077 m_labelEditorProperty
= NULL
;
1082 // -----------------------------------------------------------------------
1084 void wxPropertyGrid::SetExtraStyle( long exStyle
)
1086 if ( exStyle
& wxPG_EX_ENABLE_TLP_TRACKING
)
1087 OnTLPChanging(::wxGetTopLevelParent(this));
1089 OnTLPChanging(NULL
);
1091 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
1093 #if defined(__WXMSW__)
1096 // Don't use WS_EX_COMPOSITED just now.
1099 if ( m_iFlags & wxPG_FL_IN_MANAGER )
1100 hWnd = (HWND)GetParent()->GetHWND();
1102 hWnd = (HWND)GetHWND();
1104 ::SetWindowLong( hWnd, GWL_EXSTYLE,
1105 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
1108 //#elif defined(__WXGTK20__)
1110 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
1111 // truly was double-buffered.
1112 if ( !this->IsDoubleBuffered() )
1114 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
1118 #if wxPG_DOUBLE_BUFFER
1119 delete m_doubleBuffer
;
1120 m_doubleBuffer
= NULL
;
1125 wxScrolledWindow::SetExtraStyle( exStyle
);
1127 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
1128 m_pState
->InitNonCatMode();
1130 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
1131 m_windowStyle
|= wxPG_TOOLTIPS
;
1134 wxPGGlobalVars
->m_extraStyle
= exStyle
;
1137 // -----------------------------------------------------------------------
1139 // returns the best acceptable minimal size
1140 wxSize
wxPropertyGrid::DoGetBestSize() const
1142 int lineHeight
= wxMax(15, m_lineHeight
);
1144 // don't make the grid too tall (limit height to 10 items) but don't
1145 // make it too small neither
1146 int numLines
= wxMin
1148 wxMax(m_pState
->m_properties
->GetChildCount(), 3),
1152 wxClientDC
dc(const_cast<wxPropertyGrid
*>(this));
1153 int width
= m_marginWidth
;
1154 for ( unsigned int i
= 0; i
< m_pState
->m_colWidths
.size(); i
++ )
1156 width
+= m_pState
->GetColumnFitWidth(dc
, m_pState
->DoGetRoot(), i
, true);
1159 const wxSize sz
= wxSize(width
, lineHeight
*numLines
+ 40);
1165 // -----------------------------------------------------------------------
1167 void wxPropertyGrid::OnTLPChanging( wxWindow
* newTLP
)
1169 if ( newTLP
== m_tlp
)
1172 wxLongLong currentTime
= ::wxGetLocalTimeMillis();
1175 // Parent changed so let's redetermine and re-hook the
1176 // correct top-level window.
1179 m_tlp
->Disconnect( wxEVT_CLOSE_WINDOW
,
1180 wxCloseEventHandler(wxPropertyGrid::OnTLPClose
),
1182 m_tlpClosed
= m_tlp
;
1183 m_tlpClosedTime
= currentTime
;
1188 // Only accept new tlp if same one was not just dismissed.
1189 if ( newTLP
!= m_tlpClosed
||
1190 m_tlpClosedTime
+250 < currentTime
)
1192 newTLP
->Connect( wxEVT_CLOSE_WINDOW
,
1193 wxCloseEventHandler(wxPropertyGrid::OnTLPClose
),
1206 // -----------------------------------------------------------------------
1208 void wxPropertyGrid::OnTLPClose( wxCloseEvent
& event
)
1210 // ClearSelection forces value validation/commit.
1211 if ( event
.CanVeto() && !DoClearSelection() )
1217 // Ok, it can close, set tlp pointer to NULL. Some other event
1218 // handler can of course veto the close, but our OnIdle() should
1219 // then be able to regain the tlp pointer.
1220 OnTLPChanging(NULL
);
1225 // -----------------------------------------------------------------------
1227 bool wxPropertyGrid::Reparent( wxWindowBase
*newParent
)
1229 OnTLPChanging((wxWindow
*)newParent
);
1231 bool res
= wxScrolledWindow::Reparent(newParent
);
1236 // -----------------------------------------------------------------------
1237 // wxPropertyGrid Font and Colour Methods
1238 // -----------------------------------------------------------------------
1240 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
1244 m_captionFont
= wxScrolledWindow::GetFont();
1246 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1247 m_subgroup_extramargin
= x
+ (x
/2);
1250 #if wxPG_USE_RENDERER_NATIVE
1251 m_iconWidth
= wxPG_ICON_WIDTH
;
1252 #elif wxPG_ICON_WIDTH
1254 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
1255 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
1256 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
1260 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
1261 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
1262 m_gutterWidth
= wxPG_GUTTER_MIN
;
1265 if ( vspacing
<= 1 ) vdiv
= 12;
1266 else if ( vspacing
>= 3 ) vdiv
= 3;
1268 m_spacingy
= m_fontHeight
/ vdiv
;
1269 if ( m_spacingy
< wxPG_YSPACING_MIN
)
1270 m_spacingy
= wxPG_YSPACING_MIN
;
1273 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
1274 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1276 m_captionFont
.SetWeight(wxBOLD
);
1277 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1279 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1282 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1283 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1286 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1288 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1289 RecalculateVirtualSize();
1291 InvalidateBestSize();
1294 // -----------------------------------------------------------------------
1296 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1302 // -----------------------------------------------------------------------
1304 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1305 int ga
= 1000, int ba
= 1000,
1306 bool forceDifferent
= false)
1313 // Recursion guard (allow 2 max)
1314 static int isinside
= 0;
1316 wxCHECK_MSG( isinside
< 3,
1318 wxT("wxPGAdjustColour should not be recursively called more than once") );
1323 int g
= src
.Green();
1326 if ( r2
>255 ) r2
= 255;
1327 else if ( r2
<0) r2
= 0;
1329 if ( g2
>255 ) g2
= 255;
1330 else if ( g2
<0) g2
= 0;
1332 if ( b2
>255 ) b2
= 255;
1333 else if ( b2
<0) b2
= 0;
1335 // Make sure they are somewhat different
1336 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1337 dst
= wxPGAdjustColour(src
,-(ra
*2));
1339 dst
= wxColour(r2
,g2
,b2
);
1341 // Recursion guard (allow 2 max)
1348 static int wxPGGetColAvg( const wxColour
& col
)
1350 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1354 void wxPropertyGrid::RegainColours()
1356 if ( !(m_coloursCustomized
& 0x0002) )
1358 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1360 // Make sure colour is dark enough
1362 int colDec
= wxPGGetColAvg(col
) - 230;
1364 int colDec
= wxPGGetColAvg(col
) - 200;
1367 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1370 m_categoryDefaultCell
.GetData()->SetBgCol(m_colCapBack
);
1373 if ( !(m_coloursCustomized
& 0x0001) )
1374 m_colMargin
= m_colCapBack
;
1376 if ( !(m_coloursCustomized
& 0x0004) )
1383 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1384 m_colCapFore
= capForeCol
;
1385 m_categoryDefaultCell
.GetData()->SetFgCol(capForeCol
);
1388 if ( !(m_coloursCustomized
& 0x0008) )
1390 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1391 m_colPropBack
= bgCol
;
1392 m_propertyDefaultCell
.GetData()->SetBgCol(bgCol
);
1395 if ( !(m_coloursCustomized
& 0x0010) )
1397 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1398 m_colPropFore
= fgCol
;
1399 m_propertyDefaultCell
.GetData()->SetFgCol(fgCol
);
1402 if ( !(m_coloursCustomized
& 0x0020) )
1403 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1405 if ( !(m_coloursCustomized
& 0x0040) )
1406 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1408 if ( !(m_coloursCustomized
& 0x0080) )
1409 m_colLine
= m_colCapBack
;
1411 if ( !(m_coloursCustomized
& 0x0100) )
1412 m_colDisPropFore
= m_colCapFore
;
1414 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1417 // -----------------------------------------------------------------------
1419 void wxPropertyGrid::ResetColours()
1421 m_coloursCustomized
= 0;
1428 // -----------------------------------------------------------------------
1430 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1432 // Must disable active editor.
1435 bool res
= wxScrolledWindow::SetFont( font
);
1436 if ( res
&& GetParent()) // may not have been Create()ed yet
1438 CalculateFontAndBitmapStuff( m_vspacing
);
1445 // -----------------------------------------------------------------------
1447 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1450 m_coloursCustomized
|= 0x80;
1454 // -----------------------------------------------------------------------
1456 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1459 m_coloursCustomized
|= 0x01;
1463 // -----------------------------------------------------------------------
1465 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1467 m_colPropBack
= col
;
1468 m_coloursCustomized
|= 0x08;
1470 m_propertyDefaultCell
.GetData()->SetBgCol(col
);
1475 // -----------------------------------------------------------------------
1477 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1479 m_colPropFore
= col
;
1480 m_coloursCustomized
|= 0x10;
1482 m_propertyDefaultCell
.GetData()->SetFgCol(col
);
1487 // -----------------------------------------------------------------------
1489 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1491 m_colEmptySpace
= col
;
1496 // -----------------------------------------------------------------------
1498 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1500 m_colDisPropFore
= col
;
1501 m_coloursCustomized
|= 0x100;
1505 // -----------------------------------------------------------------------
1507 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1510 m_coloursCustomized
|= 0x20;
1514 // -----------------------------------------------------------------------
1516 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1519 m_coloursCustomized
|= 0x40;
1523 // -----------------------------------------------------------------------
1525 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1528 m_coloursCustomized
|= 0x02;
1530 m_categoryDefaultCell
.GetData()->SetBgCol(col
);
1535 // -----------------------------------------------------------------------
1537 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1540 m_coloursCustomized
|= 0x04;
1542 m_categoryDefaultCell
.GetData()->SetFgCol(col
);
1547 // -----------------------------------------------------------------------
1548 // wxPropertyGrid property adding and removal
1549 // -----------------------------------------------------------------------
1551 void wxPropertyGrid::PrepareAfterItemsAdded()
1553 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1555 m_pState
->m_itemsAdded
= 0;
1557 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1558 Sort(wxPG_SORT_TOP_LEVEL_ONLY
);
1560 RecalculateVirtualSize();
1563 // -----------------------------------------------------------------------
1564 // wxPropertyGrid property operations
1565 // -----------------------------------------------------------------------
1567 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1569 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1573 bool changed
= false;
1575 // Is it inside collapsed section?
1576 if ( !p
->IsVisible() )
1579 wxPGProperty
* parent
= p
->GetParent();
1580 wxPGProperty
* grandparent
= parent
->GetParent();
1582 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1583 Expand( grandparent
);
1591 GetViewStart(&vx
,&vy
);
1592 vy
*=wxPG_PIXELS_PER_UNIT
;
1598 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1599 m_iFlags
|= wxPG_FL_SCROLLED
;
1602 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1604 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1605 m_iFlags
|= wxPG_FL_SCROLLED
;
1615 // -----------------------------------------------------------------------
1616 // wxPropertyGrid helper methods called by properties
1617 // -----------------------------------------------------------------------
1619 // Control font changer helper.
1620 void wxPropertyGrid::SetCurControlBoldFont()
1622 wxASSERT( m_wndEditor
);
1623 m_wndEditor
->SetFont( m_captionFont
);
1626 // -----------------------------------------------------------------------
1628 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1631 #if wxPG_SMALL_SCREEN
1632 // On small-screen devices, always show dialogs with default position and size.
1633 return wxDefaultPosition
;
1635 int splitterX
= GetSplitterPosition();
1639 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1641 ImprovedClientToScreen( &x
, &y
);
1643 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1644 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1651 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1661 new_y
= y
+ m_lineHeight
;
1663 return wxPoint(new_x
,new_y
);
1667 // -----------------------------------------------------------------------
1669 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1671 if ( src_str
.length() == 0 )
1677 bool prev_is_slash
= false;
1679 wxString::const_iterator i
= src_str
.begin();
1683 for ( ; i
!= src_str
.end(); ++i
)
1687 if ( a
!= wxS('\\') )
1689 if ( !prev_is_slash
)
1695 if ( a
== wxS('n') )
1698 dst_str
<< wxS('\n');
1700 dst_str
<< wxS('\n');
1703 else if ( a
== wxS('t') )
1704 dst_str
<< wxS('\t');
1708 prev_is_slash
= false;
1712 if ( prev_is_slash
)
1714 dst_str
<< wxS('\\');
1715 prev_is_slash
= false;
1719 prev_is_slash
= true;
1726 // -----------------------------------------------------------------------
1728 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1730 if ( src_str
.length() == 0 )
1736 wxString::const_iterator i
= src_str
.begin();
1737 wxUniChar prev_a
= wxS('\0');
1741 for ( ; i
!= src_str
.end(); ++i
)
1745 if ( a
>= wxS(' ') )
1747 // This surely is not something that requires an escape sequence.
1752 // This might need...
1753 if ( a
== wxS('\r') )
1755 // DOS style line end.
1756 // Already taken care below
1758 else if ( a
== wxS('\n') )
1759 // UNIX style line end.
1760 dst_str
<< wxS("\\n");
1761 else if ( a
== wxS('\t') )
1763 dst_str
<< wxS('\t');
1766 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1776 // -----------------------------------------------------------------------
1778 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1785 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1788 // -----------------------------------------------------------------------
1789 // wxPropertyGrid graphics related methods
1790 // -----------------------------------------------------------------------
1792 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1796 // Update everything inside the box
1797 wxRect r
= GetUpdateRegion().GetBox();
1799 dc
.SetPen(m_colEmptySpace
);
1800 dc
.SetBrush(m_colEmptySpace
);
1801 dc
.DrawRectangle(r
);
1804 // -----------------------------------------------------------------------
1806 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1807 wxPGProperty
* property
) const
1809 // Prepare rectangle to be used
1811 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1812 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1814 #if (wxPG_USE_RENDERER_NATIVE)
1816 #elif wxPG_ICON_WIDTH
1817 // Drawing expand/collapse button manually
1818 dc
.SetPen(m_colPropFore
);
1819 if ( property
->IsCategory() )
1820 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1822 dc
.SetBrush(m_colPropBack
);
1824 dc
.DrawRectangle( r
);
1825 int _y
= r
.y
+(m_iconWidth
/2);
1826 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1831 if ( property
->IsExpanded() )
1833 // wxRenderer functions are non-mutating in nature, so it
1834 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1835 // Hopefully this does not cause problems.
1836 #if (wxPG_USE_RENDERER_NATIVE)
1837 wxRendererNative::Get().DrawTreeItemButton(
1843 #elif wxPG_ICON_WIDTH
1852 #if (wxPG_USE_RENDERER_NATIVE)
1853 wxRendererNative::Get().DrawTreeItemButton(
1859 #elif wxPG_ICON_WIDTH
1860 int _x
= r
.x
+(m_iconWidth
/2);
1861 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1867 #if (wxPG_USE_RENDERER_NATIVE)
1869 #elif wxPG_ICON_WIDTH
1872 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1876 // -----------------------------------------------------------------------
1879 // This is the one called by OnPaint event handler and others.
1880 // topy and bottomy are already unscrolled (ie. physical)
1882 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1884 unsigned int bottomy
,
1885 const wxRect
* clipRect
)
1887 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1889 m_pState
->EnsureVirtualHeight();
1891 wxRect tempClipRect
;
1894 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1895 clipRect
= &tempClipRect
;
1898 // items added check
1899 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1901 int paintFinishY
= 0;
1903 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1906 bool isBuffered
= false;
1908 #if wxPG_DOUBLE_BUFFER
1909 wxMemoryDC
* bufferDC
= NULL
;
1911 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1913 if ( !m_doubleBuffer
)
1915 paintFinishY
= clipRect
->y
;
1920 bufferDC
= new wxMemoryDC();
1922 // If nothing was changed, then just copy from double-buffer
1923 bufferDC
->SelectObject( *m_doubleBuffer
);
1933 dc
.SetClippingRegion( *clipRect
);
1934 paintFinishY
= DoDrawItems( *dcPtr
, clipRect
, isBuffered
);
1937 #if wxPG_DOUBLE_BUFFER
1940 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1941 bufferDC
, 0, 0, wxCOPY
);
1942 dc
.DestroyClippingRegion(); // Is this really necessary?
1948 // Clear area beyond bottomY?
1949 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1951 dc
.SetPen(m_colEmptySpace
);
1952 dc
.SetBrush(m_colEmptySpace
);
1953 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1957 // -----------------------------------------------------------------------
1959 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1960 const wxRect
* clipRect
,
1961 bool isBuffered
) const
1963 const wxPGProperty
* firstItem
;
1964 const wxPGProperty
* lastItem
;
1966 firstItem
= DoGetItemAtY(clipRect
->y
);
1967 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1970 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1972 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1975 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1976 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1978 int lh
= m_lineHeight
;
1981 int lastItemBottomY
;
1983 firstItemTopY
= clipRect
->y
;
1984 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1986 // Align y coordinates to item boundaries
1987 firstItemTopY
-= firstItemTopY
% lh
;
1988 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1989 lastItemBottomY
-= 1;
1991 // Entire range outside scrolled, visible area?
1992 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1995 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1999 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
2000 firstItem->GetLabel().c_str(),
2001 lastItem->GetLabel().c_str(),
2002 (int)(lastItemBottomY - firstItemTopY),
2004 (unsigned long)clipRect );
2009 long windowStyle
= m_windowStyle
;
2015 // With wxPG_DOUBLE_BUFFER, do double buffering
2016 // - buffer's y = 0, so align cliprect and coordinates to that
2018 #if wxPG_DOUBLE_BUFFER
2024 xRelMod
= clipRect
->x
;
2025 yRelMod
= clipRect
->y
;
2028 // clipRect conversion
2033 firstItemTopY
-= yRelMod
;
2034 lastItemBottomY
-= yRelMod
;
2037 wxUnusedVar(isBuffered
);
2040 int x
= m_marginWidth
- xRelMod
;
2042 wxFont normalFont
= GetFont();
2044 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) != 0;
2046 bool isPgEnabled
= IsEnabled();
2049 // Prepare some pens and brushes that are often changed to.
2052 wxBrush
marginBrush(m_colMargin
);
2053 wxPen
marginPen(m_colMargin
);
2054 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
2055 wxPen
linepen(m_colLine
,1,wxSOLID
);
2057 wxColour selBackCol
;
2059 selBackCol
= m_colSelBack
;
2061 selBackCol
= m_colMargin
;
2063 // pen that has same colour as text
2064 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
2067 // Clear margin with background colour
2069 dc
.SetBrush( marginBrush
);
2070 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2072 dc
.SetPen( *wxTRANSPARENT_PEN
);
2073 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2076 const wxPGProperty
* firstSelected
= GetSelection();
2077 const wxPropertyGridPageState
* state
= m_pState
;
2079 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2080 bool wasSelectedPainted
= false;
2083 // TODO: Only render columns that are within clipping region.
2085 dc
.SetFont(normalFont
);
2087 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2088 int endScanBottomY
= lastItemBottomY
+ lh
;
2089 int y
= firstItemTopY
;
2092 // Pregenerate list of visible properties.
2093 wxArrayPGProperty visPropArray
;
2094 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2096 for ( ; !it
.AtEnd(); it
.Next() )
2098 const wxPGProperty
* p
= *it
;
2100 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2102 visPropArray
.push_back((wxPGProperty
*)p
);
2104 if ( y
> endScanBottomY
)
2111 visPropArray
.push_back(NULL
);
2113 wxPGProperty
* nextP
= visPropArray
[0];
2115 int gridWidth
= state
->m_width
;
2118 for ( unsigned int arrInd
=1;
2119 nextP
&& y
<= lastItemBottomY
;
2122 wxPGProperty
* p
= nextP
;
2123 nextP
= visPropArray
[arrInd
];
2125 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2126 int textMarginHere
= x
;
2127 int renderFlags
= 0;
2129 int greyDepth
= m_marginWidth
;
2130 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2131 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2133 int greyDepthX
= greyDepth
- xRelMod
;
2135 // Use basic depth if in non-categoric mode and parent is base array.
2136 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2138 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2141 // Paint margin area
2142 dc
.SetBrush(marginBrush
);
2143 dc
.SetPen(marginPen
);
2144 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2146 dc
.SetPen( linepen
);
2151 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2157 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
2159 sx
+= state
->m_colWidths
[si
];
2160 dc
.DrawLine( sx
, y
, sx
, y2
);
2163 // Horizontal Line, below
2164 // (not if both this and next is category caption)
2165 if ( p
->IsCategory() &&
2166 nextP
&& nextP
->IsCategory() )
2167 dc
.SetPen(m_colCapBack
);
2169 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2172 // Need to override row colours?
2176 bool isSelected
= state
->DoIsPropertySelected(p
);
2180 // Disabled may get different colour.
2181 if ( !p
->IsEnabled() )
2183 renderFlags
|= wxPGCellRenderer::Disabled
|
2184 wxPGCellRenderer::DontUseCellFgCol
;
2185 rowFgCol
= m_colDisPropFore
;
2190 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2191 if ( p
== firstSelected
)
2192 wasSelectedPainted
= true;
2195 renderFlags
|= wxPGCellRenderer::Selected
;
2197 if ( !p
->IsCategory() )
2199 renderFlags
|= wxPGCellRenderer::DontUseCellFgCol
|
2200 wxPGCellRenderer::DontUseCellBgCol
;
2202 if ( reallyFocused
&& p
== firstSelected
)
2204 rowFgCol
= m_colSelFore
;
2205 rowBgCol
= selBackCol
;
2207 else if ( isPgEnabled
)
2209 rowFgCol
= m_colPropFore
;
2210 if ( p
== firstSelected
)
2211 rowBgCol
= m_colMargin
;
2213 rowBgCol
= selBackCol
;
2217 rowFgCol
= m_colDisPropFore
;
2218 rowBgCol
= selBackCol
;
2225 if ( rowBgCol
.IsOk() )
2226 rowBgBrush
= wxBrush(rowBgCol
);
2228 if ( HasInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
) )
2229 renderFlags
= renderFlags
& ~wxPGCellRenderer::DontUseCellColours
;
2232 // Fill additional margin area with background colour of first cell
2233 if ( greyDepthX
< textMarginHere
)
2235 if ( !(renderFlags
& wxPGCellRenderer::DontUseCellBgCol
) )
2237 wxPGCell
& cell
= p
->GetCell(0);
2238 rowBgCol
= cell
.GetBgCol();
2239 rowBgBrush
= wxBrush(rowBgCol
);
2241 dc
.SetBrush(rowBgBrush
);
2242 dc
.SetPen(rowBgCol
);
2243 dc
.DrawRectangle(greyDepthX
+1, y
,
2244 textMarginHere
-greyDepthX
, lh
-1);
2247 bool fontChanged
= false;
2249 // Expander button rectangle
2250 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2255 if ( p
->IsCategory() )
2257 // Captions have their cell areas merged as one
2258 dc
.SetFont(m_captionFont
);
2260 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2262 if ( renderFlags
& wxPGCellRenderer::DontUseCellBgCol
)
2264 dc
.SetBrush(rowBgBrush
);
2265 dc
.SetPen(rowBgCol
);
2268 if ( renderFlags
& wxPGCellRenderer::DontUseCellFgCol
)
2270 dc
.SetTextForeground(rowFgCol
);
2273 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
2274 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
2277 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2278 DrawExpanderButton( dc
, butRect
, p
);
2282 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
2284 dc
.SetFont(m_captionFont
);
2290 int nextCellWidth
= state
->m_colWidths
[0] -
2291 (greyDepthX
- m_marginWidth
);
2292 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
2293 int textXAdd
= textMarginHere
- greyDepthX
;
2295 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
2297 cellRect
.width
= nextCellWidth
- 1;
2299 wxWindow
* cellEditor
= NULL
;
2300 int cellRenderFlags
= renderFlags
;
2302 // Tree Item Button (must be drawn before clipping is set up)
2303 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2304 DrawExpanderButton( dc
, butRect
, p
);
2307 if ( isSelected
&& (ci
== 1 || ci
== m_selColumn
) )
2309 if ( p
== firstSelected
)
2311 if ( ci
== 1 && m_wndEditor
)
2312 cellEditor
= m_wndEditor
;
2313 else if ( ci
== m_selColumn
&& m_labelEditor
)
2314 cellEditor
= m_labelEditor
;
2319 wxColour editorBgCol
=
2320 cellEditor
->GetBackgroundColour();
2321 dc
.SetBrush(editorBgCol
);
2322 dc
.SetPen(editorBgCol
);
2323 dc
.SetTextForeground(m_colPropFore
);
2324 dc
.DrawRectangle(cellRect
);
2326 if ( m_dragStatus
!= 0 ||
2327 (m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2332 dc
.SetBrush(m_colPropBack
);
2333 dc
.SetPen(m_colPropBack
);
2334 dc
.SetTextForeground(m_colDisPropFore
);
2335 if ( p
->IsEnabled() )
2336 dc
.SetTextForeground(rowFgCol
);
2338 dc
.SetTextForeground(m_colDisPropFore
);
2343 if ( renderFlags
& wxPGCellRenderer::DontUseCellBgCol
)
2345 dc
.SetBrush(rowBgBrush
);
2346 dc
.SetPen(rowBgCol
);
2349 if ( renderFlags
& wxPGCellRenderer::DontUseCellFgCol
)
2351 dc
.SetTextForeground(rowFgCol
);
2355 dc
.SetClippingRegion(cellRect
);
2357 cellRect
.x
+= textXAdd
;
2358 cellRect
.width
-= textXAdd
;
2363 wxPGCellRenderer
* renderer
;
2364 int cmnVal
= p
->GetCommonValue();
2365 if ( cmnVal
== -1 || ci
!= 1 )
2367 renderer
= p
->GetCellRenderer(ci
);
2368 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1,
2373 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2374 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1,
2379 cellX
+= state
->m_colWidths
[ci
];
2380 if ( ci
< (state
->m_colWidths
.size()-1) )
2381 nextCellWidth
= state
->m_colWidths
[ci
+1];
2383 dc
.DestroyClippingRegion(); // Is this really necessary?
2389 dc
.SetFont(normalFont
);
2394 // Refresh editor controls (seems not needed on msw)
2395 // NOTE: This code is mandatory for GTK!
2396 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2397 if ( wasSelectedPainted
)
2400 m_wndEditor
->Refresh();
2402 m_wndEditor2
->Refresh();
2409 // -----------------------------------------------------------------------
2411 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2415 if ( m_width
< 10 || m_height
< 10 ||
2416 !m_pState
->m_properties
->GetChildCount() ||
2418 return wxRect(0,0,0,0);
2423 // Return rect which encloses the given property range
2425 int visTop
= p1
->GetY();
2428 visBottom
= p2
->GetY() + m_lineHeight
;
2430 visBottom
= m_height
+ visTop
;
2432 // If seleced property is inside the range, we'll extend the range to include
2434 wxPGProperty
* selected
= GetSelection();
2437 int selectedY
= selected
->GetY();
2438 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2440 wxWindow
* editor
= GetEditorControl();
2443 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2444 if ( visBottom2
> visBottom
)
2445 visBottom
= visBottom2
;
2450 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2453 // -----------------------------------------------------------------------
2455 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2460 if ( m_pState
->m_itemsAdded
)
2461 PrepareAfterItemsAdded();
2463 wxRect r
= GetPropertyRect(p1
, p2
);
2466 m_canvas
->RefreshRect(r
);
2470 // -----------------------------------------------------------------------
2472 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2474 if ( m_pState
->DoIsPropertySelected(p
) )
2476 // NB: We must copy the selection.
2477 wxArrayPGProperty selection
= m_pState
->m_selection
;
2478 DoSetSelection(selection
, wxPG_SEL_FORCE
);
2481 DrawItemAndChildren(p
);
2484 // -----------------------------------------------------------------------
2486 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2491 // Draw item, children, and parent too, if it is not category
2492 wxPGProperty
* parent
= p
->GetParent();
2495 !parent
->IsCategory() &&
2496 parent
->GetParent() )
2499 parent
= parent
->GetParent();
2502 DrawItemAndChildren(p
);
2505 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2507 wxCHECK_RET( p
, wxT("invalid property id") );
2509 // Do not draw if in non-visible page
2510 if ( p
->GetParentState() != m_pState
)
2513 // do not draw a single item if multiple pending
2514 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2517 // Update child control.
2518 wxPGProperty
* selected
= GetSelection();
2519 if ( selected
&& selected
->GetParent() == p
)
2522 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2524 DrawItems(p
, lastDrawn
);
2527 // -----------------------------------------------------------------------
2529 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2530 const wxRect
*rect
)
2532 PrepareAfterItemsAdded();
2534 wxWindow::Refresh(false);
2536 // TODO: Coordinate translation
2537 m_canvas
->Refresh(false, rect
);
2539 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2540 // I think this really helps only GTK+1.2
2541 if ( m_wndEditor
) m_wndEditor
->Refresh();
2542 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2546 // -----------------------------------------------------------------------
2547 // wxPropertyGrid global operations
2548 // -----------------------------------------------------------------------
2550 void wxPropertyGrid::Clear()
2552 m_pState
->DoClear();
2558 RecalculateVirtualSize();
2560 // Need to clear some area at the end
2562 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2565 // -----------------------------------------------------------------------
2567 bool wxPropertyGrid::EnableCategories( bool enable
)
2574 // Enable categories
2577 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2582 // Disable categories
2584 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2587 if ( !m_pState
->EnableCategories(enable
) )
2592 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2594 m_pState
->m_itemsAdded
= 1; // force
2595 PrepareAfterItemsAdded();
2599 m_pState
->m_itemsAdded
= 1;
2601 // No need for RecalculateVirtualSize() here - it is already called in
2602 // wxPropertyGridPageState method above.
2609 // -----------------------------------------------------------------------
2611 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2613 wxASSERT( pNewState
);
2614 wxASSERT( pNewState
->GetGrid() );
2616 if ( pNewState
== m_pState
)
2619 wxArrayPGProperty oldSelection
= m_pState
->m_selection
;
2621 // Call ClearSelection() instead of DoClearSelection()
2622 // so that selection clear events are not sent.
2625 m_pState
->m_selection
= oldSelection
;
2627 bool orig_mode
= m_pState
->IsInNonCatMode();
2628 bool new_state_mode
= pNewState
->IsInNonCatMode();
2630 m_pState
= pNewState
;
2633 int pgWidth
= GetClientSize().x
;
2634 if ( HasVirtualWidth() )
2636 int minWidth
= pgWidth
;
2637 if ( pNewState
->m_width
< minWidth
)
2639 pNewState
->m_width
= minWidth
;
2640 pNewState
->CheckColumnWidths();
2646 // Just in case, fully re-center splitter
2647 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2648 pNewState
->m_fSplitterX
= -1.0;
2650 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2655 // If necessary, convert state to correct mode.
2656 if ( orig_mode
!= new_state_mode
)
2658 // This should refresh as well.
2659 EnableCategories( orig_mode
?false:true );
2661 else if ( !m_frozen
)
2663 // Refresh, if not frozen.
2664 m_pState
->PrepareAfterItemsAdded();
2666 // Reselect (Use SetSelection() instead of Do-variant so that
2667 // events won't be sent).
2668 SetSelection(m_pState
->m_selection
);
2670 RecalculateVirtualSize(0);
2674 m_pState
->m_itemsAdded
= 1;
2677 // -----------------------------------------------------------------------
2679 // Call to SetSplitterPosition will always disable splitter auto-centering
2680 // if parent window is shown.
2681 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2683 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2686 wxPropertyGridPageState
* state
= m_pState
;
2688 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2692 if ( GetSelection() )
2693 CorrectEditorWidgetSizeX();
2699 // -----------------------------------------------------------------------
2701 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2703 SetSplitterPosition( m_width
/2, true );
2704 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2705 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2708 // -----------------------------------------------------------------------
2709 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2710 // -----------------------------------------------------------------------
2712 // Returns nearest paint visible property (such that will be painted unless
2713 // window is scrolled or resized). If given property is paint visible, then
2714 // it itself will be returned
2715 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2717 int vx
,vy1
;// Top left corner of client
2718 GetViewStart(&vx
,&vy1
);
2719 vy1
*= wxPG_PIXELS_PER_UNIT
;
2721 int vy2
= vy1
+ m_height
;
2722 int propY
= p
->GetY2(m_lineHeight
);
2724 if ( (propY
+ m_lineHeight
) < vy1
)
2727 return DoGetItemAtY( vy1
);
2729 else if ( propY
> vy2
)
2732 return DoGetItemAtY( vy2
);
2735 // Itself paint visible
2740 // -----------------------------------------------------------------------
2741 // Methods related to change in value, value modification and sending events
2742 // -----------------------------------------------------------------------
2744 // commits any changes in editor of selected property
2745 // return true if validation did not fail
2746 // flags are same as with DoSelectProperty
2747 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2749 // Committing already?
2750 if ( m_inCommitChangesFromEditor
)
2753 // Don't do this if already processing editor event. It might
2754 // induce recursive dialogs and crap like that.
2755 if ( m_iFlags
& wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
)
2757 if ( m_inDoPropertyChanged
)
2763 wxPGProperty
* selected
= GetSelection();
2766 IsEditorsValueModified() &&
2767 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2770 m_inCommitChangesFromEditor
= 1;
2772 wxVariant
variant(selected
->GetValueRef());
2773 bool valueIsPending
= false;
2775 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2776 // due to another window getting focus
2777 wxWindow
* oldFocus
= m_curFocused
;
2779 bool validationFailure
= false;
2780 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2782 m_chgInfo_changedProperty
= NULL
;
2784 // If truly modified, schedule value as pending.
2785 if ( selected
->GetEditorClass()->
2786 GetValueFromControl( variant
,
2788 GetEditorControl() ) )
2790 if ( DoEditorValidate() &&
2791 PerformValidation(selected
, variant
) )
2793 valueIsPending
= true;
2797 validationFailure
= true;
2802 EditorsValueWasNotModified();
2807 m_inCommitChangesFromEditor
= 0;
2809 if ( validationFailure
&& !forceSuccess
)
2813 oldFocus
->SetFocus();
2814 m_curFocused
= oldFocus
;
2817 res
= OnValidationFailure(selected
, variant
);
2819 // Now prevent further validation failure messages
2822 EditorsValueWasNotModified();
2823 OnValidationFailureReset(selected
);
2826 else if ( valueIsPending
)
2828 DoPropertyChanged( selected
, flags
);
2829 EditorsValueWasNotModified();
2838 // -----------------------------------------------------------------------
2840 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
,
2844 // Runs all validation functionality.
2845 // Returns true if value passes all tests.
2848 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2850 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2852 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2857 // Adapt list to child values, if necessary
2858 wxVariant listValue
= pendingValue
;
2859 wxVariant
* pPendingValue
= &pendingValue
;
2860 wxVariant
* pList
= NULL
;
2862 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2863 // string value, then we need treat as it was changed instead
2864 // (or, in addition, as is the case with composite string parent).
2865 // This includes creating list variant for child values.
2867 wxPGProperty
* pwc
= p
->GetParent();
2868 wxPGProperty
* changedProperty
= p
;
2869 wxPGProperty
* baseChangedProperty
= changedProperty
;
2870 wxVariant bcpPendingList
;
2872 listValue
= pendingValue
;
2873 listValue
.SetName(p
->GetBaseName());
2876 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2878 wxVariantList tempList
;
2879 wxVariant
lv(tempList
, pwc
->GetBaseName());
2880 lv
.Append(listValue
);
2882 pPendingValue
= &listValue
;
2884 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2886 baseChangedProperty
= pwc
;
2887 bcpPendingList
= lv
;
2890 changedProperty
= pwc
;
2891 pwc
= pwc
->GetParent();
2895 wxPGProperty
* evtChangingProperty
= changedProperty
;
2897 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2899 value
= *pPendingValue
;
2903 // Convert list to child values
2904 pList
= pPendingValue
;
2905 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2908 wxVariant evtChangingValue
= value
;
2910 if ( flags
& SendEvtChanging
)
2912 // FIXME: After proper ValueToString()s added, remove
2913 // this. It is just a temporary fix, as evt_changing
2914 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2915 // (unless it is selected, and textctrl editor is open).
2916 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2918 evtChangingProperty
= baseChangedProperty
;
2919 if ( evtChangingProperty
!= p
)
2921 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2925 evtChangingValue
= pendingValue
;
2929 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2931 if ( changedProperty
== GetSelection() )
2933 wxWindow
* editor
= GetEditorControl();
2934 wxASSERT( editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2935 evtChangingValue
= wxStaticCast(editor
, wxTextCtrl
)->GetValue();
2939 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2944 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2945 m_chgInfo_changedProperty
= changedProperty
;
2946 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2947 m_chgInfo_pendingValue
= value
;
2950 m_chgInfo_valueList
= *pList
;
2952 m_chgInfo_valueList
.MakeNull();
2954 // If changedProperty is not property which value was edited,
2955 // then call wxPGProperty::ValidateValue() for that as well.
2956 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2958 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2962 if ( flags
& SendEvtChanging
)
2964 // SendEvent returns true if event was vetoed
2965 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
,
2966 &evtChangingValue
) )
2970 if ( flags
& IsStandaloneValidation
)
2972 // If called in 'generic' context, we need to reset
2973 // m_chgInfo_changedProperty and write back translated value.
2974 m_chgInfo_changedProperty
= NULL
;
2975 pendingValue
= value
;
2981 // -----------------------------------------------------------------------
2983 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2985 if ( !msg
.length() )
2989 if ( !wxPGGlobalVars
->m_offline
)
2991 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2994 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2997 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
3000 pStatusBar
->SetStatusText(msg
);
3008 ::wxMessageBox(msg
, wxT("Property Error"));
3011 // -----------------------------------------------------------------------
3013 bool wxPropertyGrid::OnValidationFailure( wxPGProperty
* property
,
3014 wxVariant
& invalidValue
)
3016 wxWindow
* editor
= GetEditorControl();
3018 // First call property's handler
3019 property
->OnValidationFailure(invalidValue
);
3021 bool res
= DoOnValidationFailure(property
, invalidValue
);
3024 // For non-wxTextCtrl editors, we do need to revert the value
3025 if ( !editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) &&
3026 property
== GetSelection() )
3028 property
->GetEditorClass()->UpdateControl(property
, editor
);
3031 property
->SetFlag(wxPG_PROP_INVALID_VALUE
);
3036 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
3038 int vfb
= m_validationInfo
.m_failureBehavior
;
3040 if ( vfb
& wxPG_VFB_BEEP
)
3043 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
3044 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
3046 unsigned int colCount
= m_pState
->GetColumnCount();
3048 // We need backup marked property's cells
3049 m_propCellsBackup
= property
->m_cells
;
3051 wxColour vfbFg
= *wxWHITE
;
3052 wxColour vfbBg
= *wxRED
;
3054 property
->EnsureCells(colCount
);
3056 for ( unsigned int i
=0; i
<colCount
; i
++ )
3058 wxPGCell
& cell
= property
->m_cells
[i
];
3059 cell
.SetFgCol(vfbFg
);
3060 cell
.SetBgCol(vfbBg
);
3063 DrawItemAndChildren(property
);
3065 if ( property
== GetSelection() )
3067 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
3069 wxWindow
* editor
= GetEditorControl();
3072 editor
->SetForegroundColour(vfbFg
);
3073 editor
->SetBackgroundColour(vfbBg
);
3078 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
3080 wxString msg
= m_validationInfo
.m_failureMessage
;
3082 if ( !msg
.length() )
3083 msg
= wxT("You have entered invalid value. Press ESC to cancel editing.");
3085 DoShowPropertyError(property
, msg
);
3088 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
3091 // -----------------------------------------------------------------------
3093 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
3095 int vfb
= m_validationInfo
.m_failureBehavior
;
3097 if ( vfb
& wxPG_VFB_MARK_CELL
)
3100 property
->m_cells
= m_propCellsBackup
;
3102 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
3104 if ( property
== GetSelection() && GetEditorControl() )
3106 // Calling this will recreate the control, thus resetting its colour
3107 RefreshProperty(property
);
3111 DrawItemAndChildren(property
);
3116 // -----------------------------------------------------------------------
3118 // flags are same as with DoSelectProperty
3119 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
3121 if ( m_inDoPropertyChanged
)
3124 wxWindow
* editor
= GetEditorControl();
3125 wxPGProperty
* selected
= GetSelection();
3127 m_pState
->m_anyModified
= 1;
3129 m_inDoPropertyChanged
= 1;
3131 // Maybe need to update control
3132 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
3134 // These values were calculated in PerformValidation()
3135 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
3136 wxVariant value
= m_chgInfo_pendingValue
;
3138 wxPGProperty
* topPaintedProperty
= changedProperty
;
3140 while ( !topPaintedProperty
->IsCategory() &&
3141 !topPaintedProperty
->IsRoot() )
3143 topPaintedProperty
= topPaintedProperty
->GetParent();
3146 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
3148 // Set as Modified (not if dragging just began)
3149 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
3151 p
->m_flags
|= wxPG_PROP_MODIFIED
;
3152 if ( p
== selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3155 SetCurControlBoldFont();
3161 // Propagate updates to parent(s)
3163 wxPGProperty
* prevPwc
= NULL
;
3165 while ( prevPwc
!= topPaintedProperty
)
3167 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3169 if ( pwc
== selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3172 SetCurControlBoldFont();
3176 pwc
= pwc
->GetParent();
3179 // Draw the actual property
3180 DrawItemAndChildren( topPaintedProperty
);
3183 // If value was set by wxPGProperty::OnEvent, then update the editor
3185 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3191 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3192 if ( m_wndEditor
) m_wndEditor
->Refresh();
3193 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3198 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3200 // If top parent has composite string value, then send to child parents,
3201 // starting from baseChangedProperty.
3202 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3204 pwc
= m_chgInfo_baseChangedProperty
;
3206 while ( pwc
!= changedProperty
)
3208 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
);
3209 pwc
= pwc
->GetParent();
3213 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
);
3215 m_inDoPropertyChanged
= 0;
3220 // -----------------------------------------------------------------------
3222 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3224 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3226 m_chgInfo_changedProperty
= NULL
;
3228 if ( PerformValidation(p
, newValue
) )
3230 DoPropertyChanged(p
);
3235 OnValidationFailure(p
, newValue
);
3241 // -----------------------------------------------------------------------
3243 wxVariant
wxPropertyGrid::GetUncommittedPropertyValue()
3245 wxPGProperty
* prop
= GetSelectedProperty();
3248 return wxNullVariant
;
3250 wxTextCtrl
* tc
= GetEditorTextCtrl();
3251 wxVariant value
= prop
->GetValue();
3253 if ( !tc
|| !IsEditorsValueModified() )
3256 if ( !prop
->StringToValue(value
, tc
->GetValue()) )
3259 if ( !PerformValidation(prop
, value
, IsStandaloneValidation
) )
3260 return prop
->GetValue();
3265 // -----------------------------------------------------------------------
3267 // Runs wxValidator for the selected property
3268 bool wxPropertyGrid::DoEditorValidate()
3273 // -----------------------------------------------------------------------
3275 void wxPropertyGrid::HandleCustomEditorEvent( wxEvent
&event
)
3277 wxPGProperty
* selected
= GetSelection();
3279 // Somehow, event is handled after property has been deselected.
3280 // Possibly, but very rare.
3281 if ( !selected
|| selected
->HasFlag(wxPG_PROP_BEING_DELETED
) )
3284 if ( m_iFlags
& wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
)
3287 wxVariant
pendingValue(selected
->GetValueRef());
3288 wxWindow
* wnd
= GetEditorControl();
3289 wxWindow
* editorWnd
= wxDynamicCast(event
.GetEventObject(), wxWindow
);
3291 bool wasUnspecified
= selected
->IsValueUnspecified();
3292 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3293 bool valueIsPending
= false;
3295 m_chgInfo_changedProperty
= NULL
;
3297 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
3300 // Filter out excess wxTextCtrl modified events
3301 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
3303 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3305 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3307 wxString newTcValue
= tc
->GetValue();
3308 if ( m_prevTcValue
== newTcValue
)
3311 m_prevTcValue
= newTcValue
;
3314 SetInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
);
3316 bool validationFailure
= false;
3317 bool buttonWasHandled
= false;
3320 // Try common button handling
3321 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3323 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3327 buttonWasHandled
= true;
3328 // Store as res2, as previously (and still currently alternatively)
3329 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3330 // in wxPGProperty::OnEvent().
3331 adapter
->ShowDialog( this, selected
);
3336 if ( !buttonWasHandled
)
3338 if ( wnd
|| m_wndEditor2
)
3340 // First call editor class' event handler.
3341 const wxPGEditor
* editor
= selected
->GetEditorClass();
3343 if ( editor
->OnEvent( this, selected
, editorWnd
, event
) )
3345 // If changes, validate them
3346 if ( DoEditorValidate() )
3348 if ( editor
->GetValueFromControl( pendingValue
,
3351 valueIsPending
= true;
3355 validationFailure
= true;
3360 // Then the property's custom handler (must be always called, unless
3361 // validation failed).
3362 if ( !validationFailure
)
3363 buttonWasHandled
= selected
->OnEvent( this, editorWnd
, event
);
3366 // SetValueInEvent(), as called in one of the functions referred above
3367 // overrides editor's value.
3368 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3370 valueIsPending
= true;
3371 pendingValue
= m_changeInEventValue
;
3372 selFlags
|= wxPG_SEL_DIALOGVAL
;
3375 if ( !validationFailure
&& valueIsPending
)
3376 if ( !PerformValidation(selected
, pendingValue
) )
3377 validationFailure
= true;
3379 if ( validationFailure
)
3381 OnValidationFailure(selected
, pendingValue
);
3383 else if ( valueIsPending
)
3385 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3387 DoPropertyChanged(selected
, selFlags
);
3388 EditorsValueWasNotModified();
3390 // Regardless of editor type, unfocus editor on
3391 // text-editing related enter press.
3392 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3399 // No value after all
3401 // Regardless of editor type, unfocus editor on
3402 // text-editing related enter press.
3403 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3408 // Let unhandled button click events go to the parent
3409 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3411 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3412 GetEventHandler()->AddPendingEvent(evt
);
3416 ClearInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
);
3419 // -----------------------------------------------------------------------
3420 // wxPropertyGrid editor control helper methods
3421 // -----------------------------------------------------------------------
3423 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3425 int itemy
= p
->GetY2(m_lineHeight
);
3427 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3428 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3429 int imageOffset
= 0;
3431 // TODO: If custom image detection changes from current, change this.
3432 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
)
3434 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3435 int iw
= p
->OnMeasureImage().x
;
3437 iw
= wxPG_CUSTOM_IMAGE_WIDTH
;
3438 imageOffset
= p
->GetImageOffset(iw
);
3443 splitterX
+imageOffset
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3445 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-imageOffset
-1,
3450 // -----------------------------------------------------------------------
3452 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3454 wxSize sz
= GetImageSize(p
, item
);
3455 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3456 wxPG_CUSTOM_IMAGE_SPACINGY
,
3461 // return size of custom paint image
3462 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3464 // If called with NULL property, then return default image
3465 // size for properties that use image.
3467 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3469 wxSize cis
= p
->OnMeasureImage(item
);
3471 int choiceCount
= p
->m_choices
.GetCount();
3472 int comVals
= p
->GetDisplayedCommonValueCount();
3473 if ( item
>= choiceCount
&& comVals
> 0 )
3475 unsigned int cvi
= item
-choiceCount
;
3476 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3478 else if ( item
>= 0 && choiceCount
== 0 )
3479 return wxSize(0, 0);
3484 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3489 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3496 // -----------------------------------------------------------------------
3498 // takes scrolling into account
3499 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3502 GetViewStart(&vx
,&vy
);
3503 vy
*=wxPG_PIXELS_PER_UNIT
;
3504 vx
*=wxPG_PIXELS_PER_UNIT
;
3507 ClientToScreen( px
, py
);
3510 // -----------------------------------------------------------------------
3512 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3515 GetViewStart(&pt2
.x
,&pt2
.y
);
3516 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3517 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3521 return m_pState
->HitTest(pt2
);
3524 // -----------------------------------------------------------------------
3526 // custom set cursor
3527 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3529 if ( type
== m_curcursor
&& !override
) return;
3531 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3533 if ( type
== wxCURSOR_SIZEWE
)
3534 cursor
= m_cursorSizeWE
;
3536 m_canvas
->SetCursor( *cursor
);
3541 // -----------------------------------------------------------------------
3542 // wxPropertyGrid property selection, editor creation
3543 // -----------------------------------------------------------------------
3546 // This class forwards events from property editor controls to wxPropertyGrid.
3547 class wxPropertyGridEditorEventForwarder
: public wxEvtHandler
3550 wxPropertyGridEditorEventForwarder( wxPropertyGrid
* propGrid
)
3551 : wxEvtHandler(), m_propGrid(propGrid
)
3555 virtual ~wxPropertyGridEditorEventForwarder()
3560 bool ProcessEvent( wxEvent
& event
)
3565 m_propGrid
->HandleCustomEditorEvent(event
);
3567 return wxEvtHandler::ProcessEvent(event
);
3570 wxPropertyGrid
* m_propGrid
;
3573 // Setups event handling for child control
3574 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3576 wxWindowID id
= argWnd
->GetId();
3578 if ( argWnd
== m_wndEditor
)
3580 argWnd
->Connect(id
, wxEVT_MOTION
,
3581 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3583 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3584 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3586 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3587 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3589 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3590 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3592 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3593 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3595 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3596 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3600 wxPropertyGridEditorEventForwarder
* forwarder
;
3601 forwarder
= new wxPropertyGridEditorEventForwarder(this);
3602 argWnd
->PushEventHandler(forwarder
);
3604 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3605 wxCharEventHandler(wxPropertyGrid::OnChildKeyDown
),
3609 void wxPropertyGrid::DestroyEditorWnd( wxWindow
* wnd
)
3616 // Do not free editors immediately (for sake of processing events)
3617 wxPendingDelete
.Append(wnd
);
3620 void wxPropertyGrid::FreeEditors()
3623 // Return focus back to canvas from children (this is required at least for
3624 // GTK+, which, unlike Windows, clears focus when control is destroyed
3625 // instead of moving it to closest parent).
3626 wxWindow
* focus
= wxWindow::FindFocus();
3629 wxWindow
* parent
= focus
->GetParent();
3632 if ( parent
== m_canvas
)
3637 parent
= parent
->GetParent();
3641 // Do not free editors immediately if processing events
3644 wxEvtHandler
* handler
= m_wndEditor2
->PopEventHandler(false);
3645 m_wndEditor2
->Hide();
3646 wxPendingDelete
.Append( handler
);
3647 DestroyEditorWnd(m_wndEditor2
);
3648 m_wndEditor2
= NULL
;
3653 wxEvtHandler
* handler
= m_wndEditor
->PopEventHandler(false);
3654 m_wndEditor
->Hide();
3655 wxPendingDelete
.Append( handler
);
3656 DestroyEditorWnd(m_wndEditor
);
3661 // Call with NULL to de-select property
3662 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3667 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3668 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3672 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3676 if ( m_inDoSelectProperty
)
3679 m_inDoSelectProperty
= 1;
3683 m_inDoSelectProperty
= 0;
3687 wxArrayPGProperty prevSelection
= m_pState
->m_selection
;
3688 wxPGProperty
* prevFirstSel
;
3690 if ( prevSelection
.size() > 0 )
3691 prevFirstSel
= prevSelection
[0];
3693 prevFirstSel
= NULL
;
3695 if ( prevFirstSel
&& prevFirstSel
->HasFlag(wxPG_PROP_BEING_DELETED
) )
3696 prevFirstSel
= NULL
;
3698 // Always send event, as this is indirect call
3699 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE
);
3703 wxPrintf( "Selected %s\n", prevFirstSel->GetClassInfo()->GetClassName() );
3705 wxPrintf( "None selected\n" );
3708 wxPrintf( "P = %s\n", p->GetClassInfo()->GetClassName() );
3710 wxPrintf( "P = NULL\n" );
3713 // If we are frozen, then just set the values.
3716 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3717 m_editorFocused
= 0;
3718 m_pState
->DoSetSelection(p
);
3720 // If frozen, always free controls. But don't worry, as Thaw will
3721 // recall SelectProperty to recreate them.
3724 // Prevent any further selection measures in this call
3730 if ( prevFirstSel
== p
&&
3731 prevSelection
.size() <= 1 &&
3732 !(flags
& wxPG_SEL_FORCE
) )
3734 // Only set focus if not deselecting
3737 if ( flags
& wxPG_SEL_FOCUS
)
3741 m_wndEditor
->SetFocus();
3742 m_editorFocused
= 1;
3751 m_inDoSelectProperty
= 0;
3756 // First, deactivate previous
3759 OnValidationFailureReset(prevFirstSel
);
3761 // Must double-check if this is an selected in case of forceswitch
3762 if ( p
!= prevFirstSel
)
3764 if ( !CommitChangesFromEditor(flags
) )
3766 // Validation has failed, so we can't exit the previous editor
3767 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3768 // _("Invalid Value"),wxOK|wxICON_ERROR);
3769 m_inDoSelectProperty
= 0;
3776 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3777 EditorsValueWasNotModified();
3780 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3782 m_pState
->DoSetSelection(p
);
3784 // Redraw unselected
3785 for ( unsigned int i
=0; i
<prevSelection
.size(); i
++ )
3787 DrawItem(prevSelection
[i
]);
3791 // Then, activate the one given.
3794 int propY
= p
->GetY2(m_lineHeight
);
3796 int splitterX
= GetSplitterPosition();
3797 m_editorFocused
= 0;
3798 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3799 if ( p
!= prevFirstSel
)
3800 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3802 wxASSERT( m_wndEditor
== NULL
);
3805 // Only create editor for non-disabled non-caption
3806 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3808 // do this for non-caption items
3812 // Do we need to paint the custom image, if any?
3813 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3814 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3815 !p
->GetEditorClass()->CanContainCustomImage()
3817 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3819 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3820 wxPoint goodPos
= grect
.GetPosition();
3822 const wxPGEditor
* editor
= p
->GetEditorClass();
3823 wxCHECK_MSG(editor
, false,
3824 wxT("NULL editor class not allowed"));
3826 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3828 wxPGWindowList wndList
= editor
->CreateControls(this,
3833 m_wndEditor
= wndList
.m_primary
;
3834 m_wndEditor2
= wndList
.m_secondary
;
3835 wxWindow
* primaryCtrl
= GetEditorControl();
3838 // Essentially, primaryCtrl == m_wndEditor
3841 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3842 // value is drawn as normal, and m_wndEditor2 is assumed
3843 // to be a right-aligned button that triggers a separate editorCtrl
3848 wxASSERT_MSG( m_wndEditor
->GetParent() == GetPanel(),
3849 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3851 // Set validator, if any
3852 #if wxUSE_VALIDATORS
3853 wxValidator
* validator
= p
->GetValidator();
3855 primaryCtrl
->SetValidator(*validator
);
3858 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3859 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3861 // If it has modified status, use bold font
3862 // (must be done before capturing m_ctrlXAdjust)
3863 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3864 SetCurControlBoldFont();
3866 // Store x relative to splitter (we'll need it).
3867 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3869 // Check if background clear is not necessary
3870 wxPoint pos
= m_wndEditor
->GetPosition();
3871 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3873 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3876 m_wndEditor
->SetSizeHints(3, 3);
3878 SetupChildEventHandling(primaryCtrl
);
3880 // Focus and select all (wxTextCtrl, wxComboBox etc)
3881 if ( flags
& wxPG_SEL_FOCUS
)
3883 primaryCtrl
->SetFocus();
3885 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3891 wxASSERT_MSG( m_wndEditor2
->GetParent() == GetPanel(),
3892 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3894 // Get proper id for wndSecondary
3895 m_wndSecId
= m_wndEditor2
->GetId();
3896 wxWindowList children
= m_wndEditor2
->GetChildren();
3897 wxWindowList::iterator node
= children
.begin();
3898 if ( node
!= children
.end() )
3899 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3901 m_wndEditor2
->SetSizeHints(3,3);
3903 m_wndEditor2
->Show();
3905 SetupChildEventHandling(m_wndEditor2
);
3907 // If no primary editor, focus to button to allow
3908 // it to interprete ENTER etc.
3909 // NOTE: Due to problems focusing away from it, this
3910 // has been disabled.
3912 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3913 m_wndEditor2->SetFocus();
3917 if ( flags
& wxPG_SEL_FOCUS
)
3918 m_editorFocused
= 1;
3923 // Make sure focus is in grid canvas (important for wxGTK, at least)
3927 EditorsValueWasNotModified();
3929 // If it's inside collapsed section, expand parent, scroll, etc.
3930 // Also, if it was partially visible, scroll it into view.
3931 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3936 m_wndEditor
->Show(true);
3939 if ( !(flags
& wxPG_SEL_NO_REFRESH
) )
3944 // Make sure focus is in grid canvas
3948 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3954 // Show help text in status bar.
3955 // (if found and grid not embedded in manager with help box and
3956 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3959 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3961 wxStatusBar
* statusbar
= NULL
;
3962 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3964 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3966 statusbar
= frame
->GetStatusBar();
3971 const wxString
* pHelpString
= (const wxString
*) NULL
;
3975 pHelpString
= &p
->GetHelpString();
3976 if ( pHelpString
->length() )
3978 // Set help box text.
3979 statusbar
->SetStatusText( *pHelpString
);
3980 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3984 if ( (!pHelpString
|| !pHelpString
->length()) &&
3985 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3987 // Clear help box - but only if it was written
3988 // by us at previous time.
3989 statusbar
->SetStatusText( m_emptyString
);
3990 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3996 m_inDoSelectProperty
= 0;
3998 // call wx event handler (here so that it also occurs on deselection)
3999 if ( !(flags
& wxPG_SEL_DONT_SEND_EVENT
) )
4000 SendEvent( wxEVT_PG_SELECTED
, p
, NULL
);
4005 // -----------------------------------------------------------------------
4007 bool wxPropertyGrid::UnfocusEditor()
4009 wxPGProperty
* selected
= GetSelection();
4011 if ( !selected
|| !m_wndEditor
|| m_frozen
)
4014 if ( !CommitChangesFromEditor(0) )
4023 // -----------------------------------------------------------------------
4025 void wxPropertyGrid::RefreshEditor()
4027 wxPGProperty
* p
= GetSelection();
4031 wxWindow
* wnd
= GetEditorControl();
4035 // Set editor font boldness - must do this before
4036 // calling UpdateControl().
4037 if ( HasFlag(wxPG_BOLD_MODIFIED
) )
4039 if ( p
->HasFlag(wxPG_PROP_MODIFIED
) )
4040 wnd
->SetFont(GetCaptionFont());
4042 wnd
->SetFont(GetFont());
4045 const wxPGEditor
* editorClass
= p
->GetEditorClass();
4047 editorClass
->UpdateControl(p
, wnd
);
4049 if ( p
->IsValueUnspecified() )
4050 editorClass
->SetValueToUnspecified(p
, wnd
);
4053 // -----------------------------------------------------------------------
4055 bool wxPropertyGrid::SelectProperty( wxPGPropArg id
, bool focus
)
4057 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
4059 int flags
= wxPG_SEL_DONT_SEND_EVENT
;
4061 flags
|= wxPG_SEL_FOCUS
;
4063 return DoSelectProperty(p
, flags
);
4066 // -----------------------------------------------------------------------
4067 // wxPropertyGrid expand/collapse state
4068 // -----------------------------------------------------------------------
4070 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
4072 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
4073 wxPGProperty
* selected
= GetSelection();
4075 // If active editor was inside collapsed section, then disable it
4076 if ( selected
&& selected
->IsSomeParent(p
) )
4081 // Store dont-center-splitter flag 'cause we need to temporarily set it
4082 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
4083 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4085 bool res
= m_pState
->DoCollapse(pwc
);
4090 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
4092 RecalculateVirtualSize();
4094 // Redraw etc. only if collapsed was visible.
4095 if (pwc
->IsVisible() &&
4097 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
4099 // When item is collapsed so that scrollbar would move,
4100 // graphics mess is about (unless we redraw everything).
4105 // Clear dont-center-splitter flag if it wasn't set
4106 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
4111 // -----------------------------------------------------------------------
4113 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
4115 wxCHECK_MSG( p
, false, wxT("invalid property id") );
4117 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4119 // Store dont-center-splitter flag 'cause we need to temporarily set it
4120 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
4121 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4123 bool res
= m_pState
->DoExpand(pwc
);
4128 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
4130 RecalculateVirtualSize();
4132 // Redraw etc. only if expanded was visible.
4133 if ( pwc
->IsVisible() && !m_frozen
&&
4134 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
4138 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4141 DrawItems(pwc
, NULL
);
4146 // Clear dont-center-splitter flag if it wasn't set
4147 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
4152 // -----------------------------------------------------------------------
4154 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
4157 return m_pState
->DoHideProperty(p
, hide
, flags
);
4159 wxArrayPGProperty selection
= m_pState
->m_selection
; // Must use a copy
4160 int selRemoveCount
= 0;
4161 for ( unsigned int i
=0; i
<selection
.size(); i
++ )
4163 wxPGProperty
* selected
= selection
[i
];
4164 if ( selected
== p
|| selected
->IsSomeParent(p
) )
4166 if ( !DoRemoveFromSelection(p
, flags
) )
4168 selRemoveCount
+= 1;
4172 m_pState
->DoHideProperty(p
, hide
, flags
);
4174 RecalculateVirtualSize();
4181 // -----------------------------------------------------------------------
4182 // wxPropertyGrid size related methods
4183 // -----------------------------------------------------------------------
4185 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
4187 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
4191 // If virtual height was changed, then recalculate editor control position(s)
4192 if ( m_pState
->m_vhCalcPending
)
4193 CorrectEditorWidgetPosY();
4195 m_pState
->EnsureVirtualHeight();
4197 wxASSERT_LEVEL_2_MSG(
4198 m_pState
->GetVirtualHeight() == m_pState
->GetActualVirtualHeight(),
4199 "VirtualHeight and ActualVirtualHeight should match"
4202 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4204 int x
= m_pState
->m_width
;
4205 int y
= m_pState
->m_virtualHeight
;
4208 GetClientSize(&width
,&height
);
4210 // Now adjust virtual size.
4211 SetVirtualSize(x
, y
);
4217 // Adjust scrollbars
4218 if ( HasVirtualWidth() )
4220 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
4221 xPos
= GetScrollPos( wxHORIZONTAL
);
4224 if ( forceXPos
!= -1 )
4227 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4230 int yAmount
= y
/ wxPG_PIXELS_PER_UNIT
;
4231 int yPos
= GetScrollPos( wxVERTICAL
);
4233 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4234 xAmount
, yAmount
, xPos
, yPos
, true );
4236 // Must re-get size now
4237 GetClientSize(&width
,&height
);
4239 if ( !HasVirtualWidth() )
4241 m_pState
->SetVirtualWidth(width
);
4248 m_canvas
->SetSize( x
, y
);
4250 m_pState
->CheckColumnWidths();
4252 if ( GetSelection() )
4253 CorrectEditorWidgetSizeX();
4255 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4258 // -----------------------------------------------------------------------
4260 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4262 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4266 GetClientSize(&width
,&height
);
4271 #if wxPG_DOUBLE_BUFFER
4272 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4274 int dblh
= (m_lineHeight
*2);
4275 if ( !m_doubleBuffer
)
4277 // Create double buffer bitmap to draw on, if none
4278 int w
= (width
>250)?width
:250;
4279 int h
= height
+ dblh
;
4281 m_doubleBuffer
= new wxBitmap( w
, h
);
4285 int w
= m_doubleBuffer
->GetWidth();
4286 int h
= m_doubleBuffer
->GetHeight();
4288 // Double buffer must be large enough
4289 if ( w
< width
|| h
< (height
+dblh
) )
4291 if ( w
< width
) w
= width
;
4292 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4293 delete m_doubleBuffer
;
4294 m_doubleBuffer
= new wxBitmap( w
, h
);
4301 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4302 m_ncWidth
= event
.GetSize().x
;
4306 if ( m_pState
->m_itemsAdded
)
4307 PrepareAfterItemsAdded();
4309 // Without this, virtual size (atleast under wxGTK) will be skewed
4310 RecalculateVirtualSize();
4316 // -----------------------------------------------------------------------
4318 void wxPropertyGrid::SetVirtualWidth( int width
)
4322 // Disable virtual width
4323 width
= GetClientSize().x
;
4324 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4328 // Enable virtual width
4329 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4331 m_pState
->SetVirtualWidth( width
);
4334 void wxPropertyGrid::SetFocusOnCanvas()
4336 m_canvas
->SetFocusIgnoringChildren();
4337 m_editorFocused
= 0;
4340 // -----------------------------------------------------------------------
4341 // wxPropertyGrid mouse event handling
4342 // -----------------------------------------------------------------------
4344 // selFlags uses same values DoSelectProperty's flags
4345 // Returns true if event was vetoed.
4346 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
,
4348 unsigned int selFlags
,
4349 unsigned int column
)
4351 // Send property grid event of specific type and with specific property
4352 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4353 evt
.SetPropertyGrid(this);
4354 evt
.SetEventObject(m_eventObject
);
4356 evt
.SetColumn(column
);
4359 evt
.SetCanVeto(true);
4360 evt
.SetupValidationInfo();
4361 m_validationInfo
.m_pValue
= pValue
;
4363 else if ( !(selFlags
& wxPG_SEL_NOVALIDATE
) )
4365 evt
.SetCanVeto(true);
4368 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
4370 evtHandler
->ProcessEvent(evt
);
4372 return evt
.WasVetoed();
4375 // -----------------------------------------------------------------------
4377 // Return false if should be skipped
4378 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4382 // Need to set focus?
4383 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4388 wxPropertyGridPageState
* state
= m_pState
;
4390 int splitterHitOffset
;
4391 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4393 wxPGProperty
* p
= DoGetItemAtY(y
);
4397 int depth
= (int)p
->GetDepth() - 1;
4399 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4401 if ( x
>= marginEnds
)
4405 if ( p
->IsCategory() )
4407 // This is category.
4408 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4410 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4412 // Expand, collapse, activate etc. if click on text or left of splitter.
4415 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4420 if ( !AddToSelectionFromInputEvent( p
,
4425 // On double-click, expand/collapse.
4426 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4428 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4429 else DoExpand( p
, true );
4433 else if ( splitterHit
== -1 )
4436 unsigned int selFlag
= 0;
4437 if ( columnHit
== 1 )
4439 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4440 selFlag
= wxPG_SEL_FOCUS
;
4442 if ( !AddToSelectionFromInputEvent( p
,
4448 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4450 if ( p
->GetChildCount() && !p
->IsCategory() )
4451 // On double-click, expand/collapse.
4452 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4454 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4455 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4456 else DoExpand( p
, true );
4463 // click on splitter
4464 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4466 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4468 // Double-clicking the splitter causes auto-centering
4469 CenterSplitter( true );
4471 else if ( m_dragStatus
== 0 )
4474 // Begin draggin the splitter
4478 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE
);
4482 // Changes must be committed here or the
4483 // value won't be drawn correctly
4484 if ( !CommitChangesFromEditor() )
4487 m_wndEditor
->Show ( false );
4490 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4492 m_canvas
->CaptureMouse();
4493 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4497 m_draggedSplitter
= splitterHit
;
4498 m_dragOffset
= splitterHitOffset
;
4500 wxClientDC
dc(m_canvas
);
4502 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4503 // Fixes button disappearance bug
4505 m_wndEditor2
->Show ( false );
4508 m_startingSplitterX
= x
- splitterHitOffset
;
4516 if ( p
->GetChildCount() )
4518 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4520 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4522 int y2
= y
% m_lineHeight
;
4523 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4525 // On click on expander button, expand/collapse
4526 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4527 DoCollapse( p
, true );
4529 DoExpand( p
, true );
4538 // -----------------------------------------------------------------------
4540 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
),
4541 unsigned int WXUNUSED(y
),
4542 wxMouseEvent
& event
)
4546 // Select property here as well
4547 wxPGProperty
* p
= m_propHover
;
4548 AddToSelectionFromInputEvent(p
, m_colHover
, &event
);
4550 // Send right click event.
4551 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4558 // -----------------------------------------------------------------------
4560 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
),
4561 unsigned int WXUNUSED(y
),
4562 wxMouseEvent
& event
)
4566 // Select property here as well
4567 wxPGProperty
* p
= m_propHover
;
4569 AddToSelectionFromInputEvent(p
, m_colHover
, &event
);
4571 // Send double-click event.
4572 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4579 // -----------------------------------------------------------------------
4581 #if wxPG_SUPPORT_TOOLTIPS
4583 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4585 if ( tipString
.length() )
4587 m_canvas
->SetToolTip(tipString
);
4591 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4592 m_canvas
->SetToolTip( m_emptyString
);
4594 m_canvas
->SetToolTip( NULL
);
4599 #endif // #if wxPG_SUPPORT_TOOLTIPS
4601 // -----------------------------------------------------------------------
4603 // Return false if should be skipped
4604 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4606 // Safety check (needed because mouse capturing may
4607 // otherwise freeze the control)
4608 if ( m_dragStatus
> 0 && !event
.Dragging() )
4610 HandleMouseUp(x
,y
,event
);
4613 wxPropertyGridPageState
* state
= m_pState
;
4615 int splitterHitOffset
;
4616 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4617 int splitterX
= x
- splitterHitOffset
;
4619 m_colHover
= columnHit
;
4621 if ( m_dragStatus
> 0 )
4623 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4624 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4627 int newSplitterX
= x
- m_dragOffset
;
4628 int splitterX
= x
- splitterHitOffset
;
4630 // Splitter redraw required?
4631 if ( newSplitterX
!= splitterX
)
4634 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4635 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4636 state
->m_fSplitterX
= (float) newSplitterX
;
4638 if ( GetSelection() )
4639 CorrectEditorWidgetSizeX();
4653 int ih
= m_lineHeight
;
4656 #if wxPG_SUPPORT_TOOLTIPS
4657 wxPGProperty
* prevHover
= m_propHover
;
4658 unsigned char prevSide
= m_mouseSide
;
4660 int curPropHoverY
= y
- (y
% ih
);
4662 // On which item it hovers
4665 ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) )
4668 // Mouse moves on another property
4670 m_propHover
= DoGetItemAtY(y
);
4671 m_propHoverY
= curPropHoverY
;
4674 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4677 #if wxPG_SUPPORT_TOOLTIPS
4678 // Store which side we are on
4680 if ( columnHit
== 1 )
4682 else if ( columnHit
== 0 )
4686 // If tooltips are enabled, show label or value as a tip
4687 // in case it doesn't otherwise show in full length.
4689 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4691 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4693 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4695 if ( m_propHover
&& !m_propHover
->IsCategory() )
4698 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4700 // Show help string as a tooltip
4701 wxString tipString
= m_propHover
->GetHelpString();
4703 SetToolTip(tipString
);
4707 // Show cropped value string as a tooltip
4711 if ( m_mouseSide
== 1 )
4713 tipString
= m_propHover
->m_label
;
4714 space
= splitterX
-m_marginWidth
-3;
4716 else if ( m_mouseSide
== 2 )
4718 tipString
= m_propHover
->GetDisplayedString();
4720 space
= m_width
- splitterX
;
4721 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4722 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4728 GetTextExtent( tipString
, &tw
, &th
, 0, 0 );
4731 SetToolTip( tipString
);
4738 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4739 m_canvas
->SetToolTip( m_emptyString
);
4741 m_canvas
->SetToolTip( NULL
);
4752 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4753 m_canvas
->SetToolTip( m_emptyString
);
4755 m_canvas
->SetToolTip( NULL
);
4763 if ( splitterHit
== -1 ||
4765 HasFlag(wxPG_STATIC_SPLITTER
) )
4767 // hovering on something else
4768 if ( m_curcursor
!= wxCURSOR_ARROW
)
4769 CustomSetCursor( wxCURSOR_ARROW
);
4773 // Do not allow splitter cursor on caption items.
4774 // (also not if we were dragging and its started
4775 // outside the splitter region)
4777 if ( !m_propHover
->IsCategory() &&
4781 // hovering on splitter
4783 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4784 // reliably detected.
4785 //if ( m_curcursor != wxCURSOR_SIZEWE )
4786 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4792 // hovering on something else
4793 if ( m_curcursor
!= wxCURSOR_ARROW
)
4794 CustomSetCursor( wxCURSOR_ARROW
);
4799 // Multi select by dragging
4801 if ( (GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION
) &&
4802 event
.LeftIsDown() &&
4805 !state
->DoIsPropertySelected(m_propHover
) )
4807 // Additional requirement is that the hovered property
4808 // is adjacent to edges of selection.
4809 const wxArrayPGProperty
& selection
= GetSelectedProperties();
4811 // Since categories cannot be selected along with 'other'
4812 // properties, exclude them from iterator flags.
4813 int iterFlags
= wxPG_ITERATE_VISIBLE
& (~wxPG_PROP_CATEGORY
);
4815 for ( int i
=(selection
.size()-1); i
>=0; i
-- )
4817 // TODO: This could be optimized by keeping track of
4818 // which properties are at the edges of selection.
4819 wxPGProperty
* selProp
= selection
[i
];
4820 if ( state
->ArePropertiesAdjacent(m_propHover
, selProp
,
4823 DoAddToSelection(m_propHover
);
4832 // -----------------------------------------------------------------------
4834 // Also handles Leaving event
4835 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4836 wxMouseEvent
&WXUNUSED(event
) )
4838 wxPropertyGridPageState
* state
= m_pState
;
4842 int splitterHitOffset
;
4843 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4845 // No event type check - basicly calling this method should
4846 // just stop dragging.
4847 // Left up after dragged?
4848 if ( m_dragStatus
>= 1 )
4851 // End Splitter Dragging
4853 // DO NOT ENABLE FOLLOWING LINE!
4854 // (it is only here as a reminder to not to do it)
4857 // Disable splitter auto-centering
4858 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4860 // This is necessary to return cursor
4861 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4863 m_canvas
->ReleaseMouse();
4864 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4867 // Set back the default cursor, if necessary
4868 if ( splitterHit
== -1 ||
4871 CustomSetCursor( wxCURSOR_ARROW
);
4876 // Control background needs to be cleared
4877 wxPGProperty
* selected
= GetSelection();
4878 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && selected
)
4879 DrawItem( selected
);
4883 m_wndEditor
->Show ( true );
4886 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4887 // Fixes button disappearance bug
4889 m_wndEditor2
->Show ( true );
4892 // This clears the focus.
4893 m_editorFocused
= 0;
4899 // -----------------------------------------------------------------------
4901 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4903 int splitterX
= GetSplitterPosition();
4906 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4910 wxWindow
* wnd
= GetEditorControl();
4912 // Hide popup on clicks
4913 if ( event
.GetEventType() != wxEVT_MOTION
)
4914 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4916 ((wxOwnerDrawnComboBox
*)wnd
)->HidePopup();
4922 if ( wnd
== NULL
|| m_dragStatus
||
4924 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4925 ux
>= (r
.x
+r
.width
) ||
4927 event
.m_y
>= (r
.y
+r
.height
)
4937 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4942 // -----------------------------------------------------------------------
4944 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4947 if ( OnMouseCommon( event
, &x
, &y
) )
4949 HandleMouseClick(x
,y
,event
);
4954 // -----------------------------------------------------------------------
4956 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4959 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4960 HandleMouseRightClick(x
,y
,event
);
4964 // -----------------------------------------------------------------------
4966 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4968 // Always run standard mouse-down handler as well
4969 OnMouseClick(event
);
4972 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4973 HandleMouseDoubleClick(x
,y
,event
);
4977 // -----------------------------------------------------------------------
4979 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4982 if ( OnMouseCommon( event
, &x
, &y
) )
4984 HandleMouseMove(x
,y
,event
);
4989 // -----------------------------------------------------------------------
4991 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4993 // Called when mouse moves in the empty space below the properties.
4994 CustomSetCursor( wxCURSOR_ARROW
);
4997 // -----------------------------------------------------------------------
4999 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
5002 if ( OnMouseCommon( event
, &x
, &y
) )
5004 HandleMouseUp(x
,y
,event
);
5009 // -----------------------------------------------------------------------
5011 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
5013 // This may get called from child control as well, so event's
5014 // mouse position cannot be relied on.
5016 if ( event
.Entering() )
5018 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
5020 // TODO: Fix this (detect parent and only do
5021 // cursor trick if it is a manager).
5022 wxASSERT( GetParent() );
5023 GetParent()->SetCursor(wxNullCursor
);
5025 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
5028 GetParent()->SetCursor(wxNullCursor
);
5030 else if ( event
.Leaving() )
5032 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
5033 m_canvas
->SetCursor( wxNullCursor
);
5035 // Get real cursor position
5036 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
5038 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
5041 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
5043 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
5047 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
5055 // -----------------------------------------------------------------------
5057 // Common code used by various OnMouseXXXChild methods.
5058 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
5060 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
5061 wxASSERT( topCtrlWnd
);
5063 event
.GetPosition(&x
,&y
);
5065 int splitterX
= GetSplitterPosition();
5067 wxRect r
= topCtrlWnd
->GetRect();
5068 if ( !m_dragStatus
&&
5069 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
5070 y
>= 0 && y
< r
.height \
5073 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
5078 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
5085 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
5088 if ( OnMouseChildCommon(event
,&x
,&y
) )
5090 bool res
= HandleMouseClick(x
,y
,event
);
5091 if ( !res
) event
.Skip();
5095 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
5098 wxASSERT( m_wndEditor
);
5099 // These coords may not be exact (about +-2),
5100 // but that should not matter (right click is about item, not position).
5101 wxPoint pt
= m_wndEditor
->GetPosition();
5102 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
5104 // FIXME: Used to set m_propHover to selection here. Was it really
5107 bool res
= HandleMouseRightClick(x
,y
,event
);
5108 if ( !res
) event
.Skip();
5111 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
5114 if ( OnMouseChildCommon(event
,&x
,&y
) )
5116 bool res
= HandleMouseMove(x
,y
,event
);
5117 if ( !res
) event
.Skip();
5121 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
5124 if ( OnMouseChildCommon(event
,&x
,&y
) )
5126 bool res
= HandleMouseUp(x
,y
,event
);
5127 if ( !res
) event
.Skip();
5131 // -----------------------------------------------------------------------
5132 // wxPropertyGrid keyboard event handling
5133 // -----------------------------------------------------------------------
5135 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
5137 // Translates wxKeyEvent to wxPG_ACTION_XXX
5139 int keycode
= event
.GetKeyCode();
5140 int modifiers
= event
.GetModifiers();
5142 wxASSERT( !(modifiers
&~(0xFFFF)) );
5144 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
5146 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
5148 if ( it
== m_actionTriggers
.end() )
5153 int second
= (it
->second
>>16) & 0xFFFF;
5157 return (it
->second
& 0xFFFF);
5160 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
5162 wxASSERT( !(modifiers
&~(0xFFFF)) );
5164 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
5166 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
5168 if ( it
!= m_actionTriggers
.end() )
5170 // This key combination is already used
5172 // Can add secondary?
5173 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
5174 wxT("You can only add up to two separate actions per key combination.") );
5176 action
= it
->second
| (action
<<16);
5179 m_actionTriggers
[hashMapKey
] = action
;
5182 void wxPropertyGrid::ClearActionTriggers( int action
)
5184 wxPGHashMapI2I::iterator it
;
5186 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); ++it
)
5188 if ( it
->second
== action
)
5190 m_actionTriggers
.erase(it
);
5195 void wxPropertyGrid::HandleKeyEvent( wxKeyEvent
&event
, bool fromChild
)
5198 // Handles key event when editor control is not focused.
5201 wxCHECK2(!m_frozen
, return);
5203 // Travelsal between items, collapsing/expanding, etc.
5204 wxPGProperty
* selected
= GetSelection();
5205 int keycode
= event
.GetKeyCode();
5206 bool editorFocused
= IsEditorFocused();
5208 if ( keycode
== WXK_TAB
)
5210 wxWindow
* mainControl
;
5212 if ( HasInternalFlag(wxPG_FL_IN_MANAGER
) )
5213 mainControl
= GetParent();
5217 if ( !event
.ShiftDown() )
5219 if ( !editorFocused
&& m_wndEditor
)
5221 DoSelectProperty( selected
, wxPG_SEL_FOCUS
);
5225 // Tab traversal workaround for platforms on which
5226 // wxWindow::Navigate() may navigate into first child
5227 // instead of next sibling. Does not work perfectly
5228 // in every scenario (for instance, when property grid
5229 // is either first or last control).
5230 #if defined(__WXGTK__)
5231 wxWindow
* sibling
= mainControl
->GetNextSibling();
5233 sibling
->SetFocusFromKbd();
5235 Navigate(wxNavigationKeyEvent::IsForward
);
5241 if ( editorFocused
)
5247 #if defined(__WXGTK__)
5248 wxWindow
* sibling
= mainControl
->GetPrevSibling();
5250 sibling
->SetFocusFromKbd();
5252 Navigate(wxNavigationKeyEvent::IsBackward
);
5260 // Ignore Alt and Control when they are down alone
5261 if ( keycode
== WXK_ALT
||
5262 keycode
== WXK_CONTROL
)
5269 int action
= KeyEventToActions(event
, &secondAction
);
5271 if ( editorFocused
&& action
== wxPG_ACTION_CANCEL_EDIT
)
5274 // Esc cancels any changes
5275 if ( IsEditorsValueModified() )
5277 EditorsValueWasNotModified();
5279 // Update the control as well
5280 selected
->GetEditorClass()->
5281 SetControlStringValue( selected
,
5283 selected
->GetDisplayedString() );
5286 OnValidationFailureReset(selected
);
5292 // Except for TAB and ESC, handle child control events in child control
5295 // Only propagate event if it had modifiers
5296 if ( !event
.HasModifiers() )
5298 event
.StopPropagation();
5304 bool wasHandled
= false;
5309 if ( ButtonTriggerKeyTest(action
, event
) )
5312 wxPGProperty
* p
= selected
;
5314 // Travel and expand/collapse
5317 if ( p
->GetChildCount() )
5319 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
5321 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
5324 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
5326 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
5333 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
5337 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5343 if ( selectDir
>= -1 )
5345 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5347 DoSelectProperty(p
);
5353 // If nothing was selected, select the first item now
5354 // (or navigate out of tab).
5355 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5357 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5358 if ( p
) DoSelectProperty(p
);
5367 // -----------------------------------------------------------------------
5369 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5371 // If there was editor open and focused, then this event should not
5372 // really be processed here.
5373 if ( IsEditorFocused() )
5375 // However, if event had modifiers, it is probably still best
5377 if ( event
.HasModifiers() )
5380 event
.StopPropagation();
5384 HandleKeyEvent(event
, false);
5387 // -----------------------------------------------------------------------
5389 bool wxPropertyGrid::ButtonTriggerKeyTest( int action
, wxKeyEvent
& event
)
5394 action
= KeyEventToActions(event
, &secondAction
);
5397 // Does the keycode trigger button?
5398 if ( action
== wxPG_ACTION_PRESS_BUTTON
&&
5401 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
, m_wndEditor2
->GetId());
5402 GetEventHandler()->AddPendingEvent(evt
);
5409 // -----------------------------------------------------------------------
5411 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5413 HandleKeyEvent(event
, true);
5416 // -----------------------------------------------------------------------
5417 // wxPropertyGrid miscellaneous event handling
5418 // -----------------------------------------------------------------------
5420 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5423 // Check if the focus is in this control or one of its children
5424 wxWindow
* newFocused
= wxWindow::FindFocus();
5426 if ( newFocused
!= m_curFocused
)
5427 HandleFocusChange( newFocused
);
5430 // Check if top-level parent has changed
5431 if ( GetExtraStyle() & wxPG_EX_ENABLE_TLP_TRACKING
)
5433 wxWindow
* tlp
= ::wxGetTopLevelParent(this);
5439 bool wxPropertyGrid::IsEditorFocused() const
5441 wxWindow
* focus
= wxWindow::FindFocus();
5443 if ( focus
== m_wndEditor
|| focus
== m_wndEditor2
||
5444 focus
== GetEditorControl() )
5450 // Called by focus event handlers. newFocused is the window that becomes focused.
5451 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5453 unsigned int oldFlags
= m_iFlags
;
5455 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5457 wxWindow
* parent
= newFocused
;
5459 // This must be one of nextFocus' parents.
5462 // Use m_eventObject, which is either wxPropertyGrid or
5463 // wxPropertyGridManager, as appropriate.
5464 if ( parent
== m_eventObject
)
5466 m_iFlags
|= wxPG_FL_FOCUSED
;
5469 parent
= parent
->GetParent();
5472 m_curFocused
= newFocused
;
5474 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5475 (oldFlags
& wxPG_FL_FOCUSED
) )
5477 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5479 // Need to store changed value
5480 CommitChangesFromEditor();
5486 // Preliminary code for tab-order respecting
5487 // tab-traversal (but should be moved to
5490 wxWindow* prevFocus = event.GetWindow();
5491 wxWindow* useThis = this;
5492 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5493 useThis = GetParent();
5496 prevFocus->GetParent() == useThis->GetParent() )
5498 wxList& children = useThis->GetParent()->GetChildren();
5500 wxNode* node = children.Find(prevFocus);
5502 if ( node->GetNext() &&
5503 useThis == node->GetNext()->GetData() )
5504 DoSelectProperty(GetFirst());
5505 else if ( node->GetPrevious () &&
5506 useThis == node->GetPrevious()->GetData() )
5507 DoSelectProperty(GetLastProperty());
5514 wxPGProperty
* selected
= GetSelection();
5515 if ( selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5516 DrawItem( selected
);
5520 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5522 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5523 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5524 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5525 //else if ( event.GetWindow() )
5527 HandleFocusChange(event
.GetWindow());
5532 // -----------------------------------------------------------------------
5534 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5536 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5540 // -----------------------------------------------------------------------
5542 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5544 m_iFlags
|= wxPG_FL_SCROLLED
;
5549 // -----------------------------------------------------------------------
5551 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5553 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5555 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5559 // -----------------------------------------------------------------------
5560 // Property editor related functions
5561 // -----------------------------------------------------------------------
5563 // noDefCheck = true prevents infinite recursion.
5564 wxPGEditor
* wxPropertyGrid::DoRegisterEditorClass( wxPGEditor
* editorClass
,
5565 const wxString
& editorName
,
5568 wxASSERT( editorClass
);
5570 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5571 RegisterDefaultEditors();
5573 wxString name
= editorName
;
5574 if ( name
.length() == 0 )
5575 name
= editorClass
->GetName();
5577 // Existing editor under this name?
5578 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5580 if ( vt_it
!= wxPGGlobalVars
->m_mapEditorClasses
.end() )
5582 // If this name was already used, try class name.
5583 name
= editorClass
->GetClassInfo()->GetClassName();
5584 vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5587 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5588 (wxPGEditor
*) vt_it
->second
,
5589 "Editor with given name was already registered" );
5591 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5596 // Use this in RegisterDefaultEditors.
5597 #define wxPGRegisterDefaultEditorClass(EDITOR) \
5598 if ( wxPGEditor_##EDITOR == NULL ) \
5600 wxPGEditor_##EDITOR = wxPropertyGrid::RegisterEditorClass( \
5601 new wxPG##EDITOR##Editor, true ); \
5604 // Registers all default editor classes
5605 void wxPropertyGrid::RegisterDefaultEditors()
5607 wxPGRegisterDefaultEditorClass( TextCtrl
);
5608 wxPGRegisterDefaultEditorClass( Choice
);
5609 wxPGRegisterDefaultEditorClass( ComboBox
);
5610 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5611 #if wxPG_INCLUDE_CHECKBOX
5612 wxPGRegisterDefaultEditorClass( CheckBox
);
5614 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5616 // Register SpinCtrl etc. editors before use
5617 RegisterAdditionalEditors();
5620 // -----------------------------------------------------------------------
5621 // wxPGStringTokenizer
5622 // Needed to handle C-style string lists (e.g. "str1" "str2")
5623 // -----------------------------------------------------------------------
5625 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5626 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5630 wxPGStringTokenizer::~wxPGStringTokenizer()
5634 bool wxPGStringTokenizer::HasMoreTokens()
5636 const wxString
& str
= *m_str
;
5638 wxString::const_iterator i
= m_curPos
;
5640 wxUniChar delim
= m_delimeter
;
5642 wxUniChar prev_a
= wxT('\0');
5644 bool inToken
= false;
5646 while ( i
!= str
.end() )
5655 m_readyToken
.clear();
5660 if ( prev_a
!= wxT('\\') )
5664 if ( a
!= wxT('\\') )
5684 m_curPos
= str
.end();
5692 wxString
wxPGStringTokenizer::GetNextToken()
5694 return m_readyToken
;
5697 // -----------------------------------------------------------------------
5699 // -----------------------------------------------------------------------
5701 wxPGChoiceEntry::wxPGChoiceEntry()
5702 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5706 // -----------------------------------------------------------------------
5708 // -----------------------------------------------------------------------
5710 wxPGChoicesData::wxPGChoicesData()
5714 wxPGChoicesData::~wxPGChoicesData()
5719 void wxPGChoicesData::Clear()
5724 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
5726 wxASSERT( m_items
.size() == 0 );
5728 m_items
= data
->m_items
;
5731 wxPGChoiceEntry
& wxPGChoicesData::Insert( int index
,
5732 const wxPGChoiceEntry
& item
)
5734 wxVector
<wxPGChoiceEntry
>::iterator it
;
5738 index
= (int) m_items
.size();
5742 it
= m_items
.begin() + index
;
5745 m_items
.insert(it
, item
);
5747 wxPGChoiceEntry
& ownEntry
= m_items
[index
];
5749 // Need to fix value?
5750 if ( ownEntry
.GetValue() == wxPG_INVALID_VALUE
)
5751 ownEntry
.SetValue(index
);
5756 // -----------------------------------------------------------------------
5757 // wxPropertyGridEvent
5758 // -----------------------------------------------------------------------
5760 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5763 wxDEFINE_EVENT( wxEVT_PG_SELECTED
, wxPropertyGridEvent
);
5764 wxDEFINE_EVENT( wxEVT_PG_CHANGING
, wxPropertyGridEvent
);
5765 wxDEFINE_EVENT( wxEVT_PG_CHANGED
, wxPropertyGridEvent
);
5766 wxDEFINE_EVENT( wxEVT_PG_HIGHLIGHTED
, wxPropertyGridEvent
);
5767 wxDEFINE_EVENT( wxEVT_PG_RIGHT_CLICK
, wxPropertyGridEvent
);
5768 wxDEFINE_EVENT( wxEVT_PG_PAGE_CHANGED
, wxPropertyGridEvent
);
5769 wxDEFINE_EVENT( wxEVT_PG_ITEM_EXPANDED
, wxPropertyGridEvent
);
5770 wxDEFINE_EVENT( wxEVT_PG_ITEM_COLLAPSED
, wxPropertyGridEvent
);
5771 wxDEFINE_EVENT( wxEVT_PG_DOUBLE_CLICK
, wxPropertyGridEvent
);
5772 wxDEFINE_EVENT( wxEVT_PG_LABEL_EDIT_BEGIN
, wxPropertyGridEvent
);
5773 wxDEFINE_EVENT( wxEVT_PG_LABEL_EDIT_ENDING
, wxPropertyGridEvent
);
5775 // -----------------------------------------------------------------------
5777 void wxPropertyGridEvent::Init()
5779 m_validationInfo
= NULL
;
5782 m_wasVetoed
= false;
5785 // -----------------------------------------------------------------------
5787 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5788 : wxCommandEvent(commandType
,id
)
5794 // -----------------------------------------------------------------------
5796 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5797 : wxCommandEvent(event
)
5799 m_eventType
= event
.GetEventType();
5800 m_eventObject
= event
.m_eventObject
;
5802 m_property
= event
.m_property
;
5803 m_validationInfo
= event
.m_validationInfo
;
5804 m_canVeto
= event
.m_canVeto
;
5805 m_wasVetoed
= event
.m_wasVetoed
;
5808 // -----------------------------------------------------------------------
5810 wxPropertyGridEvent::~wxPropertyGridEvent()
5814 // -----------------------------------------------------------------------
5816 wxEvent
* wxPropertyGridEvent::Clone() const
5818 return new wxPropertyGridEvent( *this );
5821 // -----------------------------------------------------------------------
5822 // wxPropertyGridPopulator
5823 // -----------------------------------------------------------------------
5825 wxPropertyGridPopulator::wxPropertyGridPopulator()
5829 wxPGGlobalVars
->m_offline
++;
5832 // -----------------------------------------------------------------------
5834 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
5837 m_propHierarchy
.clear();
5840 // -----------------------------------------------------------------------
5842 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
5848 // -----------------------------------------------------------------------
5850 wxPropertyGridPopulator::~wxPropertyGridPopulator()
5853 // Free unused sets of choices
5854 wxPGHashMapS2P::iterator it
;
5856 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
5858 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
5865 m_pg
->GetPanel()->Refresh();
5867 wxPGGlobalVars
->m_offline
--;
5870 // -----------------------------------------------------------------------
5872 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
5873 const wxString
& propLabel
,
5874 const wxString
& propName
,
5875 const wxString
* propValue
,
5876 wxPGChoices
* pChoices
)
5878 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
5879 wxPGProperty
* parent
= GetCurParent();
5881 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
5883 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
5887 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
5889 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
5893 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
5895 property
->SetLabel(propLabel
);
5896 property
->DoSetName(propName
);
5898 if ( pChoices
&& pChoices
->IsOk() )
5899 property
->SetChoices(*pChoices
);
5901 m_state
->DoInsert(parent
, -1, property
);
5904 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
|
5905 wxPG_PROGRAMMATIC_VALUE
);
5910 // -----------------------------------------------------------------------
5912 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
5914 m_propHierarchy
.push_back(property
);
5915 DoScanForChildren();
5916 m_propHierarchy
.pop_back();
5919 // -----------------------------------------------------------------------
5921 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
5922 const wxString
& idString
)
5924 wxPGChoices choices
;
5927 if ( choicesString
[0] == wxT('@') )
5929 wxString ids
= choicesString
.substr(1);
5930 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
5931 if ( it
== m_dictIdChoices
.end() )
5932 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
5934 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5939 if ( idString
.length() )
5941 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
5942 if ( it
!= m_dictIdChoices
.end() )
5944 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5951 // Parse choices string
5952 wxString::const_iterator it
= choicesString
.begin();
5956 bool labelValid
= false;
5958 for ( ; it
!= choicesString
.end(); ++it
)
5964 if ( c
== wxT('"') )
5969 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
5970 choices
.Add(label
, l
);
5973 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
5978 else if ( c
== wxT('=') )
5985 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
5992 if ( c
== wxT('"') )
6005 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6006 choices
.Add(label
, l
);
6009 if ( !choices
.IsOk() )
6011 choices
.EnsureData();
6015 if ( idString
.length() )
6016 m_dictIdChoices
[idString
] = choices
.GetData();
6023 // -----------------------------------------------------------------------
6025 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6027 if ( s
.Last() == wxT('%') )
6029 wxString s2
= s
.substr(0,s
.length()-1);
6031 if ( s2
.ToLong(&val
, 10) )
6033 *pval
= (val
*max
)/100;
6039 return s
.ToLong(pval
, 10);
6042 // -----------------------------------------------------------------------
6044 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6045 const wxString
& type
,
6046 const wxString
& value
)
6048 int l
= m_propHierarchy
.size();
6052 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6053 wxString valuel
= value
.Lower();
6056 if ( type
.length() == 0 )
6061 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6063 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6065 else if ( value
.ToLong(&v
, 0) )
6072 if ( type
== wxT("string") )
6076 else if ( type
== wxT("int") )
6079 value
.ToLong(&v
, 0);
6082 else if ( type
== wxT("bool") )
6084 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6091 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6096 p
->SetAttribute( name
, variant
);
6101 // -----------------------------------------------------------------------
6103 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6105 wxLogError(_("Error in resource: %s"),msg
.c_str());
6108 // -----------------------------------------------------------------------
6110 #endif // wxUSE_PROPGRID