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"
66 #include <wx/clipbrd.h>
67 #include <wx/dataobj.h>
70 #include <wx/msw/private.h>
73 // Two pics for the expand / collapse buttons.
74 // Files are not supplied with this project (since it is
75 // recommended to use either custom or native rendering).
76 // If you want them, get wxTreeMultiCtrl by Jorgen Bodde,
77 // and copy xpm files from archive to wxPropertyGrid src directory
78 // (and also comment/undef wxPG_ICON_WIDTH in propGrid.h
79 // and set wxPG_USE_RENDERER_NATIVE to 0).
80 #ifndef wxPG_ICON_WIDTH
81 #if defined(__WXMAC__)
82 #include "mac_collapse.xpm"
83 #include "mac_expand.xpm"
84 #elif defined(__WXGTK__)
85 #include "linux_collapse.xpm"
86 #include "linux_expand.xpm"
88 #include "default_collapse.xpm"
89 #include "default_expand.xpm"
94 //#define wxPG_TEXT_INDENT 4 // For the wxComboControl
95 #define wxPG_ALLOW_CLIPPING 1 // If 1, GetUpdateRegion() in OnPaint event handler is not ignored
96 #define wxPG_GUTTER_DIV 3 // gutter is max(iconwidth/gutter_div,gutter_min)
97 #define wxPG_GUTTER_MIN 3 // gutter before and after image of [+] or [-]
98 #define wxPG_YSPACING_MIN 1
99 #define wxPG_DEFAULT_VSPACING 2 // This matches .NET propertygrid's value,
100 // but causes normal combobox to spill out under MSW
102 #define wxPG_OPTIMAL_WIDTH 200 // Arbitrary
104 #define wxPG_MIN_SCROLLBAR_WIDTH 10 // Smallest scrollbar width on any platform
105 // Must be larger than largest control border
109 #define wxPG_DEFAULT_CURSOR wxNullCursor
112 //#define wxPG_NAT_CHOICE_BORDER_ANY 0
114 #define wxPG_HIDER_BUTTON_HEIGHT 25
116 #define wxPG_PIXELS_PER_UNIT m_lineHeight
118 #ifdef wxPG_ICON_WIDTH
119 #define m_iconHeight m_iconWidth
122 #define wxPG_TOOLTIP_DELAY 1000
124 // -----------------------------------------------------------------------
127 void wxPropertyGrid::AutoGetTranslation ( bool enable
)
129 wxPGGlobalVars
->m_autoGetTranslation
= enable
;
132 void wxPropertyGrid::AutoGetTranslation ( bool ) { }
135 // -----------------------------------------------------------------------
137 const wxChar
*wxPropertyGridNameStr
= wxT("wxPropertyGrid");
139 // -----------------------------------------------------------------------
140 // Statics in one class for easy destruction.
141 // NB: We prefer to use wxModule, as it offers more consistent behavior
142 // across platforms. However, for those rare problem situations, we
143 // also need to offer option to use simpler approach.
144 // -----------------------------------------------------------------------
146 #ifndef wxPG_USE_WXMODULE
147 #define wxPG_USE_WXMODULE 1
150 #if wxPG_USE_WXMODULE
152 #include <wx/module.h>
154 class wxPGGlobalVarsClassManager
: public wxModule
156 DECLARE_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
)
158 wxPGGlobalVarsClassManager() {}
159 virtual bool OnInit() { wxPGGlobalVars
= new wxPGGlobalVarsClass(); return true; }
160 virtual void OnExit() { delete wxPGGlobalVars
; wxPGGlobalVars
= NULL
; }
163 IMPLEMENT_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
, wxModule
)
165 #else // !wxPG_USE_WXMODULE
167 class wxPGGlobalVarsClassManager
170 wxPGGlobalVarsClassManager() {}
171 ~wxPGGlobalVarsClassManager() { delete wxPGGlobalVars
; }
174 static wxPGGlobalVarsClassManager gs_pgGlobalVarsClassManager
;
179 wxPGGlobalVarsClass
* wxPGGlobalVars
= (wxPGGlobalVarsClass
*) NULL
;
182 wxPGGlobalVarsClass::wxPGGlobalVarsClass()
184 wxPGProperty::sm_wxPG_LABEL
= new wxString(wxPG_LABEL_STRING
);
186 m_boolChoices
.Add(_("False"));
187 m_boolChoices
.Add(_("True"));
189 m_fontFamilyChoices
= (wxPGChoices
*) NULL
;
191 m_defaultRenderer
= new wxPGDefaultRenderer();
193 m_autoGetTranslation
= false;
201 // Prepare some shared variants
202 m_vEmptyString
= wxString();
204 m_vMinusOne
= (long) -1;
208 // Prepare cached string constants
209 m_strstring
= wxS("string");
210 m_strlong
= wxS("long");
211 m_strbool
= wxS("bool");
212 m_strlist
= wxS("list");
213 m_strMin
= wxS("Min");
214 m_strMax
= wxS("Max");
215 m_strUnits
= wxS("Units");
216 m_strInlineHelp
= wxS("InlineHelp");
224 wxPGGlobalVarsClass::~wxPGGlobalVarsClass()
228 delete m_defaultRenderer
;
230 // This will always have one ref
231 delete m_fontFamilyChoices
;
234 for ( i
=0; i
<m_arrValidators
.size(); i
++ )
235 delete ((wxValidator
*)m_arrValidators
[i
]);
239 // Destroy value type class instances.
240 wxPGHashMapS2P::iterator vt_it
;
242 // Destroy editor class instances.
243 // iterate over all the elements in the class
244 for( vt_it
= m_mapEditorClasses
.begin(); vt_it
!= m_mapEditorClasses
.end(); ++vt_it
)
246 delete ((wxPGEditor
*)vt_it
->second
);
249 delete wxPGProperty::sm_wxPG_LABEL
;
252 // -----------------------------------------------------------------------
254 // -----------------------------------------------------------------------
257 // This class is a wxBrush derivative used in the background colour
258 // brush cache. It adds wxPG-type colour-in-long to the class.
259 // JMS: Yes I know wxBrush doesn't actually hold the value (refcounted
260 // object does), but this is simpler implementation and equally
264 class wxPGBrush
: public wxBrush
267 wxPGBrush( const wxColour
& colour
);
269 virtual ~wxPGBrush() { }
270 void SetColour2( const wxColour
& colour
);
271 inline long GetColourAsLong() const { return m_colAsLong
; }
277 void wxPGBrush::SetColour2( const wxColour
& colour
)
279 wxBrush::SetColour(colour
);
280 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
284 wxPGBrush::wxPGBrush() : wxBrush()
290 wxPGBrush::wxPGBrush( const wxColour
& colour
) : wxBrush(colour
)
292 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
296 // -----------------------------------------------------------------------
298 // -----------------------------------------------------------------------
301 // Same as wxPGBrush, but for wxColour instead.
304 class wxPGColour
: public wxColour
307 wxPGColour( const wxColour
& colour
);
309 virtual ~wxPGColour() { }
310 void SetColour2( const wxColour
& colour
);
311 inline long GetColourAsLong() const { return m_colAsLong
; }
317 void wxPGColour::SetColour2( const wxColour
& colour
)
320 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
324 wxPGColour::wxPGColour() : wxColour()
330 wxPGColour::wxPGColour( const wxColour
& colour
) : wxColour(colour
)
332 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
336 // -----------------------------------------------------------------------
338 // Intercepts Close-events sent to wxPropertyGrid's top-level parent,
339 // and tries to commit property value.
340 // -----------------------------------------------------------------------
342 class wxPGTLWHandler
: public wxEvtHandler
346 wxPGTLWHandler( wxPropertyGrid
* pg
)
354 void OnClose( wxCloseEvent
& event
)
356 // ClearSelection forces value validation/commit.
357 if ( event
.CanVeto() && !m_pg
->ClearSelection() )
367 wxPropertyGrid
* m_pg
;
369 DECLARE_EVENT_TABLE()
372 BEGIN_EVENT_TABLE(wxPGTLWHandler
, wxEvtHandler
)
373 EVT_CLOSE(wxPGTLWHandler::OnClose
)
376 // -----------------------------------------------------------------------
378 // -----------------------------------------------------------------------
381 // wxPGCanvas acts as a graphics sub-window of the
382 // wxScrolledWindow that wxPropertyGrid is.
384 class wxPGCanvas
: public wxPanel
387 wxPGCanvas() : wxPanel()
390 virtual ~wxPGCanvas() { }
393 void OnMouseMove( wxMouseEvent
&event
)
395 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
396 pg
->OnMouseMove( event
);
399 void OnMouseClick( wxMouseEvent
&event
)
401 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
402 pg
->OnMouseClick( event
);
405 void OnMouseUp( wxMouseEvent
&event
)
407 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
408 pg
->OnMouseUp( event
);
411 void OnMouseRightClick( wxMouseEvent
&event
)
413 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
414 pg
->OnMouseRightClick( event
);
417 void OnMouseDoubleClick( wxMouseEvent
&event
)
419 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
420 pg
->OnMouseDoubleClick( event
);
423 void OnKey( wxKeyEvent
& event
)
425 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
429 void OnKeyUp( wxKeyEvent
& event
)
431 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
432 pg
->OnKeyUp( event
);
435 void OnNavigationKey( wxNavigationKeyEvent
& event
)
437 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
438 pg
->OnNavigationKey( event
);
441 void OnPaint( wxPaintEvent
& event
);
444 DECLARE_EVENT_TABLE()
448 BEGIN_EVENT_TABLE(wxPGCanvas
, wxPanel
)
449 EVT_MOTION(wxPGCanvas::OnMouseMove
)
450 EVT_PAINT(wxPGCanvas::OnPaint
)
451 EVT_LEFT_DOWN(wxPGCanvas::OnMouseClick
)
452 EVT_LEFT_UP(wxPGCanvas::OnMouseUp
)
453 EVT_RIGHT_UP(wxPGCanvas::OnMouseRightClick
)
454 EVT_LEFT_DCLICK(wxPGCanvas::OnMouseDoubleClick
)
455 EVT_KEY_DOWN(wxPGCanvas::OnKey
)
456 EVT_KEY_UP(wxPGCanvas::OnKeyUp
)
457 EVT_CHAR(wxPGCanvas::OnKey
)
458 EVT_NAVIGATION_KEY(wxPGCanvas::OnNavigationKey
)
462 void wxPGCanvas::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
464 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
465 wxASSERT( pg
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
469 // Don't paint after destruction has begun
470 if ( !(pg
->GetInternalFlags() & wxPG_FL_INITIALIZED
) )
473 // Update everything inside the box
474 wxRect r
= GetUpdateRegion().GetBox();
476 // Repaint this rectangle
477 pg
->DrawItems( dc
, r
.y
, r
.y
+ r
.height
, &r
);
479 // We assume that the size set when grid is shown
480 // is what is desired.
481 pg
->SetInternalFlag(wxPG_FL_GOOD_SIZE_SET
);
484 // -----------------------------------------------------------------------
486 // -----------------------------------------------------------------------
488 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid
, wxScrolledWindow
)
490 BEGIN_EVENT_TABLE(wxPropertyGrid
, wxScrolledWindow
)
491 EVT_IDLE(wxPropertyGrid::OnIdle
)
492 EVT_MOTION(wxPropertyGrid::OnMouseMoveBottom
)
493 EVT_PAINT(wxPropertyGrid::OnPaint
)
494 EVT_SIZE(wxPropertyGrid::OnResize
)
495 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry
)
496 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry
)
497 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange
)
498 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent
)
499 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent
)
500 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent
)
501 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent
)
502 EVT_TEXT_ENTER(wxPG_SUBID1
,wxPropertyGrid::OnCustomEditorEvent
)
503 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged
)
507 // -----------------------------------------------------------------------
509 wxPropertyGrid::wxPropertyGrid()
515 // -----------------------------------------------------------------------
517 wxPropertyGrid::wxPropertyGrid( wxWindow
*parent
,
526 Create(parent
,id
,pos
,size
,style
,name
);
529 // -----------------------------------------------------------------------
531 bool wxPropertyGrid::Create( wxWindow
*parent
,
539 if ( !(style
&wxBORDER_MASK
) )
540 style
|= wxSIMPLE_BORDER
;
545 // This prevents crash under Win2K, but still
546 // enables keyboard navigation
547 if ( style
& wxTAB_TRAVERSAL
)
549 style
&= ~(wxTAB_TRAVERSAL
);
550 style
|= wxWANTS_CHARS
;
553 if ( style
& wxTAB_TRAVERSAL
)
554 style
|= wxWANTS_CHARS
;
557 wxScrolledWindow::Create(parent
,id
,pos
,size
,style
,name
);
564 // -----------------------------------------------------------------------
567 // Initialize values to defaults
569 void wxPropertyGrid::Init1()
571 #if !wxPG_USE_WXMODULE
572 if ( !wxPGGlobalVars
)
573 wxPGGlobalVars
= new wxPGGlobalVarsClass();
576 // Register editor classes, if necessary.
577 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
578 RegisterDefaultEditors();
581 m_pState
= (wxPropertyGridPageState
*) NULL
;
582 m_wndEditor
= m_wndEditor2
= (wxWindow
*) NULL
;
583 m_selected
= (wxPGProperty
*) NULL
;
585 m_propHover
= (wxPGProperty
*) NULL
;
586 m_eventObject
= this;
587 m_curFocused
= (wxWindow
*) NULL
;
589 m_inDoPropertyChanged
= 0;
590 m_inCommitChangesFromEditor
= 0;
591 m_inDoSelectProperty
= 0;
592 m_permanentValidationFailureBehavior
= wxPG_VFB_DEFAULT
;
598 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_RIGHT
);
599 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_DOWN
);
600 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_LEFT
);
601 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_UP
);
602 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY
, WXK_RIGHT
);
603 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY
, WXK_LEFT
);
604 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT
, WXK_ESCAPE
);
605 AddActionTrigger( wxPG_ACTION_CUT
, 'X', wxMOD_CONTROL
);
606 AddActionTrigger( wxPG_ACTION_CUT
, WXK_DELETE
, wxMOD_SHIFT
);
607 AddActionTrigger( wxPG_ACTION_COPY
, 'C', wxMOD_CONTROL
);
608 AddActionTrigger( wxPG_ACTION_COPY
, WXK_INSERT
, wxMOD_CONTROL
);
609 AddActionTrigger( wxPG_ACTION_PASTE
, 'V', wxMOD_CONTROL
);
610 AddActionTrigger( wxPG_ACTION_PASTE
, WXK_INSERT
, wxMOD_SHIFT
);
612 m_coloursCustomized
= 0;
617 #if wxPG_DOUBLE_BUFFER
618 m_doubleBuffer
= (wxBitmap
*) NULL
;
621 m_windowsToDelete
= NULL
;
623 #ifndef wxPG_ICON_WIDTH
629 m_iconWidth
= wxPG_ICON_WIDTH
;
634 m_gutterWidth
= wxPG_GUTTER_MIN
;
635 m_subgroup_extramargin
= 10;
639 m_width
= m_height
= 0;
641 SetButtonShortcut(0);
643 m_keyComboConsumed
= 0;
645 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
648 m_chgInfo_changedProperty
= NULL
;
651 // -----------------------------------------------------------------------
654 // Initialize after parent etc. set
656 void wxPropertyGrid::Init2()
658 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
661 // Smaller controls on Mac
662 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
665 // Now create state, if one didn't exist already
666 // (wxPropertyGridManager might have created it for us).
669 m_pState
= CreateState();
670 m_pState
->m_pPropGrid
= this;
671 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
674 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
675 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
677 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
679 m_pState
->InitNonCatMode();
681 m_pState
->m_properties
= m_pState
->m_abcArray
;
684 GetClientSize(&m_width
,&m_height
);
686 #ifndef wxPG_ICON_WIDTH
687 // create two bitmap nodes for drawing
688 m_expandbmp
= new wxBitmap(expand_xpm
);
689 m_collbmp
= new wxBitmap(collapse_xpm
);
691 // calculate average font height for bitmap centering
693 m_iconWidth
= m_expandbmp
->GetWidth();
694 m_iconHeight
= m_expandbmp
->GetHeight();
697 m_curcursor
= wxCURSOR_ARROW
;
698 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
700 // adjust bitmap icon y position so they are centered
701 m_vspacing
= wxPG_DEFAULT_VSPACING
;
705 wxFont useFont
= wxScrolledWindow::GetFont();
706 wxScrolledWindow::SetOwnFont( useFont
);
709 // This should be otherwise called by SetOwnFont
710 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
712 // Add base brush item
713 m_arrBgBrushes
.Add((void*)new wxPGBrush());
715 // Add base colour items
716 m_arrFgCols
.Add((void*)new wxPGColour());
717 m_arrFgCols
.Add((void*)new wxPGColour());
721 // This helps with flicker
722 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
725 wxPGTLWHandler
* handler
= new wxPGTLWHandler(this);
726 m_tlp
= ::wxGetTopLevelParent(this);
727 m_tlwHandler
= handler
;
728 m_tlp
->PushEventHandler(handler
);
730 // set virtual size to this window size
731 wxSize wndsize
= GetSize();
732 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
734 m_timeCreated
= ::wxGetLocalTimeMillis();
736 m_canvas
= new wxPGCanvas();
737 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
738 (GetWindowStyle() & wxTAB_TRAVERSAL
) | wxWANTS_CHARS
| wxCLIP_CHILDREN
);
739 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
741 m_iFlags
|= wxPG_FL_INITIALIZED
;
743 m_ncWidth
= wndsize
.GetWidth();
745 // Need to call OnResize handler or size given in constructor/Create
747 wxSizeEvent
sizeEvent(wndsize
,0);
751 // -----------------------------------------------------------------------
753 wxPropertyGrid::~wxPropertyGrid()
757 DoSelectProperty(NULL
);
759 // This should do prevent things from going too badly wrong
760 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
762 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
763 m_canvas
->ReleaseMouse();
765 wxPGTLWHandler
* handler
= (wxPGTLWHandler
*) m_tlwHandler
;
766 m_tlp
->RemoveEventHandler(handler
);
770 if ( IsEditorsValueModified() )
771 ::wxMessageBox(wxS("Most recent change in property editor was lost!!!\n\n(if you don't want this to happen, close your frames and dialogs using Close(false).)"),
772 wxS("wxPropertyGrid Debug Warning") );
775 #if wxPG_DOUBLE_BUFFER
776 if ( m_doubleBuffer
)
777 delete m_doubleBuffer
;
780 delete m_windowsToDelete
;
782 //m_selected = (wxPGProperty*) NULL;
784 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
787 delete m_cursorSizeWE
;
789 #ifndef wxPG_ICON_WIDTH
794 // Delete cached text colours.
795 for ( i
=0; i
<m_arrFgCols
.size(); i
++ )
797 delete (wxPGColour
*)m_arrFgCols
.Item(i
);
800 // Delete cached brushes.
801 for ( i
=0; i
<m_arrBgBrushes
.size(); i
++ )
803 delete (wxPGBrush
*)m_arrBgBrushes
.Item(i
);
806 // Delete common value records
807 for ( i
=0; i
<m_commonValues
.size(); i
++ )
809 delete GetCommonValue(i
);
813 // -----------------------------------------------------------------------
815 bool wxPropertyGrid::Destroy()
817 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
818 m_canvas
->ReleaseMouse();
820 return wxScrolledWindow::Destroy();
823 // -----------------------------------------------------------------------
825 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
827 return new wxPropertyGridPageState();
830 // -----------------------------------------------------------------------
831 // wxPropertyGrid overridden wxWindow methods
832 // -----------------------------------------------------------------------
834 void wxPropertyGrid::SetWindowStyleFlag( long style
)
836 long old_style
= m_windowStyle
;
838 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
840 wxASSERT( m_pState
);
842 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
845 EnableCategories( true );
847 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
849 // Disable categories
850 EnableCategories( false );
852 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
858 PrepareAfterItemsAdded();
860 m_pState
->m_itemsAdded
= 1;
862 #if wxPG_SUPPORT_TOOLTIPS
863 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
869 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
870 SetToolTip ( tooltip );
871 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
874 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
879 m_canvas
->SetToolTip( (wxToolTip
*) NULL
);
884 wxScrolledWindow::SetWindowStyleFlag ( style
);
886 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
888 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
890 CalculateFontAndBitmapStuff( m_vspacing
);
896 // -----------------------------------------------------------------------
898 void wxPropertyGrid::Freeze()
902 wxScrolledWindow::Freeze();
907 // -----------------------------------------------------------------------
909 void wxPropertyGrid::Thaw()
915 wxScrolledWindow::Thaw();
916 RecalculateVirtualSize();
917 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
921 // Force property re-selection
923 DoSelectProperty(m_selected
, wxPG_SEL_FORCE
);
927 // -----------------------------------------------------------------------
929 void wxPropertyGrid::SetExtraStyle( long exStyle
)
931 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
933 #if defined(__WXMSW__)
936 // Don't use WS_EX_COMPOSITED just now.
939 if ( m_iFlags & wxPG_FL_IN_MANAGER )
940 hWnd = (HWND)GetParent()->GetHWND();
942 hWnd = (HWND)GetHWND();
944 ::SetWindowLong( hWnd, GWL_EXSTYLE,
945 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
948 //#elif defined(__WXGTK20__)
950 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
951 // truly was double-buffered.
952 if ( !this->IsDoubleBuffered() )
954 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
958 #if wxPG_DOUBLE_BUFFER
959 delete m_doubleBuffer
;
960 m_doubleBuffer
= NULL
;
965 wxScrolledWindow::SetExtraStyle( exStyle
);
967 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
968 m_pState
->InitNonCatMode();
970 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
971 m_windowStyle
|= wxPG_TOOLTIPS
;
974 wxPGGlobalVars
->m_extraStyle
= exStyle
;
977 // -----------------------------------------------------------------------
979 // returns the best acceptable minimal size
980 wxSize
wxPropertyGrid::DoGetBestSize() const
983 if ( m_lineHeight
> hei
)
985 wxSize sz
= wxSize( 60, hei
+40 );
991 // -----------------------------------------------------------------------
992 // wxPropertyGrid Font and Colour Methods
993 // -----------------------------------------------------------------------
995 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
999 m_captionFont
= wxScrolledWindow::GetFont();
1001 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1002 m_subgroup_extramargin
= x
+ (x
/2);
1005 #if wxPG_USE_RENDERER_NATIVE
1006 m_iconWidth
= wxPG_ICON_WIDTH
;
1007 #elif wxPG_ICON_WIDTH
1009 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
1010 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
1011 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
1015 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
1016 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
1017 m_gutterWidth
= wxPG_GUTTER_MIN
;
1020 if ( vspacing
<= 1 ) vdiv
= 12;
1021 else if ( vspacing
>= 3 ) vdiv
= 3;
1023 m_spacingy
= m_fontHeight
/ vdiv
;
1024 if ( m_spacingy
< wxPG_YSPACING_MIN
)
1025 m_spacingy
= wxPG_YSPACING_MIN
;
1028 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
1029 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1031 m_captionFont
.SetWeight(wxBOLD
);
1032 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1034 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1037 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1038 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1041 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1043 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1044 RecalculateVirtualSize();
1046 InvalidateBestSize();
1049 // -----------------------------------------------------------------------
1051 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1057 // -----------------------------------------------------------------------
1059 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1060 int ga
= 1000, int ba
= 1000,
1061 bool forceDifferent
= false)
1068 // Recursion guard (allow 2 max)
1069 static int isinside
= 0;
1071 wxCHECK_MSG( isinside
< 3,
1073 wxT("wxPGAdjustColour should not be recursively called more than once") );
1078 int g
= src
.Green();
1081 if ( r2
>255 ) r2
= 255;
1082 else if ( r2
<0) r2
= 0;
1084 if ( g2
>255 ) g2
= 255;
1085 else if ( g2
<0) g2
= 0;
1087 if ( b2
>255 ) b2
= 255;
1088 else if ( b2
<0) b2
= 0;
1090 // Make sure they are somewhat different
1091 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1092 dst
= wxPGAdjustColour(src
,-(ra
*2));
1094 dst
= wxColour(r2
,g2
,b2
);
1096 // Recursion guard (allow 2 max)
1103 static int wxPGGetColAvg( const wxColour
& col
)
1105 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1109 void wxPropertyGrid::RegainColours()
1111 wxColour def_bgcol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1113 if ( !(m_coloursCustomized
& 0x0002) )
1115 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1117 // Make sure colour is dark enough
1119 int colDec
= wxPGGetColAvg(col
) - 230;
1121 int colDec
= wxPGGetColAvg(col
) - 200;
1124 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1129 if ( !(m_coloursCustomized
& 0x0001) )
1130 m_colMargin
= m_colCapBack
;
1132 if ( !(m_coloursCustomized
& 0x0004) )
1139 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1140 m_colCapFore
= capForeCol
;
1142 // Set the cached colour as well.
1143 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(capForeCol
);
1146 if ( !(m_coloursCustomized
& 0x0008) )
1148 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1149 m_colPropBack
= bgCol
;
1151 // Set the cached brush as well.
1152 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(bgCol
);
1155 if ( !(m_coloursCustomized
& 0x0010) )
1157 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1158 m_colPropFore
= fgCol
;
1160 // Set the cached colour as well.
1161 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(fgCol
);
1164 if ( !(m_coloursCustomized
& 0x0020) )
1165 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1167 if ( !(m_coloursCustomized
& 0x0040) )
1168 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1170 if ( !(m_coloursCustomized
& 0x0080) )
1171 m_colLine
= m_colCapBack
;
1173 if ( !(m_coloursCustomized
& 0x0100) )
1174 m_colDisPropFore
= m_colCapFore
;
1176 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1179 // -----------------------------------------------------------------------
1181 void wxPropertyGrid::ResetColours()
1183 m_coloursCustomized
= 0;
1190 // -----------------------------------------------------------------------
1192 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1194 // Must disable active editor.
1197 bool selRes
= ClearSelection();
1198 wxPG_CHECK_MSG_DBG( selRes
,
1200 wxT("failed to deselect a property (editor probably had invalid value)") );
1203 // TODO: Following code is disabled with wxMac because
1204 // it is reported to fail. I (JMS) cannot debug it
1205 // personally right now.
1206 #if !defined(__WXMAC__)
1207 bool res
= wxScrolledWindow::SetFont( font
);
1210 CalculateFontAndBitmapStuff( m_vspacing
);
1213 m_pState
->CalculateFontAndBitmapStuff(m_vspacing
);
1221 // TODO: Remove after SetFont crash fixed.
1222 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1224 wxLogDebug(wxT("WARNING: propGrid.cpp: wxPropertyGrid::SetFont has been disabled on wxMac since there has been crash reported in it. If you are willing to debug the cause, replace line '#if !defined(__WXMAC__)' with line '#if 1' in wxPropertyGrid::SetFont."));
1230 // -----------------------------------------------------------------------
1232 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1235 m_coloursCustomized
|= 0x80;
1239 // -----------------------------------------------------------------------
1241 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1244 m_coloursCustomized
|= 0x01;
1248 // -----------------------------------------------------------------------
1250 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1252 m_colPropBack
= col
;
1253 m_coloursCustomized
|= 0x08;
1255 // Set the cached brush as well.
1256 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(col
);
1261 // -----------------------------------------------------------------------
1263 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1265 m_colPropFore
= col
;
1266 m_coloursCustomized
|= 0x10;
1268 // Set the cached colour as well.
1269 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(col
);
1274 // -----------------------------------------------------------------------
1276 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1278 m_colEmptySpace
= col
;
1283 // -----------------------------------------------------------------------
1285 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1287 m_colDisPropFore
= col
;
1288 m_coloursCustomized
|= 0x100;
1292 // -----------------------------------------------------------------------
1294 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1297 m_coloursCustomized
|= 0x20;
1301 // -----------------------------------------------------------------------
1303 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1306 m_coloursCustomized
|= 0x40;
1310 // -----------------------------------------------------------------------
1312 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1315 m_coloursCustomized
|= 0x02;
1319 // -----------------------------------------------------------------------
1321 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1324 m_coloursCustomized
|= 0x04;
1326 // Set the cached colour as well.
1327 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(col
);
1332 // -----------------------------------------------------------------------
1334 void wxPropertyGrid::SetBackgroundColourIndex( wxPGProperty
* p
, int index
)
1336 unsigned char ind
= index
;
1338 p
->m_bgColIndex
= ind
;
1341 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1342 SetBackgroundColourIndex(p
->Item(i
),index
);
1345 // -----------------------------------------------------------------------
1347 void wxPropertyGrid::SetPropertyBackgroundColour( wxPGPropArg id
, const wxColour
& colour
)
1349 wxPG_PROP_ARG_CALL_PROLOG()
1354 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1356 // As it is most likely that the previous colour is used, start comparison
1358 for ( i
=(m_arrBgBrushes
.size()-1); i
>0; i
-- )
1360 if ( ((wxPGBrush
*)m_arrBgBrushes
.Item(i
))->GetColourAsLong() == colAsLong
)
1369 colInd
= m_arrBgBrushes
.size();
1370 wxCHECK_RET( colInd
< 256, wxT("wxPropertyGrid: Warning - Only 255 different property background colours allowed.") );
1371 m_arrBgBrushes
.Add( (void*)new wxPGBrush(colour
) );
1375 SetBackgroundColourIndex(p
,colInd
);
1377 // If this was on a visible grid, then draw it.
1378 DrawItemAndChildren(p
);
1381 // -----------------------------------------------------------------------
1383 wxColour
wxPropertyGrid::GetPropertyBackgroundColour( wxPGPropArg id
) const
1385 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1387 return ((wxPGBrush
*)m_arrBgBrushes
.Item(p
->m_bgColIndex
))->GetColour();
1390 // -----------------------------------------------------------------------
1392 void wxPropertyGrid::SetTextColourIndex( wxPGProperty
* p
, int index
, int flags
)
1394 unsigned char ind
= index
;
1396 p
->m_fgColIndex
= ind
;
1398 if ( p
->GetChildCount() && (flags
& wxPG_RECURSE
) )
1401 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1402 SetTextColourIndex( p
->Item(i
), index
, flags
);
1406 // -----------------------------------------------------------------------
1408 int wxPropertyGrid::CacheColour( const wxColour
& colour
)
1413 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1415 // As it is most likely that the previous colour is used, start comparison
1417 for ( i
=(m_arrFgCols
.size()-1); i
>0; i
-- )
1419 if ( ((wxPGColour
*)m_arrFgCols
.Item(i
))->GetColourAsLong() == colAsLong
)
1428 colInd
= m_arrFgCols
.size();
1429 wxCHECK_MSG( colInd
< 256, 0, wxT("wxPropertyGrid: Warning - Only 255 different property foreground colours allowed.") );
1430 m_arrFgCols
.Add( (void*)new wxPGColour(colour
) );
1436 // -----------------------------------------------------------------------
1438 void wxPropertyGrid::SetPropertyTextColour( wxPGPropArg id
, const wxColour
& colour
,
1441 wxPG_PROP_ARG_CALL_PROLOG()
1443 if ( p
->IsCategory() )
1445 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1446 cat
->SetTextColIndex(CacheColour(colour
));
1452 flags
|= wxPG_RECURSE
;
1453 SetTextColourIndex(p
, CacheColour(colour
), flags
);
1455 DrawItemAndChildren(p
);
1458 // -----------------------------------------------------------------------
1460 wxColour
wxPropertyGrid::GetPropertyTextColour( wxPGPropArg id
) const
1462 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1464 return wxColour(*((wxPGColour
*)m_arrFgCols
.Item(p
->m_fgColIndex
)));
1467 void wxPropertyGrid::SetPropertyColoursToDefault( wxPGPropArg id
)
1469 wxPG_PROP_ARG_CALL_PROLOG()
1471 SetBackgroundColourIndex( p
, 0 );
1472 SetTextColourIndex( p
, 0, wxPG_RECURSE
);
1474 if ( p
->IsCategory() )
1476 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1477 cat
->SetTextColIndex(1);
1481 // -----------------------------------------------------------------------
1482 // wxPropertyGrid property adding and removal
1483 // -----------------------------------------------------------------------
1485 void wxPropertyGrid::PrepareAfterItemsAdded()
1487 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1489 m_pState
->m_itemsAdded
= 0;
1491 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1494 RecalculateVirtualSize();
1497 // -----------------------------------------------------------------------
1498 // wxPropertyGrid property value setting and getting
1499 // -----------------------------------------------------------------------
1501 void wxPropertyGrid::DoSetPropertyValueUnspecified( wxPGProperty
* p
)
1503 m_pState
->DoSetPropertyValueUnspecified(p
);
1504 DrawItemAndChildren(p
);
1506 wxPGProperty
* parent
= p
->GetParent();
1507 while ( (parent
->GetFlags() & wxPG_PROP_PARENTAL_FLAGS
) == wxPG_PROP_MISC_PARENT
)
1510 parent
= parent
->GetParent();
1514 // -----------------------------------------------------------------------
1515 // wxPropertyGrid property operations
1516 // -----------------------------------------------------------------------
1518 void wxPropertyGrid::DoSetPropertyName( wxPGProperty
* p
, const wxString
& newname
)
1520 wxCHECK_RET( p
, wxT("invalid property id") );
1522 if ( p
->GetBaseName().Len() ) m_pState
->m_dictName
.erase( p
->GetBaseName() );
1523 if ( newname
.Len() ) m_pState
->m_dictName
[newname
] = (void*) p
;
1525 p
->DoSetName(newname
);
1528 // -----------------------------------------------------------------------
1530 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1532 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1536 bool changed
= false;
1538 // Is it inside collapsed section?
1539 if ( !p
->IsVisible() )
1542 wxPGProperty
* parent
= p
->GetParent();
1543 wxPGProperty
* grandparent
= parent
->GetParent();
1545 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1546 Expand( grandparent
);
1554 GetViewStart(&vx
,&vy
);
1555 vy
*=wxPG_PIXELS_PER_UNIT
;
1561 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1562 m_iFlags
|= wxPG_FL_SCROLLED
;
1565 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1567 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1568 m_iFlags
|= wxPG_FL_SCROLLED
;
1578 // -----------------------------------------------------------------------
1579 // wxPropertyGrid helper methods called by properties
1580 // -----------------------------------------------------------------------
1582 // Control font changer helper.
1583 void wxPropertyGrid::SetCurControlBoldFont()
1585 wxASSERT( m_wndEditor
);
1586 m_wndEditor
->SetFont( m_captionFont
);
1589 // -----------------------------------------------------------------------
1591 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1594 #if wxPG_SMALL_SCREEN
1595 // On small-screen devices, always show dialogs with default position and size.
1596 return wxDefaultPosition
;
1598 int splitterX
= GetSplitterPosition();
1602 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1604 ImprovedClientToScreen( &x
, &y
);
1606 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1607 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1614 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1624 new_y
= y
+ m_lineHeight
;
1626 return wxPoint(new_x
,new_y
);
1630 // -----------------------------------------------------------------------
1632 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1634 if ( src_str
.length() == 0 )
1640 bool prev_is_slash
= false;
1642 wxString::const_iterator i
= src_str
.begin();
1646 for ( ; i
!= src_str
.end(); i
++ )
1650 if ( a
!= wxS('\\') )
1652 if ( !prev_is_slash
)
1658 if ( a
== wxS('n') )
1661 dst_str
<< wxS('\n');
1663 dst_str
<< wxS('\n');
1666 else if ( a
== wxS('t') )
1667 dst_str
<< wxS('\t');
1671 prev_is_slash
= false;
1675 if ( prev_is_slash
)
1677 dst_str
<< wxS('\\');
1678 prev_is_slash
= false;
1682 prev_is_slash
= true;
1689 // -----------------------------------------------------------------------
1691 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1693 if ( src_str
.length() == 0 )
1699 wxString::const_iterator i
= src_str
.begin();
1700 wxUniChar prev_a
= wxS('\0');
1704 for ( ; i
!= src_str
.end(); i
++ )
1708 if ( a
>= wxS(' ') )
1710 // This surely is not something that requires an escape sequence.
1715 // This might need...
1716 if ( a
== wxS('\r') )
1718 // DOS style line end.
1719 // Already taken care below
1721 else if ( a
== wxS('\n') )
1722 // UNIX style line end.
1723 dst_str
<< wxS("\\n");
1724 else if ( a
== wxS('\t') )
1726 dst_str
<< wxS('\t');
1729 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1739 // -----------------------------------------------------------------------
1741 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1745 return (wxPGProperty
*) NULL
;
1748 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1751 // -----------------------------------------------------------------------
1752 // wxPropertyGrid graphics related methods
1753 // -----------------------------------------------------------------------
1755 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1759 // Update everything inside the box
1760 wxRect r
= GetUpdateRegion().GetBox();
1762 dc
.SetPen(m_colEmptySpace
);
1763 dc
.SetBrush(m_colEmptySpace
);
1764 dc
.DrawRectangle(r
);
1767 // -----------------------------------------------------------------------
1769 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1770 wxPGProperty
* property
) const
1772 // Prepare rectangle to be used
1774 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1775 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1777 #if (wxPG_USE_RENDERER_NATIVE)
1779 #elif wxPG_ICON_WIDTH
1780 // Drawing expand/collapse button manually
1781 dc
.SetPen(m_colPropFore
);
1782 if ( property
->IsCategory() )
1783 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1785 dc
.SetBrush(m_colPropBack
);
1787 dc
.DrawRectangle( r
);
1788 int _y
= r
.y
+(m_iconWidth
/2);
1789 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1794 if ( property
->IsExpanded() )
1796 // wxRenderer functions are non-mutating in nature, so it
1797 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1798 // Hopefully this does not cause problems.
1799 #if (wxPG_USE_RENDERER_NATIVE)
1800 wxRendererNative::Get().DrawTreeItemButton(
1806 #elif wxPG_ICON_WIDTH
1815 #if (wxPG_USE_RENDERER_NATIVE)
1816 wxRendererNative::Get().DrawTreeItemButton(
1822 #elif wxPG_ICON_WIDTH
1823 int _x
= r
.x
+(m_iconWidth
/2);
1824 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1830 #if (wxPG_USE_RENDERER_NATIVE)
1832 #elif wxPG_ICON_WIDTH
1835 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1839 // -----------------------------------------------------------------------
1842 // This is the one called by OnPaint event handler and others.
1843 // topy and bottomy are already unscrolled (ie. physical)
1845 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1847 unsigned int bottomy
,
1848 const wxRect
* clipRect
)
1850 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1852 m_pState
->EnsureVirtualHeight();
1854 wxRect tempClipRect
;
1857 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1858 clipRect
= &tempClipRect
;
1861 // items added check
1862 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1864 int paintFinishY
= 0;
1866 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1869 bool isBuffered
= false;
1871 #if wxPG_DOUBLE_BUFFER
1872 wxMemoryDC
* bufferDC
= NULL
;
1874 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1876 if ( !m_doubleBuffer
)
1878 paintFinishY
= clipRect
->y
;
1883 bufferDC
= new wxMemoryDC();
1885 // If nothing was changed, then just copy from double-buffer
1886 bufferDC
->SelectObject( *m_doubleBuffer
);
1896 dc
.SetClippingRegion( *clipRect
);
1897 paintFinishY
= DoDrawItems( *dcPtr
, NULL
, NULL
, clipRect
, isBuffered
);
1900 #if wxPG_DOUBLE_BUFFER
1903 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1904 bufferDC
, 0, 0, wxCOPY
);
1905 dc
.DestroyClippingRegion(); // Is this really necessary?
1911 // Clear area beyond bottomY?
1912 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1914 dc
.SetPen(m_colEmptySpace
);
1915 dc
.SetBrush(m_colEmptySpace
);
1916 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1920 // -----------------------------------------------------------------------
1922 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1923 const wxPGProperty
* firstItem
,
1924 const wxPGProperty
* lastItem
,
1925 const wxRect
* clipRect
,
1926 bool isBuffered
) const
1928 // TODO: This should somehow be eliminated.
1929 wxRect tempClipRect
;
1932 wxASSERT(firstItem
);
1934 tempClipRect
= GetPropertyRect(firstItem
, lastItem
);
1935 clipRect
= &tempClipRect
;
1939 firstItem
= DoGetItemAtY(clipRect
->y
);
1943 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1945 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1948 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1951 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1952 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1954 int lh
= m_lineHeight
;
1957 int lastItemBottomY
;
1959 firstItemTopY
= clipRect
->y
;
1960 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1962 // Align y coordinates to item boundaries
1963 firstItemTopY
-= firstItemTopY
% lh
;
1964 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1965 lastItemBottomY
-= 1;
1967 // Entire range outside scrolled, visible area?
1968 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1971 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1975 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
1976 firstItem->GetLabel().c_str(),
1977 lastItem->GetLabel().c_str(),
1978 (int)(lastItemBottomY - firstItemTopY),
1980 (unsigned long)clipRect );
1985 long windowStyle
= m_windowStyle
;
1991 // With wxPG_DOUBLE_BUFFER, do double buffering
1992 // - buffer's y = 0, so align cliprect and coordinates to that
1994 #if wxPG_DOUBLE_BUFFER
2000 xRelMod
= clipRect
->x
;
2001 yRelMod
= clipRect
->y
;
2004 // clipRect conversion
2012 firstItemTopY
-= yRelMod
;
2013 lastItemBottomY
-= yRelMod
;
2016 wxUnusedVar(isBuffered
);
2019 int x
= m_marginWidth
- xRelMod
;
2021 const wxFont
& normalfont
= m_font
;
2023 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) ? true : false;
2025 bool isEnabled
= IsEnabled();
2028 // Prepare some pens and brushes that are often changed to.
2031 wxBrush
marginBrush(m_colMargin
);
2032 wxPen
marginPen(m_colMargin
);
2033 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
2034 wxPen
linepen(m_colLine
,1,wxSOLID
);
2036 // pen that has same colour as text
2037 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
2040 // Clear margin with background colour
2042 dc
.SetBrush( marginBrush
);
2043 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2045 dc
.SetPen( *wxTRANSPARENT_PEN
);
2046 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2049 const wxPGProperty
* selected
= m_selected
;
2050 const wxPropertyGridPageState
* state
= m_pState
;
2052 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2053 bool wasSelectedPainted
= false;
2056 // TODO: Only render columns that are within clipping region.
2058 dc
.SetFont(normalfont
);
2060 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2061 int endScanBottomY
= lastItemBottomY
+ lh
;
2062 int y
= firstItemTopY
;
2065 // Pregenerate list of visible properties.
2066 wxArrayPGProperty visPropArray
;
2067 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2069 for ( ; !it
.AtEnd(); it
.Next() )
2071 const wxPGProperty
* p
= *it
;
2073 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2075 visPropArray
.push_back((wxPGProperty
*)p
);
2077 if ( y
> endScanBottomY
)
2084 visPropArray
.push_back(NULL
);
2086 wxPGProperty
* nextP
= visPropArray
[0];
2088 int gridWidth
= state
->m_width
;
2091 for ( unsigned int arrInd
=1;
2092 nextP
&& y
<= lastItemBottomY
;
2095 wxPGProperty
* p
= nextP
;
2096 nextP
= visPropArray
[arrInd
];
2098 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2099 int textMarginHere
= x
;
2100 int renderFlags
= wxPGCellRenderer::Control
;
2102 int greyDepth
= m_marginWidth
;
2103 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2104 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2106 int greyDepthX
= greyDepth
- xRelMod
;
2108 // Use basic depth if in non-categoric mode and parent is base array.
2109 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2111 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2114 // Paint margin area
2115 dc
.SetBrush(marginBrush
);
2116 dc
.SetPen(marginPen
);
2117 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2119 dc
.SetPen( linepen
);
2124 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2130 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
2132 sx
+= state
->m_colWidths
[si
];
2133 dc
.DrawLine( sx
, y
, sx
, y2
);
2136 // Horizontal Line, below
2137 // (not if both this and next is category caption)
2138 if ( p
->IsCategory() &&
2139 nextP
&& nextP
->IsCategory() )
2140 dc
.SetPen(m_colCapBack
);
2142 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2144 if ( p
== selected
)
2146 renderFlags
|= wxPGCellRenderer::Selected
;
2147 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2148 wasSelectedPainted
= true;
2156 if ( p
->IsCategory() )
2158 if ( p
->m_fgColIndex
== 0 )
2159 rowFgCol
= m_colCapFore
;
2161 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2162 rowBgBrush
= wxBrush(m_colCapBack
);
2164 else if ( p
!= selected
)
2166 // Disabled may get different colour.
2167 if ( !p
->IsEnabled() )
2168 rowFgCol
= m_colDisPropFore
;
2170 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2172 rowBgBrush
= *(wxPGBrush
*)m_arrBgBrushes
[p
->m_bgColIndex
];
2176 // Selected gets different colour.
2177 if ( reallyFocused
)
2179 rowFgCol
= m_colSelFore
;
2180 rowBgBrush
= wxBrush(m_colSelBack
);
2182 else if ( isEnabled
)
2184 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2185 rowBgBrush
= marginBrush
;
2189 rowFgCol
= m_colDisPropFore
;
2190 rowBgBrush
= wxBrush(m_colSelBack
);
2194 bool fontChanged
= false;
2196 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2201 if ( p
->IsCategory() )
2203 // Captions are all cells merged as one
2204 dc
.SetFont(m_captionFont
);
2206 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2208 dc
.SetBrush(rowBgBrush
);
2209 dc
.SetPen(rowBgBrush
.GetColour());
2210 dc
.SetTextForeground(rowFgCol
);
2212 dc
.DrawRectangle(cellRect
);
2215 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
2216 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
2219 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2220 DrawExpanderButton( dc
, butRect
, p
);
2224 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
2226 dc
.SetFont(m_captionFont
);
2232 int nextCellWidth
= state
->m_colWidths
[0];
2233 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
2234 int textXAdd
= textMarginHere
- greyDepthX
;
2236 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
2238 cellRect
.width
= nextCellWidth
- 1;
2240 bool ctrlCell
= false;
2243 if ( p
== selected
&& m_wndEditor
&& ci
== 1 )
2245 wxColour editorBgCol
= GetEditorControl()->GetBackgroundColour();
2246 dc
.SetBrush(editorBgCol
);
2247 dc
.SetPen(editorBgCol
);
2248 dc
.SetTextForeground(m_colPropFore
);
2250 if ( m_dragStatus
== 0 && !(m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2255 dc
.SetBrush(rowBgBrush
);
2256 dc
.SetPen(rowBgBrush
.GetColour());
2257 dc
.SetTextForeground(rowFgCol
);
2260 dc
.DrawRectangle(cellRect
);
2263 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2264 DrawExpanderButton( dc
, butRect
, p
);
2266 dc
.SetClippingRegion(cellRect
);
2268 cellRect
.x
+= textXAdd
;
2269 cellRect
.width
-= textXAdd
;
2274 wxPGCellRenderer
* renderer
;
2275 int cmnVal
= p
->GetCommonValue();
2276 if ( cmnVal
== -1 || ci
!= 1 )
2278 renderer
= p
->GetCellRenderer(ci
);
2279 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2283 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2284 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2288 cellX
+= state
->m_colWidths
[ci
];
2289 if ( ci
< (state
->m_colWidths
.size()-1) )
2290 nextCellWidth
= state
->m_colWidths
[ci
+1];
2292 dc
.DestroyClippingRegion(); // Is this really necessary?
2298 dc
.SetFont(normalfont
);
2303 // Refresh editor controls (seems not needed on msw)
2304 // NOTE: This code is mandatory for GTK!
2305 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2306 if ( wasSelectedPainted
)
2309 m_wndEditor
->Refresh();
2311 m_wndEditor2
->Refresh();
2318 // -----------------------------------------------------------------------
2320 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2324 if ( m_width
< 10 || m_height
< 10 ||
2325 !m_pState
->m_properties
->GetChildCount() ||
2326 p1
== (wxPGProperty
*) NULL
)
2327 return wxRect(0,0,0,0);
2332 // Return rect which encloses the given property range
2334 int visTop
= p1
->GetY();
2337 visBottom
= p2
->GetY() + m_lineHeight
;
2339 visBottom
= m_height
+ visTop
;
2341 // If seleced property is inside the range, we'll extend the range to include
2343 wxPGProperty
* selected
= m_selected
;
2346 int selectedY
= selected
->GetY();
2347 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2349 wxWindow
* editor
= GetEditorControl();
2352 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2353 if ( visBottom2
> visBottom
)
2354 visBottom
= visBottom2
;
2359 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2362 // -----------------------------------------------------------------------
2364 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2369 if ( m_pState
->m_itemsAdded
)
2370 PrepareAfterItemsAdded();
2372 wxRect r
= GetPropertyRect(p1
, p2
);
2375 m_canvas
->RefreshRect(r
);
2379 // -----------------------------------------------------------------------
2381 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2383 if ( p
== m_selected
)
2384 DoSelectProperty(p
, wxPG_SEL_FORCE
);
2386 DrawItemAndChildren(p
);
2389 // -----------------------------------------------------------------------
2391 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2396 // Draw item, children, and parent too, if it is not category
2397 wxPGProperty
* parent
= p
->GetParent();
2400 !parent
->IsCategory() &&
2401 parent
->GetParent() )
2404 parent
= parent
->GetParent();
2407 DrawItemAndChildren(p
);
2410 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2412 wxCHECK_RET( p
, wxT("invalid property id") );
2414 // Do not draw if in non-visible page
2415 if ( p
->GetParentState() != m_pState
)
2418 // do not draw a single item if multiple pending
2419 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2422 wxWindow
* wndPrimary
= GetEditorControl();
2424 // Update child control.
2425 if ( m_selected
&& m_selected
->GetParent() == p
)
2426 m_selected
->UpdateControl(wndPrimary
);
2428 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2430 DrawItems(p
, lastDrawn
);
2433 // -----------------------------------------------------------------------
2435 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2436 const wxRect
*rect
)
2438 PrepareAfterItemsAdded();
2440 wxWindow::Refresh(false);
2442 // TODO: Coordinate translation
2443 m_canvas
->Refresh(false, rect
);
2445 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2446 // I think this really helps only GTK+1.2
2447 if ( m_wndEditor
) m_wndEditor
->Refresh();
2448 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2452 // -----------------------------------------------------------------------
2453 // wxPropertyGrid global operations
2454 // -----------------------------------------------------------------------
2456 void wxPropertyGrid::Clear()
2460 bool selRes
= DoSelectProperty(NULL
, wxPG_SEL_DELETING
); // This must be before state clear
2461 wxPG_CHECK_RET_DBG( selRes
,
2462 wxT("failed to deselect a property (editor probably had invalid value)") );
2465 m_pState
->DoClear();
2471 RecalculateVirtualSize();
2473 // Need to clear some area at the end
2475 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2478 // -----------------------------------------------------------------------
2480 bool wxPropertyGrid::EnableCategories( bool enable
)
2482 if ( !ClearSelection() )
2488 // Enable categories
2491 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2496 // Disable categories
2498 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2501 if ( !m_pState
->EnableCategories(enable
) )
2506 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2508 m_pState
->m_itemsAdded
= 1; // force
2509 PrepareAfterItemsAdded();
2513 m_pState
->m_itemsAdded
= 1;
2515 // No need for RecalculateVirtualSize() here - it is already called in
2516 // wxPropertyGridPageState method above.
2523 // -----------------------------------------------------------------------
2525 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2527 wxASSERT( pNewState
);
2528 wxASSERT( pNewState
->GetGrid() );
2530 if ( pNewState
== m_pState
)
2533 wxPGProperty
* oldSelection
= m_selected
;
2538 bool selRes
= ClearSelection();
2539 wxPG_CHECK_RET_DBG( selRes
,
2540 wxT("failed to deselect a property (editor probably had invalid value)") );
2543 m_pState
->m_selected
= oldSelection
;
2545 bool orig_mode
= m_pState
->IsInNonCatMode();
2546 bool new_state_mode
= pNewState
->IsInNonCatMode();
2548 m_pState
= pNewState
;
2551 int pgWidth
= GetClientSize().x
;
2552 if ( HasVirtualWidth() )
2554 int minWidth
= pgWidth
;
2555 if ( pNewState
->m_width
< minWidth
)
2557 pNewState
->m_width
= minWidth
;
2558 pNewState
->CheckColumnWidths();
2564 // Just in case, fully re-center splitter
2565 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2566 pNewState
->m_fSplitterX
= -1.0;
2568 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2571 m_propHover
= (wxPGProperty
*) NULL
;
2573 // If necessary, convert state to correct mode.
2574 if ( orig_mode
!= new_state_mode
)
2576 // This should refresh as well.
2577 EnableCategories( orig_mode
?false:true );
2579 else if ( !m_frozen
)
2581 // Refresh, if not frozen.
2582 if ( m_pState
->m_itemsAdded
)
2583 PrepareAfterItemsAdded();
2586 if ( m_pState
->m_selected
)
2587 DoSelectProperty( m_pState
->m_selected
);
2589 RecalculateVirtualSize(0);
2593 m_pState
->m_itemsAdded
= 1;
2596 // -----------------------------------------------------------------------
2598 void wxPropertyGrid::SortChildren( wxPGPropArg id
)
2600 wxPG_PROP_ARG_CALL_PROLOG()
2602 m_pState
->SortChildren( p
);
2605 // -----------------------------------------------------------------------
2607 void wxPropertyGrid::Sort()
2609 bool selRes
= ClearSelection(); // This must be before state clear
2610 wxPG_CHECK_RET_DBG( selRes
,
2611 wxT("failed to deselect a property (editor probably had invalid value)") );
2616 // -----------------------------------------------------------------------
2618 // Call to SetSplitterPosition will always disable splitter auto-centering
2619 // if parent window is shown.
2620 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2622 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2625 wxPropertyGridPageState
* state
= m_pState
;
2627 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2632 CorrectEditorWidgetSizeX();
2638 // -----------------------------------------------------------------------
2640 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2642 SetSplitterPosition( m_width
/2, true );
2643 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2644 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2647 // -----------------------------------------------------------------------
2648 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2649 // -----------------------------------------------------------------------
2651 // Returns nearest paint visible property (such that will be painted unless
2652 // window is scrolled or resized). If given property is paint visible, then
2653 // it itself will be returned
2654 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2656 int vx
,vy1
;// Top left corner of client
2657 GetViewStart(&vx
,&vy1
);
2658 vy1
*= wxPG_PIXELS_PER_UNIT
;
2660 int vy2
= vy1
+ m_height
;
2661 int propY
= p
->GetY2(m_lineHeight
);
2663 if ( (propY
+ m_lineHeight
) < vy1
)
2666 return DoGetItemAtY( vy1
);
2668 else if ( propY
> vy2
)
2671 return DoGetItemAtY( vy2
);
2674 // Itself paint visible
2679 // -----------------------------------------------------------------------
2681 void wxPropertyGrid::SetButtonShortcut( int keycode
, bool ctrlDown
, bool altDown
)
2685 m_pushButKeyCode
= keycode
;
2686 m_pushButKeyCodeNeedsCtrl
= ctrlDown
? 1 : 0;
2687 m_pushButKeyCodeNeedsAlt
= altDown
? 1 : 0;
2691 m_pushButKeyCode
= WXK_DOWN
;
2692 m_pushButKeyCodeNeedsCtrl
= 0;
2693 m_pushButKeyCodeNeedsAlt
= 1;
2697 // -----------------------------------------------------------------------
2698 // Methods related to change in value, value modification and sending events
2699 // -----------------------------------------------------------------------
2701 // commits any changes in editor of selected property
2702 // return true if validation did not fail
2703 // flags are same as with DoSelectProperty
2704 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2706 // Committing already?
2707 if ( m_inCommitChangesFromEditor
)
2710 // Don't do this if already processing editor event. It might
2711 // induce recursive dialogs and crap like that.
2712 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2714 if ( m_inDoPropertyChanged
)
2721 IsEditorsValueModified() &&
2722 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2725 m_inCommitChangesFromEditor
= 1;
2727 wxVariant
variant(m_selected
->GetValueRef());
2728 bool valueIsPending
= false;
2730 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2731 // due to another window getting focus
2732 wxWindow
* oldFocus
= m_curFocused
;
2734 bool validationFailure
= false;
2735 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2737 m_chgInfo_changedProperty
= NULL
;
2739 // If truly modified, schedule value as pending.
2740 if ( m_selected
->GetEditorClass()->GetValueFromControl( variant
, m_selected
, GetEditorControl() ) )
2742 if ( DoEditorValidate() &&
2743 PerformValidation(m_selected
, variant
) )
2745 valueIsPending
= true;
2749 validationFailure
= true;
2754 EditorsValueWasNotModified();
2759 m_inCommitChangesFromEditor
= 0;
2761 if ( validationFailure
&& !forceSuccess
)
2765 oldFocus
->SetFocus();
2766 m_curFocused
= oldFocus
;
2769 res
= OnValidationFailure(m_selected
, variant
);
2771 // Now prevent further validation failure messages
2774 EditorsValueWasNotModified();
2775 OnValidationFailureReset(m_selected
);
2778 else if ( valueIsPending
)
2780 DoPropertyChanged( m_selected
, flags
);
2781 EditorsValueWasNotModified();
2790 // -----------------------------------------------------------------------
2792 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
)
2795 // Runs all validation functionality.
2796 // Returns true if value passes all tests.
2799 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2801 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2803 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2808 // Adapt list to child values, if necessary
2809 wxVariant listValue
= pendingValue
;
2810 wxVariant
* pPendingValue
= &pendingValue
;
2811 wxVariant
* pList
= NULL
;
2813 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2814 // string value, then we need treat as it was changed instead
2815 // (or, in addition, as is the case with composite string parent).
2816 // This includes creating list variant for child values.
2818 wxPGProperty
* pwc
= p
->GetParent();
2819 wxPGProperty
* changedProperty
= p
;
2820 wxPGProperty
* baseChangedProperty
= changedProperty
;
2821 wxVariant bcpPendingList
;
2823 listValue
= pendingValue
;
2824 listValue
.SetName(p
->GetBaseName());
2827 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2829 wxVariantList tempList
;
2830 wxVariant
lv(tempList
, pwc
->GetBaseName());
2831 lv
.Append(listValue
);
2833 pPendingValue
= &listValue
;
2835 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2837 baseChangedProperty
= pwc
;
2838 bcpPendingList
= lv
;
2841 changedProperty
= pwc
;
2842 pwc
= pwc
->GetParent();
2846 wxPGProperty
* evtChangingProperty
= changedProperty
;
2848 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2850 value
= *pPendingValue
;
2854 // Convert list to child values
2855 pList
= pPendingValue
;
2856 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2859 wxVariant evtChangingValue
= value
;
2861 // FIXME: After proper ValueToString()s added, remove
2862 // this. It is just a temporary fix, as evt_changing
2863 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2864 // (unless it is selected, and textctrl editor is open).
2865 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2867 evtChangingProperty
= baseChangedProperty
;
2868 if ( evtChangingProperty
!= p
)
2870 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2874 evtChangingValue
= pendingValue
;
2878 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2880 if ( changedProperty
== m_selected
)
2882 wxASSERT( m_wndEditor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2883 evtChangingValue
= ((wxTextCtrl
*)m_wndEditor
)->GetValue();
2887 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2891 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2892 m_chgInfo_changedProperty
= changedProperty
;
2893 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2894 m_chgInfo_pendingValue
= value
;
2897 m_chgInfo_valueList
= *pList
;
2899 m_chgInfo_valueList
.MakeNull();
2901 // If changedProperty is not property which value was edited,
2902 // then call wxPGProperty::ValidateValue() for that as well.
2903 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2905 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2909 // SendEvent returns true if event was vetoed
2910 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
, &evtChangingValue
, 0 ) )
2916 // -----------------------------------------------------------------------
2918 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2920 if ( !msg
.length() )
2924 if ( !wxPGGlobalVars
->m_offline
)
2926 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2929 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2932 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
2935 pStatusBar
->SetStatusText(msg
);
2943 ::wxMessageBox(msg
, _T("Property Error"));
2946 // -----------------------------------------------------------------------
2948 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
2950 int vfb
= m_validationInfo
.m_failureBehavior
;
2952 if ( vfb
& wxPG_VFB_BEEP
)
2955 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
2956 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
2958 wxASSERT_MSG( !property
->GetCell(0) && !property
->GetCell(1),
2959 wxT("Currently wxPG_VFB_MARK_CELL only works with properties with standard first two cells") );
2961 if ( !property
->GetCell(0) && !property
->GetCell(1) )
2963 wxColour vfbFg
= *wxWHITE
;
2964 wxColour vfbBg
= *wxRED
;
2965 property
->SetCell(0, new wxPGCell(property
->GetLabel(), wxNullBitmap
, vfbFg
, vfbBg
));
2966 property
->SetCell(1, new wxPGCell(property
->GetDisplayedString(), wxNullBitmap
, vfbFg
, vfbBg
));
2968 DrawItemAndChildren(property
);
2970 if ( property
== m_selected
)
2972 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2974 wxWindow
* editor
= GetEditorControl();
2977 editor
->SetForegroundColour(vfbFg
);
2978 editor
->SetBackgroundColour(vfbBg
);
2984 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
2986 wxString msg
= m_validationInfo
.m_failureMessage
;
2988 if ( !msg
.length() )
2989 msg
= _T("You have entered invalid value. Press ESC to cancel editing.");
2991 DoShowPropertyError(property
, msg
);
2994 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
2997 // -----------------------------------------------------------------------
2999 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
3001 int vfb
= m_validationInfo
.m_failureBehavior
;
3003 if ( vfb
& wxPG_VFB_MARK_CELL
)
3005 property
->SetCell(0, NULL
);
3006 property
->SetCell(1, NULL
);
3008 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
3010 if ( property
== m_selected
&& GetEditorControl() )
3012 // Calling this will recreate the control, thus resetting its colour
3013 RefreshProperty(property
);
3017 DrawItemAndChildren(property
);
3022 // -----------------------------------------------------------------------
3024 // flags are same as with DoSelectProperty
3025 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
3027 if ( m_inDoPropertyChanged
)
3030 wxWindow
* editor
= GetEditorControl();
3032 m_pState
->m_anyModified
= 1;
3034 m_inDoPropertyChanged
= 1;
3036 // Maybe need to update control
3037 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
3039 // These values were calculated in PerformValidation()
3040 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
3041 wxVariant value
= m_chgInfo_pendingValue
;
3043 wxPGProperty
* topPaintedProperty
= changedProperty
;
3045 while ( !topPaintedProperty
->IsCategory() &&
3046 !topPaintedProperty
->IsRoot() )
3048 topPaintedProperty
= topPaintedProperty
->GetParent();
3051 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
3053 // Set as Modified (not if dragging just began)
3054 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
3056 p
->m_flags
|= wxPG_PROP_MODIFIED
;
3057 if ( p
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3060 SetCurControlBoldFont();
3066 // Propagate updates to parent(s)
3068 wxPGProperty
* prevPwc
= NULL
;
3070 while ( prevPwc
!= topPaintedProperty
)
3072 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3074 if ( pwc
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3077 SetCurControlBoldFont();
3081 pwc
= pwc
->GetParent();
3084 // Draw the actual property
3085 DrawItemAndChildren( topPaintedProperty
);
3088 // If value was set by wxPGProperty::OnEvent, then update the editor
3090 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3093 p
->GetEditorClass()->UpdateControl(p
, editor
);
3097 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3098 if ( m_wndEditor
) m_wndEditor
->Refresh();
3099 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3104 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3106 // If top parent has composite string value, then send to child parents,
3107 // starting from baseChangedProperty.
3108 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3110 pwc
= m_chgInfo_baseChangedProperty
;
3112 while ( pwc
!= changedProperty
)
3114 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
, selFlags
);
3115 pwc
= pwc
->GetParent();
3119 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
, selFlags
);
3121 m_inDoPropertyChanged
= 0;
3126 // -----------------------------------------------------------------------
3128 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3130 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3132 m_chgInfo_changedProperty
= NULL
;
3134 if ( PerformValidation(p
, newValue
) )
3136 DoPropertyChanged(p
);
3141 OnValidationFailure(p
, newValue
);
3147 // -----------------------------------------------------------------------
3149 // Runs wxValidator for the selected property
3150 bool wxPropertyGrid::DoEditorValidate()
3152 #if wxUSE_VALIDATORS
3153 // With traditional validator style, we dont need to more
3154 if ( !(GetExtraStyle() & wxPG_EX_LEGACY_VALIDATORS
) )
3157 if ( m_iFlags
& wxPG_FL_VALIDATION_FAILED
)
3162 wxWindow
* wnd
= GetEditorControl();
3164 wxValidator
* validator
= m_selected
->GetValidator();
3165 if ( validator
&& wnd
)
3167 // Use TextCtrl of ODComboBox instead
3168 if ( wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3170 wnd
= ((wxOwnerDrawnComboBox
*)wnd
)->GetTextCtrl();
3176 validator
->SetWindow(wnd
);
3178 // Instead setting the flag after the failure, we set
3179 // it before checking and then clear afterwards if things
3180 // went fine. This trick is necessary since focus events
3181 // may be triggered while in Validate.
3182 m_iFlags
|= wxPG_FL_VALIDATION_FAILED
;
3183 if ( !validator
->Validate(this) )
3185 // If you dpm't want to display message multiple times per change,
3186 // comment the following line.
3187 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3190 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3196 // -----------------------------------------------------------------------
3198 bool wxPropertyGrid::ProcessEvent(wxEvent
& event
)
3200 wxWindow
* wnd
= (wxWindow
*) event
.GetEventObject();
3201 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxWindow
)) )
3203 wxWindow
* parent
= wnd
->GetParent();
3206 (parent
== m_canvas
||
3207 parent
->GetParent() == m_canvas
) )
3209 OnCustomEditorEvent((wxCommandEvent
&)event
);
3213 return wxPanel::ProcessEvent(event
);
3216 // -----------------------------------------------------------------------
3218 // NB: It may really not be wxCommandEvent - must check if necessary
3220 void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent
&event
)
3222 wxPGProperty
* selected
= m_selected
;
3225 // Somehow, event is handled after property has been deselected.
3226 // Possibly, but very rare.
3230 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
3233 wxVariant
pendingValue(selected
->GetValueRef());
3234 wxWindow
* wnd
= GetEditorControl();
3236 bool wasUnspecified
= selected
->IsValueUnspecified();
3237 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3239 bool valueIsPending
= false;
3241 m_chgInfo_changedProperty
= NULL
;
3243 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
3246 // Filter out excess wxTextCtrl modified events
3247 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
3249 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3251 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3253 wxString newTcValue
= tc
->GetValue();
3254 if ( m_prevTcValue
== newTcValue
)
3257 m_prevTcValue
= newTcValue
;
3260 SetInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3262 bool validationFailure
= false;
3263 bool buttonWasHandled
= false;
3266 // Try common button handling
3267 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3269 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3273 buttonWasHandled
= true;
3274 // Store as res2, as previously (and still currently alternatively)
3275 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3276 // in wxPGProperty::OnEvent().
3277 adapter
->ShowDialog( this, selected
);
3282 if ( wnd
&& !buttonWasHandled
)
3284 // First call editor class' event handler.
3285 const wxPGEditor
* editor
= selected
->GetEditorClass();
3287 if ( editor
->OnEvent( this, selected
, wnd
, event
) )
3289 // If changes, validate them
3290 if ( DoEditorValidate() )
3292 if ( editor
->GetValueFromControl( pendingValue
, m_selected
, wnd
) )
3293 valueIsPending
= true;
3297 validationFailure
= true;
3301 // Then the property's custom handler (must be always called, unless
3302 // validation failed).
3303 if ( !validationFailure
)
3304 buttonWasHandled
= selected
->OnEvent( this, wnd
, event
);
3307 // SetValueInEvent(), as called in one of the functions referred above
3308 // overrides editor's value.
3309 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3311 valueIsPending
= true;
3312 pendingValue
= m_changeInEventValue
;
3313 selFlags
|= wxPG_SEL_DIALOGVAL
;
3316 if ( !validationFailure
&& valueIsPending
)
3317 if ( !PerformValidation(m_selected
, pendingValue
) )
3318 validationFailure
= true;
3320 if ( validationFailure
)
3322 OnValidationFailure(selected
, pendingValue
);
3324 else if ( valueIsPending
)
3326 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3328 DoPropertyChanged(selected
, selFlags
);
3329 EditorsValueWasNotModified();
3333 // No value after all
3335 // Let unhandled button click events go to the parent
3336 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3338 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3339 GetEventHandler()->AddPendingEvent(evt
);
3343 ClearInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3346 // -----------------------------------------------------------------------
3347 // wxPropertyGrid editor control helper methods
3348 // -----------------------------------------------------------------------
3350 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3352 int itemy
= p
->GetY2(m_lineHeight
);
3354 int cust_img_space
= 0;
3355 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3356 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3358 // TODO: If custom image detection changes from current, change this.
3359 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
/*p->m_flags & wxPG_PROP_CUSTOMIMAGE*/ )
3361 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3362 int imwid
= p
->OnMeasureImage().x
;
3363 if ( imwid
< 1 ) imwid
= wxPG_CUSTOM_IMAGE_WIDTH
;
3364 cust_img_space
= imwid
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
3369 splitterX
+cust_img_space
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3371 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-cust_img_space
-1,
3376 // -----------------------------------------------------------------------
3378 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3380 wxSize sz
= GetImageSize(p
, item
);
3381 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3382 wxPG_CUSTOM_IMAGE_SPACINGY
,
3387 // return size of custom paint image
3388 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3390 // If called with NULL property, then return default image
3391 // size for properties that use image.
3393 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3395 wxSize cis
= p
->OnMeasureImage(item
);
3397 int choiceCount
= p
->m_choices
.GetCount();
3398 int comVals
= p
->GetDisplayedCommonValueCount();
3399 if ( item
>= choiceCount
&& comVals
> 0 )
3401 unsigned int cvi
= item
-choiceCount
;
3402 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3404 else if ( item
>= 0 && choiceCount
== 0 )
3405 return wxSize(0, 0);
3410 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3415 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3422 // -----------------------------------------------------------------------
3424 // takes scrolling into account
3425 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3428 GetViewStart(&vx
,&vy
);
3429 vy
*=wxPG_PIXELS_PER_UNIT
;
3430 vx
*=wxPG_PIXELS_PER_UNIT
;
3433 ClientToScreen( px
, py
);
3436 // -----------------------------------------------------------------------
3438 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3441 GetViewStart(&pt2
.x
,&pt2
.y
);
3442 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3443 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3447 return m_pState
->HitTest(pt2
);
3450 // -----------------------------------------------------------------------
3452 // custom set cursor
3453 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3455 if ( type
== m_curcursor
&& !override
) return;
3457 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3459 if ( type
== wxCURSOR_SIZEWE
)
3460 cursor
= m_cursorSizeWE
;
3462 m_canvas
->SetCursor( *cursor
);
3467 // -----------------------------------------------------------------------
3468 // wxPropertyGrid property selection
3469 // -----------------------------------------------------------------------
3471 #define CONNECT_CHILD(EVT,FUNCTYPE,FUNC) \
3472 wnd->Connect(id, EVT, \
3473 (wxObjectEventFunction) (wxEventFunction) \
3474 FUNCTYPE (&wxPropertyGrid::FUNC), \
3477 // Setups event handling for child control
3478 void wxPropertyGrid::SetupEventHandling( wxWindow
* argWnd
, int id
)
3480 wxWindow
* wnd
= argWnd
;
3482 if ( argWnd
== m_wndEditor
)
3484 CONNECT_CHILD(wxEVT_MOTION
,(wxMouseEventFunction
),OnMouseMoveChild
)
3485 CONNECT_CHILD(wxEVT_LEFT_UP
,(wxMouseEventFunction
),OnMouseUpChild
)
3486 CONNECT_CHILD(wxEVT_LEFT_DOWN
,(wxMouseEventFunction
),OnMouseClickChild
)
3487 CONNECT_CHILD(wxEVT_RIGHT_UP
,(wxMouseEventFunction
),OnMouseRightClickChild
)
3488 CONNECT_CHILD(wxEVT_ENTER_WINDOW
,(wxMouseEventFunction
),OnMouseEntry
)
3489 CONNECT_CHILD(wxEVT_LEAVE_WINDOW
,(wxMouseEventFunction
),OnMouseEntry
)
3493 CONNECT_CHILD(wxEVT_NAVIGATION_KEY
,(wxNavigationKeyEventFunction
),OnNavigationKey
)
3495 CONNECT_CHILD(wxEVT_KEY_DOWN
,(wxCharEventFunction
),OnChildKeyDown
)
3496 CONNECT_CHILD(wxEVT_KEY_UP
,(wxCharEventFunction
),OnChildKeyUp
)
3497 CONNECT_CHILD(wxEVT_KILL_FOCUS
,(wxFocusEventFunction
),OnFocusEvent
)
3500 void wxPropertyGrid::FreeEditors()
3502 // Do not free editors immediately if processing events
3503 if ( !m_windowsToDelete
)
3504 m_windowsToDelete
= new wxArrayPtrVoid
;
3508 m_windowsToDelete
->push_back(m_wndEditor2
);
3509 m_wndEditor2
->Hide();
3510 m_wndEditor2
= (wxWindow
*) NULL
;
3515 m_windowsToDelete
->push_back(m_wndEditor
);
3516 m_wndEditor
->Hide();
3517 m_wndEditor
= (wxWindow
*) NULL
;
3521 // Call with NULL to de-select property
3522 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3524 wxPanel
* canvas
= GetPanel();
3528 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3529 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3531 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3534 if ( m_inDoSelectProperty
)
3537 m_inDoSelectProperty
= 1;
3539 wxPGProperty
* prev
= m_selected
;
3542 // Delete windows pending for deletion
3543 if ( m_windowsToDelete
&& !m_inDoPropertyChanged
&& m_windowsToDelete
->size() )
3547 for ( i
=0; i
<m_windowsToDelete
->size(); i
++ )
3548 delete ((wxWindow
*)((*m_windowsToDelete
)[i
]));
3550 m_windowsToDelete
->clear();
3555 m_inDoSelectProperty
= 0;
3560 // If we are frozen, then just set the values.
3563 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3564 m_editorFocused
= 0;
3567 m_pState
->m_selected
= p
;
3569 // If frozen, always free controls. But don't worry, as Thaw will
3570 // recall SelectProperty to recreate them.
3573 // Prevent any further selection measures in this call
3574 p
= (wxPGProperty
*) NULL
;
3579 if ( m_selected
== p
&& !(flags
& wxPG_SEL_FORCE
) )
3581 // Only set focus if not deselecting
3584 if ( flags
& wxPG_SEL_FOCUS
)
3588 m_wndEditor
->SetFocus();
3589 m_editorFocused
= 1;
3598 m_inDoSelectProperty
= 0;
3603 // First, deactivate previous
3607 OnValidationFailureReset(m_selected
);
3609 // Must double-check if this is an selected in case of forceswitch
3612 if ( !CommitChangesFromEditor(flags
) )
3614 // Validation has failed, so we can't exit the previous editor
3615 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3616 // _("Invalid Value"),wxOK|wxICON_ERROR);
3617 m_inDoSelectProperty
= 0;
3625 m_selected
= (wxPGProperty
*) NULL
;
3626 m_pState
->m_selected
= (wxPGProperty
*) NULL
;
3628 // We need to always fully refresh the grid here
3631 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3632 EditorsValueWasNotModified();
3635 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3638 // Then, activate the one given.
3641 int propY
= p
->GetY2(m_lineHeight
);
3643 int splitterX
= GetSplitterPosition();
3644 m_editorFocused
= 0;
3646 m_pState
->m_selected
= p
;
3647 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3649 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3651 wxASSERT( m_wndEditor
== (wxWindow
*) NULL
);
3653 // Do we need OnMeasureCalls?
3654 wxSize imsz
= p
->OnMeasureImage();
3657 // Only create editor for non-disabled non-caption
3658 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3660 // do this for non-caption items
3664 // Do we need to paint the custom image, if any?
3665 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3666 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3667 !p
->GetEditorClass()->CanContainCustomImage()
3669 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3671 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3672 wxPoint goodPos
= grect
.GetPosition();
3673 #if wxPG_CREATE_CONTROLS_HIDDEN
3674 int coord_adjust
= m_height
- goodPos
.y
;
3675 goodPos
.y
+= coord_adjust
;
3678 const wxPGEditor
* editor
= p
->GetEditorClass();
3679 wxCHECK_MSG(editor
, false,
3680 wxT("NULL editor class not allowed"));
3682 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3684 wxPGWindowList wndList
= editor
->CreateControls(this,
3689 m_wndEditor
= wndList
.m_primary
;
3690 m_wndEditor2
= wndList
.m_secondary
;
3692 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3693 // value is drawn as normal, and m_wndEditor2 is assumed
3694 // to be a right-aligned button that triggers a separate editor
3699 wxASSERT_MSG( m_wndEditor
->GetParent() == canvas
,
3700 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3702 // Set validator, if any
3703 #if wxUSE_VALIDATORS
3704 if ( !(GetExtraStyle() & wxPG_EX_LEGACY_VALIDATORS
) )
3706 wxValidator
* validator
= p
->GetValidator();
3708 m_wndEditor
->SetValidator(*validator
);
3712 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3713 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3715 // If it has modified status, use bold font
3716 // (must be done before capturing m_ctrlXAdjust)
3717 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3718 SetCurControlBoldFont();
3721 // Fix TextCtrl indentation
3722 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3723 wxTextCtrl
* tc
= NULL
;
3724 if ( m_wndEditor
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3725 tc
= ((wxOwnerDrawnComboBox
*)m_wndEditor
)->GetTextCtrl();
3727 tc
= wxDynamicCast(m_wndEditor
, wxTextCtrl
);
3729 ::SendMessage(GetHwndOf(tc
), EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0, 0));
3732 // Store x relative to splitter (we'll need it).
3733 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3735 // Check if background clear is not necessary
3736 wxPoint pos
= m_wndEditor
->GetPosition();
3737 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3739 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3742 m_wndEditor
->SetSizeHints(3, 3);
3744 #if wxPG_CREATE_CONTROLS_HIDDEN
3745 m_wndEditor
->Show(false);
3746 m_wndEditor
->Freeze();
3748 goodPos
= m_wndEditor
->GetPosition();
3749 goodPos
.y
-= coord_adjust
;
3750 m_wndEditor
->Move( goodPos
);
3753 wxWindow
* primaryCtrl
= GetEditorControl();
3754 SetupEventHandling(primaryCtrl
, wxPG_SUBID1
);
3756 // Focus and select all (wxTextCtrl, wxComboBox etc)
3757 if ( flags
& wxPG_SEL_FOCUS
)
3759 primaryCtrl
->SetFocus();
3761 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3767 wxASSERT_MSG( m_wndEditor2
->GetParent() == canvas
,
3768 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3770 // Get proper id for wndSecondary
3771 m_wndSecId
= m_wndEditor2
->GetId();
3772 wxWindowList children
= m_wndEditor2
->GetChildren();
3773 wxWindowList::iterator node
= children
.begin();
3774 if ( node
!= children
.end() )
3775 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3777 m_wndEditor2
->SetSizeHints(3,3);
3779 #if wxPG_CREATE_CONTROLS_HIDDEN
3780 wxRect sec_rect
= m_wndEditor2
->GetRect();
3781 sec_rect
.y
-= coord_adjust
;
3783 // Fine tuning required to fix "oversized"
3784 // button disappearance bug.
3785 if ( sec_rect
.y
< 0 )
3787 sec_rect
.height
+= sec_rect
.y
;
3790 m_wndEditor2
->SetSize( sec_rect
);
3792 m_wndEditor2
->Show();
3794 SetupEventHandling(m_wndEditor2
,wxPG_SUBID2
);
3796 // If no primary editor, focus to button to allow
3797 // it to interprete ENTER etc.
3798 // NOTE: Due to problems focusing away from it, this
3799 // has been disabled.
3801 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3802 m_wndEditor2->SetFocus();
3806 if ( flags
& wxPG_SEL_FOCUS
)
3807 m_editorFocused
= 1;
3812 // Make sure focus is in grid canvas (important for wxGTK, at least)
3816 EditorsValueWasNotModified();
3818 // If it's inside collapsed section, expand parent, scroll, etc.
3819 // Also, if it was partially visible, scroll it into view.
3820 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3825 #if wxPG_CREATE_CONTROLS_HIDDEN
3826 m_wndEditor
->Thaw();
3828 m_wndEditor
->Show(true);
3835 // Make sure focus is in grid canvas
3839 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3845 // Show help text in status bar.
3846 // (if found and grid not embedded in manager with help box and
3847 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3850 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3852 wxStatusBar
* statusbar
= (wxStatusBar
*) NULL
;
3853 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3855 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3857 statusbar
= frame
->GetStatusBar();
3862 const wxString
* pHelpString
= (const wxString
*) NULL
;
3866 pHelpString
= &p
->GetHelpString();
3867 if ( pHelpString
->length() )
3869 // Set help box text.
3870 statusbar
->SetStatusText( *pHelpString
);
3871 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3875 if ( (!pHelpString
|| !pHelpString
->length()) &&
3876 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3878 // Clear help box - but only if it was written
3879 // by us at previous time.
3880 statusbar
->SetStatusText( m_emptyString
);
3881 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3887 m_inDoSelectProperty
= 0;
3889 // call wx event handler (here so that it also occurs on deselection)
3890 SendEvent( wxEVT_PG_SELECTED
, m_selected
, NULL
, flags
);
3895 // -----------------------------------------------------------------------
3897 bool wxPropertyGrid::UnfocusEditor()
3899 if ( !m_selected
|| !m_wndEditor
|| m_frozen
)
3902 if ( !CommitChangesFromEditor(0) )
3906 DrawItem(m_selected
);
3911 // -----------------------------------------------------------------------
3913 // This method is not inline because it called dozens of times
3914 // (i.e. two-arg function calls create smaller code size).
3915 bool wxPropertyGrid::DoClearSelection()
3917 return DoSelectProperty((wxPGProperty
*)NULL
);
3920 // -----------------------------------------------------------------------
3921 // wxPropertyGrid expand/collapse state
3922 // -----------------------------------------------------------------------
3924 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
3926 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
3928 // If active editor was inside collapsed section, then disable it
3929 if ( m_selected
&& m_selected
->IsSomeParent (p
) )
3931 if ( !ClearSelection() )
3935 // Store dont-center-splitter flag 'cause we need to temporarily set it
3936 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3937 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3939 bool res
= m_pState
->DoCollapse(pwc
);
3944 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
3946 RecalculateVirtualSize();
3948 // Redraw etc. only if collapsed was visible.
3949 if (pwc
->IsVisible() &&
3951 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
3953 // When item is collapsed so that scrollbar would move,
3954 // graphics mess is about (unless we redraw everything).
3959 // Clear dont-center-splitter flag if it wasn't set
3960 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3965 // -----------------------------------------------------------------------
3967 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
3969 wxCHECK_MSG( p
, false, wxT("invalid property id") );
3971 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
3973 // Store dont-center-splitter flag 'cause we need to temporarily set it
3974 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3975 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3977 bool res
= m_pState
->DoExpand(pwc
);
3982 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
3984 RecalculateVirtualSize();
3986 // Redraw etc. only if expanded was visible.
3987 if ( pwc
->IsVisible() && !m_frozen
&&
3988 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
3992 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3995 DrawItems(pwc
, NULL
);
4000 // Clear dont-center-splitter flag if it wasn't set
4001 m_iFlags
= m_iFlags
& ~(wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
4006 // -----------------------------------------------------------------------
4008 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
4011 return m_pState
->DoHideProperty(p
, hide
, flags
);
4014 ( m_selected
== p
|| m_selected
->IsSomeParent(p
) )
4017 if ( !ClearSelection() )
4021 m_pState
->DoHideProperty(p
, hide
, flags
);
4023 RecalculateVirtualSize();
4030 // -----------------------------------------------------------------------
4031 // wxPropertyGrid size related methods
4032 // -----------------------------------------------------------------------
4034 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
4036 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
4040 // If virtual height was changed, then recalculate editor control position(s)
4041 if ( m_pState
->m_vhCalcPending
)
4042 CorrectEditorWidgetPosY();
4044 m_pState
->EnsureVirtualHeight();
4047 int by1
= m_pState
->GetVirtualHeight();
4048 int by2
= m_pState
->GetActualVirtualHeight();
4051 wxString s
= wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1
, by2
);
4052 wxASSERT_MSG( false,
4058 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4060 int x
= m_pState
->m_width
;
4061 int y
= m_pState
->m_virtualHeight
;
4064 GetClientSize(&width
,&height
);
4066 // Now adjust virtual size.
4067 SetVirtualSize(x
, y
);
4073 // Adjust scrollbars
4074 if ( HasVirtualWidth() )
4076 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
4077 xPos
= GetScrollPos( wxHORIZONTAL
);
4080 if ( forceXPos
!= -1 )
4083 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4086 int yAmount
= (y
+wxPG_PIXELS_PER_UNIT
+2)/wxPG_PIXELS_PER_UNIT
;
4087 int yPos
= GetScrollPos( wxVERTICAL
);
4089 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4090 xAmount
, yAmount
, xPos
, yPos
, true );
4092 // Must re-get size now
4093 GetClientSize(&width
,&height
);
4095 if ( !HasVirtualWidth() )
4097 m_pState
->SetVirtualWidth(width
);
4104 m_canvas
->SetSize( x
, y
);
4106 m_pState
->CheckColumnWidths();
4109 CorrectEditorWidgetSizeX();
4111 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4114 // -----------------------------------------------------------------------
4116 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4118 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4122 GetClientSize(&width
,&height
);
4127 #if wxPG_DOUBLE_BUFFER
4128 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4130 int dblh
= (m_lineHeight
*2);
4131 if ( !m_doubleBuffer
)
4133 // Create double buffer bitmap to draw on, if none
4134 int w
= (width
>250)?width
:250;
4135 int h
= height
+ dblh
;
4137 m_doubleBuffer
= new wxBitmap( w
, h
);
4141 int w
= m_doubleBuffer
->GetWidth();
4142 int h
= m_doubleBuffer
->GetHeight();
4144 // Double buffer must be large enough
4145 if ( w
< width
|| h
< (height
+dblh
) )
4147 if ( w
< width
) w
= width
;
4148 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4149 delete m_doubleBuffer
;
4150 m_doubleBuffer
= new wxBitmap( w
, h
);
4157 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4158 m_ncWidth
= event
.GetSize().x
;
4162 if ( m_pState
->m_itemsAdded
)
4163 PrepareAfterItemsAdded();
4165 // Without this, virtual size (atleast under wxGTK) will be skewed
4166 RecalculateVirtualSize();
4172 // -----------------------------------------------------------------------
4174 void wxPropertyGrid::SetVirtualWidth( int width
)
4178 // Disable virtual width
4179 width
= GetClientSize().x
;
4180 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4184 // Enable virtual width
4185 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4187 m_pState
->SetVirtualWidth( width
);
4190 // -----------------------------------------------------------------------
4191 // wxPropertyGrid mouse event handling
4192 // -----------------------------------------------------------------------
4194 // selFlags uses same values DoSelectProperty's flags
4195 // Returns true if event was vetoed.
4196 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
, wxVariant
* pValue
, unsigned int WXUNUSED(selFlags
) )
4198 // Send property grid event of specific type and with specific property
4199 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4200 evt
.SetPropertyGrid(this);
4201 evt
.SetEventObject(m_eventObject
);
4205 evt
.SetCanVeto(true);
4206 evt
.SetupValidationInfo();
4207 m_validationInfo
.m_pValue
= pValue
;
4209 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
4211 evtHandler
->ProcessEvent(evt
);
4213 return evt
.WasVetoed();
4216 // -----------------------------------------------------------------------
4218 // Return false if should be skipped
4219 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4223 // Need to set focus?
4224 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4229 wxPropertyGridPageState
* state
= m_pState
;
4231 int splitterHitOffset
;
4232 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4234 wxPGProperty
* p
= DoGetItemAtY(y
);
4238 int depth
= (int)p
->GetDepth() - 1;
4240 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4242 if ( x
>= marginEnds
)
4246 if ( p
->IsCategory() )
4248 // This is category.
4249 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4251 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4253 // Expand, collapse, activate etc. if click on text or left of splitter.
4256 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4261 if ( !DoSelectProperty( p
) )
4264 // On double-click, expand/collapse.
4265 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4267 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4268 else DoExpand( p
, true );
4272 else if ( splitterHit
== -1 )
4275 unsigned int selFlag
= 0;
4276 if ( columnHit
== 1 )
4278 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4279 selFlag
= wxPG_SEL_FOCUS
;
4281 if ( !DoSelectProperty( p
, selFlag
) )
4284 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4286 if ( p
->GetChildCount() && !p
->IsCategory() )
4287 // On double-click, expand/collapse.
4288 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4290 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4291 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4292 else DoExpand( p
, true );
4299 // click on splitter
4300 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4302 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4304 // Double-clicking the splitter causes auto-centering
4305 CenterSplitter( true );
4307 else if ( m_dragStatus
== 0 )
4310 // Begin draggin the splitter
4314 // Changes must be committed here or the
4315 // value won't be drawn correctly
4316 if ( !CommitChangesFromEditor() )
4319 m_wndEditor
->Show ( false );
4322 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4324 m_canvas
->CaptureMouse();
4325 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4329 m_draggedSplitter
= splitterHit
;
4330 m_dragOffset
= splitterHitOffset
;
4332 wxClientDC
dc(m_canvas
);
4334 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4335 // Fixes button disappearance bug
4337 m_wndEditor2
->Show ( false );
4340 m_startingSplitterX
= x
- splitterHitOffset
;
4348 if ( p
->GetChildCount() )
4350 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4352 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4354 int y2
= y
% m_lineHeight
;
4355 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4357 // On click on expander button, expand/collapse
4358 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4359 DoCollapse( p
, true );
4361 DoExpand( p
, true );
4370 // -----------------------------------------------------------------------
4372 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4373 wxMouseEvent
& WXUNUSED(event
) )
4377 // Select property here as well
4378 wxPGProperty
* p
= m_propHover
;
4379 if ( p
!= m_selected
)
4380 DoSelectProperty( p
);
4382 // Send right click event.
4383 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4390 // -----------------------------------------------------------------------
4392 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4393 wxMouseEvent
& WXUNUSED(event
) )
4397 // Select property here as well
4398 wxPGProperty
* p
= m_propHover
;
4400 if ( p
!= m_selected
)
4401 DoSelectProperty( p
);
4403 // Send double-click event.
4404 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4411 // -----------------------------------------------------------------------
4413 #if wxPG_SUPPORT_TOOLTIPS
4415 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4417 if ( tipString
.length() )
4419 m_canvas
->SetToolTip(tipString
);
4423 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4424 m_canvas
->SetToolTip( m_emptyString
);
4426 m_canvas
->SetToolTip( NULL
);
4431 #endif // #if wxPG_SUPPORT_TOOLTIPS
4433 // -----------------------------------------------------------------------
4435 // Return false if should be skipped
4436 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4438 // Safety check (needed because mouse capturing may
4439 // otherwise freeze the control)
4440 if ( m_dragStatus
> 0 && !event
.Dragging() )
4442 HandleMouseUp(x
,y
,event
);
4445 wxPropertyGridPageState
* state
= m_pState
;
4447 int splitterHitOffset
;
4448 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4449 int splitterX
= x
- splitterHitOffset
;
4451 if ( m_dragStatus
> 0 )
4453 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4454 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4457 int newSplitterX
= x
- m_dragOffset
;
4458 int splitterX
= x
- splitterHitOffset
;
4460 // Splitter redraw required?
4461 if ( newSplitterX
!= splitterX
)
4464 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4465 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4466 state
->m_fSplitterX
= (float) newSplitterX
;
4469 CorrectEditorWidgetSizeX();
4483 int ih
= m_lineHeight
;
4486 #if wxPG_SUPPORT_TOOLTIPS
4487 wxPGProperty
* prevHover
= m_propHover
;
4488 unsigned char prevSide
= m_mouseSide
;
4490 int curPropHoverY
= y
- (y
% ih
);
4492 // On which item it hovers
4493 if ( ( !m_propHover
)
4495 ( m_propHover
&& ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) ) )
4498 // Mouse moves on another property
4500 m_propHover
= DoGetItemAtY(y
);
4501 m_propHoverY
= curPropHoverY
;
4504 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4507 #if wxPG_SUPPORT_TOOLTIPS
4508 // Store which side we are on
4510 if ( columnHit
== 1 )
4512 else if ( columnHit
== 0 )
4516 // If tooltips are enabled, show label or value as a tip
4517 // in case it doesn't otherwise show in full length.
4519 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4521 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4523 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4525 if ( m_propHover
&& !m_propHover
->IsCategory() )
4528 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4530 // Show help string as a tooltip
4531 wxString tipString
= m_propHover
->GetHelpString();
4533 SetToolTip(tipString
);
4537 // Show cropped value string as a tooltip
4541 if ( m_mouseSide
== 1 )
4543 tipString
= m_propHover
->m_label
;
4544 space
= splitterX
-m_marginWidth
-3;
4546 else if ( m_mouseSide
== 2 )
4548 tipString
= m_propHover
->GetDisplayedString();
4550 space
= m_width
- splitterX
;
4551 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4552 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4558 GetTextExtent( tipString
, &tw
, &th
, 0, 0, &m_font
);
4561 SetToolTip( tipString
);
4568 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4569 m_canvas
->SetToolTip( m_emptyString
);
4571 m_canvas
->SetToolTip( NULL
);
4582 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4583 m_canvas
->SetToolTip( m_emptyString
);
4585 m_canvas
->SetToolTip( NULL
);
4593 if ( splitterHit
== -1 ||
4595 HasFlag(wxPG_STATIC_SPLITTER
) )
4597 // hovering on something else
4598 if ( m_curcursor
!= wxCURSOR_ARROW
)
4599 CustomSetCursor( wxCURSOR_ARROW
);
4603 // Do not allow splitter cursor on caption items.
4604 // (also not if we were dragging and its started
4605 // outside the splitter region)
4608 !m_propHover
->IsCategory() &&
4612 // hovering on splitter
4614 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4615 // reliably detected.
4616 //if ( m_curcursor != wxCURSOR_SIZEWE )
4617 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4623 // hovering on something else
4624 if ( m_curcursor
!= wxCURSOR_ARROW
)
4625 CustomSetCursor( wxCURSOR_ARROW
);
4632 // -----------------------------------------------------------------------
4634 // Also handles Leaving event
4635 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4636 wxMouseEvent
&WXUNUSED(event
) )
4638 wxPropertyGridPageState
* state
= m_pState
;
4642 int splitterHitOffset
;
4643 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4645 // No event type check - basicly calling this method should
4646 // just stop dragging.
4647 // Left up after dragged?
4648 if ( m_dragStatus
>= 1 )
4651 // End Splitter Dragging
4653 // DO NOT ENABLE FOLLOWING LINE!
4654 // (it is only here as a reminder to not to do it)
4657 // Disable splitter auto-centering
4658 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4660 // This is necessary to return cursor
4661 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4663 m_canvas
->ReleaseMouse();
4664 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4667 // Set back the default cursor, if necessary
4668 if ( splitterHit
== -1 ||
4671 CustomSetCursor( wxCURSOR_ARROW
);
4676 // Control background needs to be cleared
4677 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && m_selected
)
4678 DrawItem( m_selected
);
4682 m_wndEditor
->Show ( true );
4685 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4686 // Fixes button disappearance bug
4688 m_wndEditor2
->Show ( true );
4691 // This clears the focus.
4692 m_editorFocused
= 0;
4698 // -----------------------------------------------------------------------
4700 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4702 int splitterX
= GetSplitterPosition();
4705 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4709 wxWindow
* wnd
= m_wndEditor
;
4711 // Hide popup on clicks
4712 if ( event
.GetEventType() != wxEVT_MOTION
)
4713 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4715 ((wxOwnerDrawnComboBox
*)m_wndEditor
)->HidePopup();
4721 if ( wnd
== (wxWindow
*) NULL
|| m_dragStatus
||
4723 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4724 ux
>= (r
.x
+r
.width
) ||
4726 event
.m_y
>= (r
.y
+r
.height
)
4736 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4741 // -----------------------------------------------------------------------
4743 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4746 if ( OnMouseCommon( event
, &x
, &y
) )
4748 HandleMouseClick(x
,y
,event
);
4753 // -----------------------------------------------------------------------
4755 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4758 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4759 HandleMouseRightClick(x
,y
,event
);
4763 // -----------------------------------------------------------------------
4765 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4767 // Always run standard mouse-down handler as well
4768 OnMouseClick(event
);
4771 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4772 HandleMouseDoubleClick(x
,y
,event
);
4776 // -----------------------------------------------------------------------
4778 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4781 if ( OnMouseCommon( event
, &x
, &y
) )
4783 HandleMouseMove(x
,y
,event
);
4788 // -----------------------------------------------------------------------
4790 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4792 // Called when mouse moves in the empty space below the properties.
4793 CustomSetCursor( wxCURSOR_ARROW
);
4796 // -----------------------------------------------------------------------
4798 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
4801 if ( OnMouseCommon( event
, &x
, &y
) )
4803 HandleMouseUp(x
,y
,event
);
4808 // -----------------------------------------------------------------------
4810 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
4812 // This may get called from child control as well, so event's
4813 // mouse position cannot be relied on.
4815 if ( event
.Entering() )
4817 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4819 // TODO: Fix this (detect parent and only do
4820 // cursor trick if it is a manager).
4821 wxASSERT( GetParent() );
4822 GetParent()->SetCursor(wxNullCursor
);
4824 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
4827 GetParent()->SetCursor(wxNullCursor
);
4829 else if ( event
.Leaving() )
4831 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4832 m_canvas
->SetCursor( wxNullCursor
);
4834 // Get real cursor position
4835 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
4837 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
4840 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4842 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
4846 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
4854 // -----------------------------------------------------------------------
4856 // Common code used by various OnMouseXXXChild methods.
4857 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
4859 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
4860 wxASSERT( topCtrlWnd
);
4862 event
.GetPosition(&x
,&y
);
4864 AdjustPosForClipperWindow( topCtrlWnd
, &x
, &y
);
4866 int splitterX
= GetSplitterPosition();
4868 wxRect r
= topCtrlWnd
->GetRect();
4869 if ( !m_dragStatus
&&
4870 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
4871 y
>= 0 && y
< r
.height \
4874 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4879 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
4886 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
4889 if ( OnMouseChildCommon(event
,&x
,&y
) )
4891 bool res
= HandleMouseClick(x
,y
,event
);
4892 if ( !res
) event
.Skip();
4896 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
4899 wxASSERT( m_wndEditor
);
4900 // These coords may not be exact (about +-2),
4901 // but that should not matter (right click is about item, not position).
4902 wxPoint pt
= m_wndEditor
->GetPosition();
4903 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
4904 wxASSERT( m_selected
);
4905 m_propHover
= m_selected
;
4906 bool res
= HandleMouseRightClick(x
,y
,event
);
4907 if ( !res
) event
.Skip();
4910 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
4913 if ( OnMouseChildCommon(event
,&x
,&y
) )
4915 bool res
= HandleMouseMove(x
,y
,event
);
4916 if ( !res
) event
.Skip();
4920 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
4923 if ( OnMouseChildCommon(event
,&x
,&y
) )
4925 bool res
= HandleMouseUp(x
,y
,event
);
4926 if ( !res
) event
.Skip();
4930 // -----------------------------------------------------------------------
4931 // wxPropertyGrid keyboard event handling
4932 // -----------------------------------------------------------------------
4934 void wxPropertyGrid::SendNavigationKeyEvent( int dir
)
4936 wxNavigationKeyEvent evt
;
4937 evt
.SetFlags(wxNavigationKeyEvent::FromTab
|
4938 (dir
?wxNavigationKeyEvent::IsForward
:
4939 wxNavigationKeyEvent::IsBackward
));
4940 evt
.SetEventObject(this);
4941 m_canvas
->GetEventHandler()->AddPendingEvent(evt
);
4945 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
4947 // Translates wxKeyEvent to wxPG_ACTION_XXX
4949 int keycode
= event
.GetKeyCode();
4950 int modifiers
= event
.GetModifiers();
4952 wxASSERT( !(modifiers
&~(0xFFFF)) );
4954 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4956 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
4958 if ( it
== m_actionTriggers
.end() )
4963 int second
= (it
->second
>>16) & 0xFFFF;
4967 return (it
->second
& 0xFFFF);
4970 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
4972 wxASSERT( !(modifiers
&~(0xFFFF)) );
4974 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4976 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
4978 if ( it
!= m_actionTriggers
.end() )
4980 // This key combination is already used
4982 // Can add secondary?
4983 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
4984 wxT("You can only add up to two separate actions per key combination.") );
4986 action
= it
->second
| (action
<<16);
4989 m_actionTriggers
[hashMapKey
] = action
;
4992 void wxPropertyGrid::ClearActionTriggers( int action
)
4994 wxPGHashMapI2I::iterator it
;
4996 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); it
++ )
4998 if ( it
->second
== action
)
5000 m_actionTriggers
.erase(it
);
5005 static void CopyTextToClipboard( const wxString
& text
)
5007 if ( wxTheClipboard
->Open() )
5009 // This data objects are held by the clipboard,
5010 // so do not delete them in the app.
5011 wxTheClipboard
->SetData( new wxTextDataObject(text
) );
5012 wxTheClipboard
->Close();
5016 void wxPropertyGrid::HandleKeyEvent(wxKeyEvent
&event
)
5019 // Handles key event when editor control is not focused.
5022 wxASSERT( !m_frozen
);
5026 // Travelsal between items, collapsing/expanding, etc.
5027 int keycode
= event
.GetKeyCode();
5029 if ( keycode
== WXK_TAB
)
5031 SendNavigationKeyEvent( event
.ShiftDown()?0:1 );
5035 // Ignore Alt and Control when they are down alone
5036 if ( keycode
== WXK_ALT
||
5037 keycode
== WXK_CONTROL
)
5044 int action
= KeyEventToActions(event
, &secondAction
);
5050 if ( ButtonTriggerKeyTest(event
) )
5053 wxPGProperty
* p
= m_selected
;
5055 if ( action
== wxPG_ACTION_COPY
)
5057 CopyTextToClipboard(p
->GetDisplayedString());
5061 // Travel and expand/collapse
5064 if ( p
->GetChildCount() &&
5065 !(p
->m_flags
& wxPG_PROP_DISABLED
)
5068 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
5070 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
5073 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
5075 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
5082 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
5086 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5097 if ( selectDir
>= -1 )
5099 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5101 DoSelectProperty(p
);
5107 // If nothing was selected, select the first item now
5108 // (or navigate out of tab).
5109 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5111 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5112 if ( p
) DoSelectProperty(p
);
5117 // -----------------------------------------------------------------------
5119 // Potentially handles a keyboard event for editor controls.
5120 // Returns false if event should *not* be skipped (on true it can
5121 // be optionally skipped).
5122 // Basicly, false means that SelectProperty was called (or was about
5123 // to be called, if canDestroy was false).
5124 bool wxPropertyGrid::HandleChildKey( wxKeyEvent
& event
)
5128 if ( !m_selected
|| !m_wndEditor
)
5133 int action
= KeyEventToAction(event
);
5136 if ( action
== wxPG_ACTION_CANCEL_EDIT
)
5139 // Esc cancels any changes
5140 if ( IsEditorsValueModified() )
5142 EditorsValueWasNotModified();
5144 // Update the control as well
5145 m_selected
->GetEditorClass()->SetControlStringValue( m_selected
,
5147 m_selected
->GetDisplayedString() );
5150 OnValidationFailureReset(m_selected
);
5156 else if ( action
== wxPG_ACTION_COPY
)
5158 // NB: There is some problem with getting native cut-copy-paste keys to go through
5159 // for embedded editor wxTextCtrl. This is why we emulate.
5161 wxTextCtrl
* tc
= GetEditorTextCtrl();
5164 wxString sel
= tc
->GetStringSelection();
5166 CopyTextToClipboard(sel
);
5170 CopyTextToClipboard(m_selected
->GetDisplayedString());
5173 else if ( action
== wxPG_ACTION_CUT
)
5175 wxTextCtrl
* tc
= GetEditorTextCtrl();
5179 tc
->GetSelection(&from
, &to
);
5182 CopyTextToClipboard(tc
->GetStringSelection());
5183 tc
->Remove(from
, to
);
5187 else if ( action
== wxPG_ACTION_PASTE
)
5189 wxTextCtrl
* tc
= GetEditorTextCtrl();
5192 if (wxTheClipboard
->Open())
5194 if (wxTheClipboard
->IsSupported( wxDF_TEXT
))
5196 wxTextDataObject data
;
5197 wxTheClipboard
->GetData( data
);
5199 tc
->GetSelection(&from
, &to
);
5202 tc
->Remove(from
, to
);
5203 tc
->WriteText(data
.GetText());
5207 tc
->WriteText(data
.GetText());
5210 wxTheClipboard
->Close();
5218 // -----------------------------------------------------------------------
5220 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5224 // Events to editor controls should get relayed here.
5226 wxWindow
* focused
= wxWindow::FindFocus();
5228 wxWindow
* primaryCtrl
= GetEditorControl();
5231 (focused
==primaryCtrl
5232 || m_editorFocused
) )
5234 // Child key must be processed here, since it can
5235 // destroy the control which is referred by its own
5237 HandleChildKey( event
);
5240 HandleKeyEvent( event
);
5243 // -----------------------------------------------------------------------
5245 void wxPropertyGrid::OnKeyUp(wxKeyEvent
&event
)
5247 m_keyComboConsumed
= 0;
5252 // -----------------------------------------------------------------------
5254 void wxPropertyGrid::OnNavigationKey( wxNavigationKeyEvent
& event
)
5256 // Ignore events that occur very close to focus set
5257 if ( m_iFlags
& wxPG_FL_IGNORE_NEXT_NAVKEY
)
5259 m_iFlags
&= ~(wxPG_FL_IGNORE_NEXT_NAVKEY
);
5264 wxPGProperty
* next
= (wxPGProperty
*) NULL
;
5266 int dir
= event
.GetDirection()?1:-1;
5270 if ( dir
== 1 && (m_wndEditor
|| m_wndEditor2
) )
5272 wxWindow
* focused
= wxWindow::FindFocus();
5274 wxWindow
* wndToCheck
= GetEditorControl();
5276 // ODComboBox focus goes to its text ctrl, so we need to use it instead
5277 if ( wndToCheck
&& wndToCheck
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
5279 wxTextCtrl
* comboTextCtrl
= ((wxOwnerDrawnComboBox
*)wndToCheck
)->GetTextCtrl();
5280 if ( comboTextCtrl
)
5281 wndToCheck
= comboTextCtrl
;
5285 // Because of problems navigating from wxButton, do not go to it.
5288 // No primary, use secondary
5289 wndToCheck = m_wndEditor2;
5291 // If it has editor button, focus to it after the primary editor.
5292 // NB: Doesn't work since wxButton on wxMSW doesn't seem to propagate
5293 // key events (yes, I'm using wxWANTS_CHARS with it, and yes I
5294 // have somewhat debugged in window.cpp itself).
5295 else if ( focused == wndToCheck &&
5297 !(GetExtraStyle() & wxPG_EX_NO_TAB_TO_BUTTON) )
5299 wndToCheck = m_wndEditor2;
5300 wxLogDebug(wxT("Exp1"));
5304 if ( focused
!= wndToCheck
&&
5307 wndToCheck
->SetFocus();
5309 // Select all text in wxTextCtrl etc.
5310 if ( m_wndEditor
&& wndToCheck
== m_wndEditor
)
5311 m_selected
->GetEditorClass()->OnFocus(m_selected
,wndToCheck
);
5313 m_editorFocused
= 1;
5320 next
= wxPropertyGridIterator::OneStep(m_pState
, wxPG_ITERATE_VISIBLE
, m_selected
, dir
);
5324 // This allows preventing NavigateOut to occur
5325 DoSelectProperty( next
, wxPG_SEL_FOCUS
);
5334 // -----------------------------------------------------------------------
5336 bool wxPropertyGrid::ButtonTriggerKeyTest( wxKeyEvent
&event
)
5338 int keycode
= event
.GetKeyCode();
5340 // Does the keycode trigger button?
5341 if ( keycode
== m_pushButKeyCode
&&
5343 (!m_pushButKeyCodeNeedsAlt
|| event
.AltDown()) &&
5344 (!m_pushButKeyCodeNeedsCtrl
|| event
.ControlDown()) )
5346 m_keyComboConsumed
= 1;
5348 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,m_wndEditor2
->GetId());
5349 GetEventHandler()->AddPendingEvent(evt
);
5356 // -----------------------------------------------------------------------
5358 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5360 int keycode
= event
.GetKeyCode();
5362 // Ignore Alt and Control when they are down alone
5363 if ( keycode
== WXK_ALT
||
5364 keycode
== WXK_CONTROL
)
5370 if ( ButtonTriggerKeyTest(event
) )
5373 if ( HandleChildKey(event
) == true )
5376 GetEventHandler()->AddPendingEvent(event
);
5379 void wxPropertyGrid::OnChildKeyUp( wxKeyEvent
&event
)
5381 m_keyComboConsumed
= 0;
5383 GetEventHandler()->AddPendingEvent(event
);
5388 // -----------------------------------------------------------------------
5389 // wxPropertyGrid miscellaneous event handling
5390 // -----------------------------------------------------------------------
5392 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5395 // Check if the focus is in this control or one of its children
5396 wxWindow
* newFocused
= wxWindow::FindFocus();
5398 if ( newFocused
!= m_curFocused
)
5399 HandleFocusChange( newFocused
);
5402 // Called by focus event handlers. newFocused is the window that becomes focused.
5403 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5405 unsigned int oldFlags
= m_iFlags
;
5407 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5409 wxWindow
* parent
= newFocused
;
5411 // This must be one of nextFocus' parents.
5414 // Use m_eventObject, which is either wxPropertyGrid or
5415 // wxPropertyGridManager, as appropriate.
5416 if ( parent
== m_eventObject
)
5418 m_iFlags
|= wxPG_FL_FOCUSED
;
5421 parent
= parent
->GetParent();
5424 m_curFocused
= newFocused
;
5426 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5427 (oldFlags
& wxPG_FL_FOCUSED
) )
5429 // On each focus kill, mark the next nav key event
5430 // to be ignored (can't do on set focus since the
5431 // event would occur before it).
5432 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5434 m_iFlags
|= wxPG_FL_IGNORE_NEXT_NAVKEY
;
5436 // Need to store changed value
5437 CommitChangesFromEditor();
5443 // Preliminary code for tab-order respecting
5444 // tab-traversal (but should be moved to
5447 wxWindow* prevFocus = event.GetWindow();
5448 wxWindow* useThis = this;
5449 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5450 useThis = GetParent();
5453 prevFocus->GetParent() == useThis->GetParent() )
5455 wxList& children = useThis->GetParent()->GetChildren();
5457 wxNode* node = children.Find(prevFocus);
5459 if ( node->GetNext() &&
5460 useThis == node->GetNext()->GetData() )
5461 DoSelectProperty(GetFirst());
5462 else if ( node->GetPrevious () &&
5463 useThis == node->GetPrevious()->GetData() )
5464 DoSelectProperty(GetLastProperty());
5469 m_iFlags
&= ~(wxPG_FL_IGNORE_NEXT_NAVKEY
);
5473 if ( m_selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5474 DrawItem( m_selected
);
5478 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5480 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5481 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5482 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5483 //else if ( event.GetWindow() )
5485 HandleFocusChange(event
.GetWindow());
5490 // -----------------------------------------------------------------------
5492 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5494 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5497 // event.Skip() being commented out is aworkaround for bug reported
5498 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5502 // -----------------------------------------------------------------------
5504 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5506 m_iFlags
|= wxPG_FL_SCROLLED
;
5511 // -----------------------------------------------------------------------
5513 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5515 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5517 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5521 // -----------------------------------------------------------------------
5522 // Property editor related functions
5523 // -----------------------------------------------------------------------
5525 // noDefCheck = true prevents infinite recursion.
5526 wxPGEditor
* wxPropertyGrid::RegisterEditorClass( wxPGEditor
* editorclass
,
5527 const wxString
& name
,
5530 wxASSERT( editorclass
);
5532 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5533 RegisterDefaultEditors();
5535 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorclass
;
5540 // Registers all default editor classes
5541 void wxPropertyGrid::RegisterDefaultEditors()
5543 wxPGRegisterDefaultEditorClass( TextCtrl
);
5544 wxPGRegisterDefaultEditorClass( Choice
);
5545 wxPGRegisterDefaultEditorClass( ComboBox
);
5546 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5547 #if wxPG_INCLUDE_CHECKBOX
5548 wxPGRegisterDefaultEditorClass( CheckBox
);
5550 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5552 // Register SpinCtrl etc. editors before use
5553 RegisterAdditionalEditors();
5556 // -----------------------------------------------------------------------
5557 // wxPGStringTokenizer
5558 // Needed to handle C-style string lists (e.g. "str1" "str2")
5559 // -----------------------------------------------------------------------
5561 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5562 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5566 wxPGStringTokenizer::~wxPGStringTokenizer()
5570 bool wxPGStringTokenizer::HasMoreTokens()
5572 const wxString
& str
= *m_str
;
5574 wxString::const_iterator i
= m_curPos
;
5576 wxUniChar delim
= m_delimeter
;
5578 wxUniChar prev_a
= wxT('\0');
5580 bool inToken
= false;
5582 while ( i
!= str
.end() )
5591 m_readyToken
.clear();
5596 if ( prev_a
!= wxT('\\') )
5600 if ( a
!= wxT('\\') )
5620 m_curPos
= str
.end();
5628 wxString
wxPGStringTokenizer::GetNextToken()
5630 return m_readyToken
;
5633 // -----------------------------------------------------------------------
5635 // -----------------------------------------------------------------------
5637 wxPGChoiceEntry::wxPGChoiceEntry()
5638 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5642 wxPGChoiceEntry::wxPGChoiceEntry( const wxPGChoiceEntry
& entry
)
5643 : wxPGCell( entry
.GetText(), entry
.GetBitmap(),
5644 entry
.GetFgCol(), entry
.GetBgCol() ), m_value(entry
.GetValue())
5648 // -----------------------------------------------------------------------
5650 // -----------------------------------------------------------------------
5652 wxPGChoicesData::wxPGChoicesData()
5657 wxPGChoicesData::~wxPGChoicesData()
5662 void wxPGChoicesData::Clear()
5666 for ( i
=0; i
<m_items
.size(); i
++ )
5678 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
5680 wxASSERT( m_items
.size() == 0 );
5684 for ( i
=0; i
<data
->GetCount(); i
++ )
5685 m_items
.push_back( new wxPGChoiceEntry(*data
->Item(i
)) );
5688 // -----------------------------------------------------------------------
5690 // -----------------------------------------------------------------------
5692 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
5696 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5697 m_data
->Insert( -1, p
);
5701 // -----------------------------------------------------------------------
5703 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
5707 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5708 p
->SetBitmap(bitmap
);
5709 m_data
->Insert( -1, p
);
5713 // -----------------------------------------------------------------------
5715 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
5719 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(entry
);
5720 m_data
->Insert(index
, p
);
5724 // -----------------------------------------------------------------------
5726 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
5730 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5731 m_data
->Insert( index
, p
);
5735 // -----------------------------------------------------------------------
5737 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
5743 while ( index
< GetCount() )
5745 int cmpRes
= GetLabel(index
).Cmp(label
);
5751 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5752 m_data
->Insert( index
, p
);
5756 // -----------------------------------------------------------------------
5758 void wxPGChoices::Add( const wxChar
** labels
, const ValArrItem
* values
)
5762 unsigned int itemcount
= 0;
5763 const wxChar
** p
= &labels
[0];
5764 while ( *p
) { p
++; itemcount
++; }
5767 for ( i
= 0; i
< itemcount
; i
++ )
5769 int value
= wxPG_INVALID_VALUE
;
5772 m_data
->Insert( -1, new wxPGChoiceEntry(labels
[i
], value
) );
5776 // -----------------------------------------------------------------------
5778 void wxPGChoices::Add( const wxArrayString
& arr
, const ValArrItem
* values
)
5783 unsigned int itemcount
= arr
.size();
5785 for ( i
= 0; i
< itemcount
; i
++ )
5787 int value
= wxPG_INVALID_VALUE
;
5790 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5794 // -----------------------------------------------------------------------
5796 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
5801 unsigned int itemcount
= arr
.size();
5803 for ( i
= 0; i
< itemcount
; i
++ )
5805 int value
= wxPG_INVALID_VALUE
;
5806 if ( &arrint
&& arrint
.size() )
5808 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5812 // -----------------------------------------------------------------------
5814 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
5816 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
5818 for ( i
=nIndex
; i
<(nIndex
+count
); i
++)
5819 delete m_data
->Item(i
);
5820 m_data
->m_items
.RemoveAt(nIndex
, count
);
5823 // -----------------------------------------------------------------------
5825 int wxPGChoices::Index( const wxString
& str
) const
5830 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5832 if ( m_data
->Item(i
)->GetText() == str
)
5839 // -----------------------------------------------------------------------
5841 int wxPGChoices::Index( int val
) const
5846 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5848 if ( m_data
->Item(i
)->GetValue() == val
)
5855 // -----------------------------------------------------------------------
5857 wxArrayString
wxPGChoices::GetLabels() const
5862 if ( this && IsOk() )
5863 for ( i
=0; i
<GetCount(); i
++ )
5864 arr
.push_back(GetLabel(i
));
5869 // -----------------------------------------------------------------------
5871 bool wxPGChoices::HasValues() const
5876 // -----------------------------------------------------------------------
5878 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
5885 for ( i
=0; i
< strings
.size(); i
++ )
5887 int index
= Index(strings
[i
]);
5889 arr
.Add(GetValue(index
));
5891 arr
.Add(wxPG_INVALID_VALUE
);
5898 // -----------------------------------------------------------------------
5900 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
5901 wxArrayString
* unmatched
) const
5908 for ( i
=0; i
< strings
.size(); i
++ )
5910 const wxString
& str
= strings
[i
];
5911 int index
= Index(str
);
5914 else if ( unmatched
)
5915 unmatched
->Add(str
);
5922 // -----------------------------------------------------------------------
5924 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
5928 if ( data
!= wxPGChoicesEmptyData
)
5935 // -----------------------------------------------------------------------
5937 void wxPGChoices::Init()
5939 m_data
= wxPGChoicesEmptyData
;
5942 // -----------------------------------------------------------------------
5944 void wxPGChoices::Free()
5946 if ( m_data
!= wxPGChoicesEmptyData
)
5949 m_data
= wxPGChoicesEmptyData
;
5953 // -----------------------------------------------------------------------
5954 // wxPropertyGridEvent
5955 // -----------------------------------------------------------------------
5957 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5960 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED
)
5961 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING
)
5962 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED
)
5963 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED
)
5964 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK
)
5965 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED
)
5966 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED
)
5967 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED
)
5968 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK
)
5971 // -----------------------------------------------------------------------
5973 void wxPropertyGridEvent::Init()
5975 m_validationInfo
= NULL
;
5977 m_wasVetoed
= false;
5980 // -----------------------------------------------------------------------
5982 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5983 : wxCommandEvent(commandType
,id
)
5989 // -----------------------------------------------------------------------
5991 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5992 : wxCommandEvent(event
)
5994 m_eventType
= event
.GetEventType();
5995 m_eventObject
= event
.m_eventObject
;
5997 m_property
= event
.m_property
;
5998 m_validationInfo
= event
.m_validationInfo
;
5999 m_canVeto
= event
.m_canVeto
;
6000 m_wasVetoed
= event
.m_wasVetoed
;
6003 // -----------------------------------------------------------------------
6005 wxPropertyGridEvent::~wxPropertyGridEvent()
6009 // -----------------------------------------------------------------------
6011 wxEvent
* wxPropertyGridEvent::Clone() const
6013 return new wxPropertyGridEvent( *this );
6016 // -----------------------------------------------------------------------
6017 // wxPropertyGridPopulator
6018 // -----------------------------------------------------------------------
6020 wxPropertyGridPopulator::wxPropertyGridPopulator()
6024 wxPGGlobalVars
->m_offline
++;
6027 // -----------------------------------------------------------------------
6029 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
6032 m_propHierarchy
.clear();
6035 // -----------------------------------------------------------------------
6037 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
6043 // -----------------------------------------------------------------------
6045 wxPropertyGridPopulator::~wxPropertyGridPopulator()
6048 // Free unused sets of choices
6049 wxPGHashMapS2P::iterator it
;
6051 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
6053 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
6060 m_pg
->GetPanel()->Refresh();
6062 wxPGGlobalVars
->m_offline
--;
6065 // -----------------------------------------------------------------------
6067 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
6068 const wxString
& propLabel
,
6069 const wxString
& propName
,
6070 const wxString
* propValue
,
6071 wxPGChoices
* pChoices
)
6073 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
6074 wxPGProperty
* parent
= GetCurParent();
6076 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
6078 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
6082 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
6084 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
6088 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
6090 property
->SetLabel(propLabel
);
6091 property
->DoSetName(propName
);
6093 if ( pChoices
&& pChoices
->IsOk() )
6094 property
->SetChoices(*pChoices
);
6096 m_state
->DoInsert(parent
, -1, property
);
6099 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
);
6104 // -----------------------------------------------------------------------
6106 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
6108 m_propHierarchy
.push_back(property
);
6109 DoScanForChildren();
6110 m_propHierarchy
.pop_back();
6113 // -----------------------------------------------------------------------
6115 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
6116 const wxString
& idString
)
6118 wxPGChoices choices
;
6121 if ( choicesString
[0] == wxT('@') )
6123 wxString ids
= choicesString
.substr(1);
6124 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
6125 if ( it
== m_dictIdChoices
.end() )
6126 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
6128 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6133 if ( idString
.length() )
6135 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
6136 if ( it
!= m_dictIdChoices
.end() )
6138 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6145 // Parse choices string
6146 wxString::const_iterator it
= choicesString
.begin();
6150 bool labelValid
= false;
6152 for ( ; it
!= choicesString
.end(); it
++ )
6158 if ( c
== wxT('"') )
6163 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6164 choices
.Add(label
, l
);
6167 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6172 else if ( c
== wxT('=') )
6179 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
6186 if ( c
== wxT('"') )
6199 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6200 choices
.Add(label
, l
);
6203 if ( !choices
.IsOk() )
6205 choices
.EnsureData();
6209 if ( idString
.length() )
6210 m_dictIdChoices
[idString
] = choices
.GetData();
6217 // -----------------------------------------------------------------------
6219 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6221 if ( s
.Last() == wxT('%') )
6223 wxString s2
= s
.substr(0,s
.length()-1);
6225 if ( s2
.ToLong(&val
, 10) )
6227 *pval
= (val
*max
)/100;
6233 return s
.ToLong(pval
, 10);
6236 // -----------------------------------------------------------------------
6238 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6239 const wxString
& type
,
6240 const wxString
& value
)
6242 int l
= m_propHierarchy
.size();
6246 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6247 wxString valuel
= value
.Lower();
6250 if ( type
.length() == 0 )
6255 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6257 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6259 else if ( value
.ToLong(&v
, 0) )
6266 if ( type
== wxT("string") )
6270 else if ( type
== wxT("int") )
6273 value
.ToLong(&v
, 0);
6276 else if ( type
== wxT("bool") )
6278 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6285 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6290 p
->SetAttribute( name
, variant
);
6295 // -----------------------------------------------------------------------
6297 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6299 wxLogError(_("Error in resource: %s"),msg
.c_str());
6302 // -----------------------------------------------------------------------
6304 #endif // wxUSE_PROPGRID