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 // -----------------------------------------------------------------------
143 #include <wx/module.h>
145 class wxPGGlobalVarsClassManager
: public wxModule
147 DECLARE_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
)
149 wxPGGlobalVarsClassManager() {}
150 virtual bool OnInit() { wxPGGlobalVars
= new wxPGGlobalVarsClass(); return true; }
151 virtual void OnExit() { delete wxPGGlobalVars
; wxPGGlobalVars
= NULL
; }
154 IMPLEMENT_DYNAMIC_CLASS(wxPGGlobalVarsClassManager
, wxModule
)
157 wxPGGlobalVarsClass
* wxPGGlobalVars
= (wxPGGlobalVarsClass
*) NULL
;
160 wxPGGlobalVarsClass::wxPGGlobalVarsClass()
162 wxPGProperty::sm_wxPG_LABEL
= new wxString(wxPG_LABEL_STRING
);
164 m_boolChoices
.Add(_("False"));
165 m_boolChoices
.Add(_("True"));
167 m_fontFamilyChoices
= (wxPGChoices
*) NULL
;
169 m_defaultRenderer
= new wxPGDefaultRenderer();
171 m_autoGetTranslation
= false;
179 // Prepare some shared variants
180 m_vEmptyString
= wxString();
182 m_vMinusOne
= (long) -1;
186 // Prepare cached string constants
187 m_strstring
= wxS("string");
188 m_strlong
= wxS("long");
189 m_strbool
= wxS("bool");
190 m_strlist
= wxS("list");
191 m_strMin
= wxS("Min");
192 m_strMax
= wxS("Max");
193 m_strUnits
= wxS("Units");
194 m_strInlineHelp
= wxS("InlineHelp");
202 wxPGGlobalVarsClass::~wxPGGlobalVarsClass()
206 delete m_defaultRenderer
;
208 // This will always have one ref
209 delete m_fontFamilyChoices
;
212 for ( i
=0; i
<m_arrValidators
.size(); i
++ )
213 delete ((wxValidator
*)m_arrValidators
[i
]);
217 // Destroy value type class instances.
218 wxPGHashMapS2P::iterator vt_it
;
220 // Destroy editor class instances.
221 // iterate over all the elements in the class
222 for( vt_it
= m_mapEditorClasses
.begin(); vt_it
!= m_mapEditorClasses
.end(); ++vt_it
)
224 delete ((wxPGEditor
*)vt_it
->second
);
227 delete wxPGProperty::sm_wxPG_LABEL
;
230 void wxPropertyGridInitGlobalsIfNeeded()
234 // -----------------------------------------------------------------------
236 // -----------------------------------------------------------------------
239 // This class is a wxBrush derivative used in the background colour
240 // brush cache. It adds wxPG-type colour-in-long to the class.
241 // JMS: Yes I know wxBrush doesn't actually hold the value (refcounted
242 // object does), but this is simpler implementation and equally
246 class wxPGBrush
: public wxBrush
249 wxPGBrush( const wxColour
& colour
);
251 virtual ~wxPGBrush() { }
252 void SetColour2( const wxColour
& colour
);
253 inline long GetColourAsLong() const { return m_colAsLong
; }
259 void wxPGBrush::SetColour2( const wxColour
& colour
)
261 wxBrush::SetColour(colour
);
262 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
266 wxPGBrush::wxPGBrush() : wxBrush()
272 wxPGBrush::wxPGBrush( const wxColour
& colour
) : wxBrush(colour
)
274 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
278 // -----------------------------------------------------------------------
280 // -----------------------------------------------------------------------
283 // Same as wxPGBrush, but for wxColour instead.
286 class wxPGColour
: public wxColour
289 wxPGColour( const wxColour
& colour
);
291 virtual ~wxPGColour() { }
292 void SetColour2( const wxColour
& colour
);
293 inline long GetColourAsLong() const { return m_colAsLong
; }
299 void wxPGColour::SetColour2( const wxColour
& colour
)
302 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
306 wxPGColour::wxPGColour() : wxColour()
312 wxPGColour::wxPGColour( const wxColour
& colour
) : wxColour(colour
)
314 m_colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
318 // -----------------------------------------------------------------------
320 // Intercepts Close-events sent to wxPropertyGrid's top-level parent,
321 // and tries to commit property value.
322 // -----------------------------------------------------------------------
324 class wxPGTLWHandler
: public wxEvtHandler
328 wxPGTLWHandler( wxPropertyGrid
* pg
)
336 void OnClose( wxCloseEvent
& event
)
338 // ClearSelection forces value validation/commit.
339 if ( event
.CanVeto() && !m_pg
->ClearSelection() )
349 wxPropertyGrid
* m_pg
;
351 DECLARE_EVENT_TABLE()
354 BEGIN_EVENT_TABLE(wxPGTLWHandler
, wxEvtHandler
)
355 EVT_CLOSE(wxPGTLWHandler::OnClose
)
358 // -----------------------------------------------------------------------
360 // -----------------------------------------------------------------------
363 // wxPGCanvas acts as a graphics sub-window of the
364 // wxScrolledWindow that wxPropertyGrid is.
366 class wxPGCanvas
: public wxPanel
369 wxPGCanvas() : wxPanel()
372 virtual ~wxPGCanvas() { }
375 void OnMouseMove( wxMouseEvent
&event
)
377 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
378 pg
->OnMouseMove( event
);
381 void OnMouseClick( wxMouseEvent
&event
)
383 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
384 pg
->OnMouseClick( event
);
387 void OnMouseUp( wxMouseEvent
&event
)
389 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
390 pg
->OnMouseUp( event
);
393 void OnMouseRightClick( wxMouseEvent
&event
)
395 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
396 pg
->OnMouseRightClick( event
);
399 void OnMouseDoubleClick( wxMouseEvent
&event
)
401 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
402 pg
->OnMouseDoubleClick( event
);
405 void OnKey( wxKeyEvent
& event
)
407 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
411 void OnKeyUp( wxKeyEvent
& event
)
413 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
414 pg
->OnKeyUp( event
);
417 void OnPaint( wxPaintEvent
& event
);
419 // Always be focussable, even with child windows
420 virtual void SetCanFocus(bool WXUNUSED(canFocus
))
421 { wxPanel::SetCanFocus(true); }
425 DECLARE_EVENT_TABLE()
426 DECLARE_ABSTRACT_CLASS(wxPGCanvas
)
430 IMPLEMENT_ABSTRACT_CLASS(wxPGCanvas
,wxPanel
)
432 BEGIN_EVENT_TABLE(wxPGCanvas
, wxPanel
)
433 EVT_MOTION(wxPGCanvas::OnMouseMove
)
434 EVT_PAINT(wxPGCanvas::OnPaint
)
435 EVT_LEFT_DOWN(wxPGCanvas::OnMouseClick
)
436 EVT_LEFT_UP(wxPGCanvas::OnMouseUp
)
437 EVT_RIGHT_UP(wxPGCanvas::OnMouseRightClick
)
438 EVT_LEFT_DCLICK(wxPGCanvas::OnMouseDoubleClick
)
439 EVT_KEY_DOWN(wxPGCanvas::OnKey
)
440 EVT_KEY_UP(wxPGCanvas::OnKeyUp
)
441 EVT_CHAR(wxPGCanvas::OnKey
)
445 void wxPGCanvas::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
447 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
448 wxASSERT( pg
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
452 // Don't paint after destruction has begun
453 if ( !(pg
->GetInternalFlags() & wxPG_FL_INITIALIZED
) )
456 // Update everything inside the box
457 wxRect r
= GetUpdateRegion().GetBox();
459 // Repaint this rectangle
460 pg
->DrawItems( dc
, r
.y
, r
.y
+ r
.height
, &r
);
462 // We assume that the size set when grid is shown
463 // is what is desired.
464 pg
->SetInternalFlag(wxPG_FL_GOOD_SIZE_SET
);
467 // -----------------------------------------------------------------------
469 // -----------------------------------------------------------------------
471 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid
, wxScrolledWindow
)
473 BEGIN_EVENT_TABLE(wxPropertyGrid
, wxScrolledWindow
)
474 EVT_IDLE(wxPropertyGrid::OnIdle
)
475 EVT_MOTION(wxPropertyGrid::OnMouseMoveBottom
)
476 EVT_PAINT(wxPropertyGrid::OnPaint
)
477 EVT_SIZE(wxPropertyGrid::OnResize
)
478 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry
)
479 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry
)
480 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange
)
481 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent
)
482 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent
)
483 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent
)
484 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent
)
485 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged
)
489 // -----------------------------------------------------------------------
491 wxPropertyGrid::wxPropertyGrid()
497 // -----------------------------------------------------------------------
499 wxPropertyGrid::wxPropertyGrid( wxWindow
*parent
,
508 Create(parent
,id
,pos
,size
,style
,name
);
511 // -----------------------------------------------------------------------
513 bool wxPropertyGrid::Create( wxWindow
*parent
,
521 if ( !(style
&wxBORDER_MASK
) )
522 style
|= wxSIMPLE_BORDER
;
527 // This prevents crash under Win2K, but still
528 // enables keyboard navigation
529 if ( style
& wxTAB_TRAVERSAL
)
531 style
&= ~(wxTAB_TRAVERSAL
);
532 style
|= wxWANTS_CHARS
;
535 if ( style
& wxTAB_TRAVERSAL
)
536 style
|= wxWANTS_CHARS
;
539 wxScrolledWindow::Create(parent
,id
,pos
,size
,style
,name
);
546 // -----------------------------------------------------------------------
549 // Initialize values to defaults
551 void wxPropertyGrid::Init1()
553 // Register editor classes, if necessary.
554 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
555 wxPropertyGrid::RegisterDefaultEditors();
558 m_pState
= (wxPropertyGridPageState
*) NULL
;
559 m_wndEditor
= m_wndEditor2
= (wxWindow
*) NULL
;
560 m_selected
= (wxPGProperty
*) NULL
;
562 m_propHover
= (wxPGProperty
*) NULL
;
563 m_eventObject
= this;
564 m_curFocused
= (wxWindow
*) NULL
;
566 m_inDoPropertyChanged
= 0;
567 m_inCommitChangesFromEditor
= 0;
568 m_inDoSelectProperty
= 0;
569 m_permanentValidationFailureBehavior
= wxPG_VFB_DEFAULT
;
575 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_RIGHT
);
576 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_DOWN
);
577 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_LEFT
);
578 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_UP
);
579 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY
, WXK_RIGHT
);
580 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY
, WXK_LEFT
);
581 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT
, WXK_ESCAPE
);
582 AddActionTrigger( wxPG_ACTION_CUT
, 'X', wxMOD_CONTROL
);
583 AddActionTrigger( wxPG_ACTION_CUT
, WXK_DELETE
, wxMOD_SHIFT
);
584 AddActionTrigger( wxPG_ACTION_COPY
, 'C', wxMOD_CONTROL
);
585 AddActionTrigger( wxPG_ACTION_COPY
, WXK_INSERT
, wxMOD_CONTROL
);
586 AddActionTrigger( wxPG_ACTION_PASTE
, 'V', wxMOD_CONTROL
);
587 AddActionTrigger( wxPG_ACTION_PASTE
, WXK_INSERT
, wxMOD_SHIFT
);
588 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_DOWN
, wxMOD_ALT
);
590 m_coloursCustomized
= 0;
595 #if wxPG_DOUBLE_BUFFER
596 m_doubleBuffer
= (wxBitmap
*) NULL
;
599 #ifndef wxPG_ICON_WIDTH
605 m_iconWidth
= wxPG_ICON_WIDTH
;
610 m_gutterWidth
= wxPG_GUTTER_MIN
;
611 m_subgroup_extramargin
= 10;
615 m_width
= m_height
= 0;
617 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
620 m_chgInfo_changedProperty
= NULL
;
623 // -----------------------------------------------------------------------
626 // Initialize after parent etc. set
628 void wxPropertyGrid::Init2()
630 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
633 // Smaller controls on Mac
634 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
637 // Now create state, if one didn't exist already
638 // (wxPropertyGridManager might have created it for us).
641 m_pState
= CreateState();
642 m_pState
->m_pPropGrid
= this;
643 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
646 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
647 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
649 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
651 m_pState
->InitNonCatMode();
653 m_pState
->m_properties
= m_pState
->m_abcArray
;
656 GetClientSize(&m_width
,&m_height
);
658 #ifndef wxPG_ICON_WIDTH
659 // create two bitmap nodes for drawing
660 m_expandbmp
= new wxBitmap(expand_xpm
);
661 m_collbmp
= new wxBitmap(collapse_xpm
);
663 // calculate average font height for bitmap centering
665 m_iconWidth
= m_expandbmp
->GetWidth();
666 m_iconHeight
= m_expandbmp
->GetHeight();
669 m_curcursor
= wxCURSOR_ARROW
;
670 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
672 // adjust bitmap icon y position so they are centered
673 m_vspacing
= wxPG_DEFAULT_VSPACING
;
677 wxFont useFont
= wxScrolledWindow::GetFont();
678 wxScrolledWindow::SetOwnFont( useFont
);
681 // This should be otherwise called by SetOwnFont
682 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
684 // Add base brush item
685 m_arrBgBrushes
.Add((void*)new wxPGBrush());
687 // Add base colour items
688 m_arrFgCols
.Add((void*)new wxPGColour());
689 m_arrFgCols
.Add((void*)new wxPGColour());
693 // This helps with flicker
694 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
697 wxPGTLWHandler
* handler
= new wxPGTLWHandler(this);
698 m_tlp
= ::wxGetTopLevelParent(this);
699 m_tlwHandler
= handler
;
700 m_tlp
->PushEventHandler(handler
);
702 // set virtual size to this window size
703 wxSize wndsize
= GetSize();
704 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
706 m_timeCreated
= ::wxGetLocalTimeMillis();
708 m_canvas
= new wxPGCanvas();
709 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
710 (GetWindowStyle() & wxTAB_TRAVERSAL
) | wxWANTS_CHARS
| wxCLIP_CHILDREN
);
711 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
713 m_iFlags
|= wxPG_FL_INITIALIZED
;
715 m_ncWidth
= wndsize
.GetWidth();
717 // Need to call OnResize handler or size given in constructor/Create
719 wxSizeEvent
sizeEvent(wndsize
,0);
723 // -----------------------------------------------------------------------
725 wxPropertyGrid::~wxPropertyGrid()
729 DoSelectProperty(NULL
);
731 // This should do prevent things from going too badly wrong
732 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
734 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
735 m_canvas
->ReleaseMouse();
737 wxPGTLWHandler
* handler
= (wxPGTLWHandler
*) m_tlwHandler
;
738 m_tlp
->RemoveEventHandler(handler
);
742 if ( IsEditorsValueModified() )
743 ::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).)"),
744 wxS("wxPropertyGrid Debug Warning") );
747 #if wxPG_DOUBLE_BUFFER
748 if ( m_doubleBuffer
)
749 delete m_doubleBuffer
;
752 //m_selected = (wxPGProperty*) NULL;
754 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
757 delete m_cursorSizeWE
;
759 #ifndef wxPG_ICON_WIDTH
764 // Delete cached text colours.
765 for ( i
=0; i
<m_arrFgCols
.size(); i
++ )
767 delete (wxPGColour
*)m_arrFgCols
.Item(i
);
770 // Delete cached brushes.
771 for ( i
=0; i
<m_arrBgBrushes
.size(); i
++ )
773 delete (wxPGBrush
*)m_arrBgBrushes
.Item(i
);
776 // Delete common value records
777 for ( i
=0; i
<m_commonValues
.size(); i
++ )
779 delete GetCommonValue(i
);
783 // -----------------------------------------------------------------------
785 bool wxPropertyGrid::Destroy()
787 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
788 m_canvas
->ReleaseMouse();
790 return wxScrolledWindow::Destroy();
793 // -----------------------------------------------------------------------
795 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
797 return new wxPropertyGridPageState();
800 // -----------------------------------------------------------------------
801 // wxPropertyGrid overridden wxWindow methods
802 // -----------------------------------------------------------------------
804 void wxPropertyGrid::SetWindowStyleFlag( long style
)
806 long old_style
= m_windowStyle
;
808 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
810 wxASSERT( m_pState
);
812 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
815 EnableCategories( true );
817 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
819 // Disable categories
820 EnableCategories( false );
822 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
828 PrepareAfterItemsAdded();
830 m_pState
->m_itemsAdded
= 1;
832 #if wxPG_SUPPORT_TOOLTIPS
833 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
839 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
840 SetToolTip ( tooltip );
841 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
844 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
849 m_canvas
->SetToolTip( (wxToolTip
*) NULL
);
854 wxScrolledWindow::SetWindowStyleFlag ( style
);
856 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
858 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
860 CalculateFontAndBitmapStuff( m_vspacing
);
866 // -----------------------------------------------------------------------
868 void wxPropertyGrid::Freeze()
872 wxScrolledWindow::Freeze();
877 // -----------------------------------------------------------------------
879 void wxPropertyGrid::Thaw()
885 wxScrolledWindow::Thaw();
886 RecalculateVirtualSize();
887 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
891 // Force property re-selection
893 DoSelectProperty(m_selected
, wxPG_SEL_FORCE
);
897 // -----------------------------------------------------------------------
899 void wxPropertyGrid::SetExtraStyle( long exStyle
)
901 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
903 #if defined(__WXMSW__)
906 // Don't use WS_EX_COMPOSITED just now.
909 if ( m_iFlags & wxPG_FL_IN_MANAGER )
910 hWnd = (HWND)GetParent()->GetHWND();
912 hWnd = (HWND)GetHWND();
914 ::SetWindowLong( hWnd, GWL_EXSTYLE,
915 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
918 //#elif defined(__WXGTK20__)
920 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
921 // truly was double-buffered.
922 if ( !this->IsDoubleBuffered() )
924 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
928 #if wxPG_DOUBLE_BUFFER
929 delete m_doubleBuffer
;
930 m_doubleBuffer
= NULL
;
935 wxScrolledWindow::SetExtraStyle( exStyle
);
937 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
938 m_pState
->InitNonCatMode();
940 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
941 m_windowStyle
|= wxPG_TOOLTIPS
;
944 wxPGGlobalVars
->m_extraStyle
= exStyle
;
947 // -----------------------------------------------------------------------
949 // returns the best acceptable minimal size
950 wxSize
wxPropertyGrid::DoGetBestSize() const
953 if ( m_lineHeight
> hei
)
955 wxSize sz
= wxSize( 60, hei
+40 );
961 // -----------------------------------------------------------------------
962 // wxPropertyGrid Font and Colour Methods
963 // -----------------------------------------------------------------------
965 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
969 m_captionFont
= wxScrolledWindow::GetFont();
971 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
972 m_subgroup_extramargin
= x
+ (x
/2);
975 #if wxPG_USE_RENDERER_NATIVE
976 m_iconWidth
= wxPG_ICON_WIDTH
;
977 #elif wxPG_ICON_WIDTH
979 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
980 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
981 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
985 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
986 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
987 m_gutterWidth
= wxPG_GUTTER_MIN
;
990 if ( vspacing
<= 1 ) vdiv
= 12;
991 else if ( vspacing
>= 3 ) vdiv
= 3;
993 m_spacingy
= m_fontHeight
/ vdiv
;
994 if ( m_spacingy
< wxPG_YSPACING_MIN
)
995 m_spacingy
= wxPG_YSPACING_MIN
;
998 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
999 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1001 m_captionFont
.SetWeight(wxBOLD
);
1002 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1004 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1007 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1008 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1011 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1013 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1014 RecalculateVirtualSize();
1016 InvalidateBestSize();
1019 // -----------------------------------------------------------------------
1021 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1027 // -----------------------------------------------------------------------
1029 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1030 int ga
= 1000, int ba
= 1000,
1031 bool forceDifferent
= false)
1038 // Recursion guard (allow 2 max)
1039 static int isinside
= 0;
1041 wxCHECK_MSG( isinside
< 3,
1043 wxT("wxPGAdjustColour should not be recursively called more than once") );
1048 int g
= src
.Green();
1051 if ( r2
>255 ) r2
= 255;
1052 else if ( r2
<0) r2
= 0;
1054 if ( g2
>255 ) g2
= 255;
1055 else if ( g2
<0) g2
= 0;
1057 if ( b2
>255 ) b2
= 255;
1058 else if ( b2
<0) b2
= 0;
1060 // Make sure they are somewhat different
1061 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1062 dst
= wxPGAdjustColour(src
,-(ra
*2));
1064 dst
= wxColour(r2
,g2
,b2
);
1066 // Recursion guard (allow 2 max)
1073 static int wxPGGetColAvg( const wxColour
& col
)
1075 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1079 void wxPropertyGrid::RegainColours()
1081 wxColour def_bgcol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1083 if ( !(m_coloursCustomized
& 0x0002) )
1085 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1087 // Make sure colour is dark enough
1089 int colDec
= wxPGGetColAvg(col
) - 230;
1091 int colDec
= wxPGGetColAvg(col
) - 200;
1094 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1099 if ( !(m_coloursCustomized
& 0x0001) )
1100 m_colMargin
= m_colCapBack
;
1102 if ( !(m_coloursCustomized
& 0x0004) )
1109 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1110 m_colCapFore
= capForeCol
;
1112 // Set the cached colour as well.
1113 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(capForeCol
);
1116 if ( !(m_coloursCustomized
& 0x0008) )
1118 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1119 m_colPropBack
= bgCol
;
1121 // Set the cached brush as well.
1122 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(bgCol
);
1125 if ( !(m_coloursCustomized
& 0x0010) )
1127 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1128 m_colPropFore
= fgCol
;
1130 // Set the cached colour as well.
1131 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(fgCol
);
1134 if ( !(m_coloursCustomized
& 0x0020) )
1135 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1137 if ( !(m_coloursCustomized
& 0x0040) )
1138 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1140 if ( !(m_coloursCustomized
& 0x0080) )
1141 m_colLine
= m_colCapBack
;
1143 if ( !(m_coloursCustomized
& 0x0100) )
1144 m_colDisPropFore
= m_colCapFore
;
1146 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1149 // -----------------------------------------------------------------------
1151 void wxPropertyGrid::ResetColours()
1153 m_coloursCustomized
= 0;
1160 // -----------------------------------------------------------------------
1162 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1164 // Must disable active editor.
1167 bool selRes
= ClearSelection();
1168 wxPG_CHECK_MSG_DBG( selRes
,
1170 wxT("failed to deselect a property (editor probably had invalid value)") );
1173 // TODO: Following code is disabled with wxMac because
1174 // it is reported to fail. I (JMS) cannot debug it
1175 // personally right now.
1176 #if !defined(__WXMAC__)
1177 bool res
= wxScrolledWindow::SetFont( font
);
1180 CalculateFontAndBitmapStuff( m_vspacing
);
1183 m_pState
->CalculateFontAndBitmapStuff(m_vspacing
);
1191 // TODO: Remove after SetFont crash fixed.
1192 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1194 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."));
1200 // -----------------------------------------------------------------------
1202 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1205 m_coloursCustomized
|= 0x80;
1209 // -----------------------------------------------------------------------
1211 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1214 m_coloursCustomized
|= 0x01;
1218 // -----------------------------------------------------------------------
1220 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1222 m_colPropBack
= col
;
1223 m_coloursCustomized
|= 0x08;
1225 // Set the cached brush as well.
1226 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(col
);
1231 // -----------------------------------------------------------------------
1233 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1235 m_colPropFore
= col
;
1236 m_coloursCustomized
|= 0x10;
1238 // Set the cached colour as well.
1239 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(col
);
1244 // -----------------------------------------------------------------------
1246 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1248 m_colEmptySpace
= col
;
1253 // -----------------------------------------------------------------------
1255 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1257 m_colDisPropFore
= col
;
1258 m_coloursCustomized
|= 0x100;
1262 // -----------------------------------------------------------------------
1264 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1267 m_coloursCustomized
|= 0x20;
1271 // -----------------------------------------------------------------------
1273 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1276 m_coloursCustomized
|= 0x40;
1280 // -----------------------------------------------------------------------
1282 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1285 m_coloursCustomized
|= 0x02;
1289 // -----------------------------------------------------------------------
1291 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1294 m_coloursCustomized
|= 0x04;
1296 // Set the cached colour as well.
1297 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(col
);
1302 // -----------------------------------------------------------------------
1304 void wxPropertyGrid::SetBackgroundColourIndex( wxPGProperty
* p
, int index
)
1306 unsigned char ind
= index
;
1308 p
->m_bgColIndex
= ind
;
1311 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1312 SetBackgroundColourIndex(p
->Item(i
),index
);
1315 // -----------------------------------------------------------------------
1317 void wxPropertyGrid::SetPropertyBackgroundColour( wxPGPropArg id
, const wxColour
& colour
)
1319 wxPG_PROP_ARG_CALL_PROLOG()
1324 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1326 // As it is most likely that the previous colour is used, start comparison
1328 for ( i
=(m_arrBgBrushes
.size()-1); i
>0; i
-- )
1330 if ( ((wxPGBrush
*)m_arrBgBrushes
.Item(i
))->GetColourAsLong() == colAsLong
)
1339 colInd
= m_arrBgBrushes
.size();
1340 wxCHECK_RET( colInd
< 256, wxT("wxPropertyGrid: Warning - Only 255 different property background colours allowed.") );
1341 m_arrBgBrushes
.Add( (void*)new wxPGBrush(colour
) );
1345 SetBackgroundColourIndex(p
,colInd
);
1347 // If this was on a visible grid, then draw it.
1348 DrawItemAndChildren(p
);
1351 // -----------------------------------------------------------------------
1353 wxColour
wxPropertyGrid::GetPropertyBackgroundColour( wxPGPropArg id
) const
1355 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1357 return ((wxPGBrush
*)m_arrBgBrushes
.Item(p
->m_bgColIndex
))->GetColour();
1360 // -----------------------------------------------------------------------
1362 void wxPropertyGrid::SetTextColourIndex( wxPGProperty
* p
, int index
, int flags
)
1364 unsigned char ind
= index
;
1366 p
->m_fgColIndex
= ind
;
1368 if ( p
->GetChildCount() && (flags
& wxPG_RECURSE
) )
1371 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1372 SetTextColourIndex( p
->Item(i
), index
, flags
);
1376 // -----------------------------------------------------------------------
1378 int wxPropertyGrid::CacheColour( const wxColour
& colour
)
1383 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1385 // As it is most likely that the previous colour is used, start comparison
1387 for ( i
=(m_arrFgCols
.size()-1); i
>0; i
-- )
1389 if ( ((wxPGColour
*)m_arrFgCols
.Item(i
))->GetColourAsLong() == colAsLong
)
1398 colInd
= m_arrFgCols
.size();
1399 wxCHECK_MSG( colInd
< 256, 0, wxT("wxPropertyGrid: Warning - Only 255 different property foreground colours allowed.") );
1400 m_arrFgCols
.Add( (void*)new wxPGColour(colour
) );
1406 // -----------------------------------------------------------------------
1408 void wxPropertyGrid::SetPropertyTextColour( wxPGPropArg id
, const wxColour
& colour
,
1411 wxPG_PROP_ARG_CALL_PROLOG()
1413 if ( p
->IsCategory() )
1415 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1416 cat
->SetTextColIndex(CacheColour(colour
));
1422 flags
|= wxPG_RECURSE
;
1423 SetTextColourIndex(p
, CacheColour(colour
), flags
);
1425 DrawItemAndChildren(p
);
1428 // -----------------------------------------------------------------------
1430 wxColour
wxPropertyGrid::GetPropertyTextColour( wxPGPropArg id
) const
1432 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1434 return wxColour(*((wxPGColour
*)m_arrFgCols
.Item(p
->m_fgColIndex
)));
1437 void wxPropertyGrid::SetPropertyColoursToDefault( wxPGPropArg id
)
1439 wxPG_PROP_ARG_CALL_PROLOG()
1441 SetBackgroundColourIndex( p
, 0 );
1442 SetTextColourIndex( p
, 0, wxPG_RECURSE
);
1444 if ( p
->IsCategory() )
1446 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1447 cat
->SetTextColIndex(1);
1451 // -----------------------------------------------------------------------
1452 // wxPropertyGrid property adding and removal
1453 // -----------------------------------------------------------------------
1455 void wxPropertyGrid::PrepareAfterItemsAdded()
1457 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1459 m_pState
->m_itemsAdded
= 0;
1461 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1464 RecalculateVirtualSize();
1467 // -----------------------------------------------------------------------
1468 // wxPropertyGrid property value setting and getting
1469 // -----------------------------------------------------------------------
1471 void wxPropertyGrid::DoSetPropertyValueUnspecified( wxPGProperty
* p
)
1473 m_pState
->DoSetPropertyValueUnspecified(p
);
1474 DrawItemAndChildren(p
);
1476 wxPGProperty
* parent
= p
->GetParent();
1477 while ( (parent
->GetFlags() & wxPG_PROP_PARENTAL_FLAGS
) == wxPG_PROP_MISC_PARENT
)
1480 parent
= parent
->GetParent();
1484 // -----------------------------------------------------------------------
1485 // wxPropertyGrid property operations
1486 // -----------------------------------------------------------------------
1488 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1490 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1494 bool changed
= false;
1496 // Is it inside collapsed section?
1497 if ( !p
->IsVisible() )
1500 wxPGProperty
* parent
= p
->GetParent();
1501 wxPGProperty
* grandparent
= parent
->GetParent();
1503 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1504 Expand( grandparent
);
1512 GetViewStart(&vx
,&vy
);
1513 vy
*=wxPG_PIXELS_PER_UNIT
;
1519 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1520 m_iFlags
|= wxPG_FL_SCROLLED
;
1523 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1525 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1526 m_iFlags
|= wxPG_FL_SCROLLED
;
1536 // -----------------------------------------------------------------------
1537 // wxPropertyGrid helper methods called by properties
1538 // -----------------------------------------------------------------------
1540 // Control font changer helper.
1541 void wxPropertyGrid::SetCurControlBoldFont()
1543 wxASSERT( m_wndEditor
);
1544 m_wndEditor
->SetFont( m_captionFont
);
1547 // -----------------------------------------------------------------------
1549 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1552 #if wxPG_SMALL_SCREEN
1553 // On small-screen devices, always show dialogs with default position and size.
1554 return wxDefaultPosition
;
1556 int splitterX
= GetSplitterPosition();
1560 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1562 ImprovedClientToScreen( &x
, &y
);
1564 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1565 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1572 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1582 new_y
= y
+ m_lineHeight
;
1584 return wxPoint(new_x
,new_y
);
1588 // -----------------------------------------------------------------------
1590 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1592 if ( src_str
.length() == 0 )
1598 bool prev_is_slash
= false;
1600 wxString::const_iterator i
= src_str
.begin();
1604 for ( ; i
!= src_str
.end(); i
++ )
1608 if ( a
!= wxS('\\') )
1610 if ( !prev_is_slash
)
1616 if ( a
== wxS('n') )
1619 dst_str
<< wxS('\n');
1621 dst_str
<< wxS('\n');
1624 else if ( a
== wxS('t') )
1625 dst_str
<< wxS('\t');
1629 prev_is_slash
= false;
1633 if ( prev_is_slash
)
1635 dst_str
<< wxS('\\');
1636 prev_is_slash
= false;
1640 prev_is_slash
= true;
1647 // -----------------------------------------------------------------------
1649 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1651 if ( src_str
.length() == 0 )
1657 wxString::const_iterator i
= src_str
.begin();
1658 wxUniChar prev_a
= wxS('\0');
1662 for ( ; i
!= src_str
.end(); i
++ )
1666 if ( a
>= wxS(' ') )
1668 // This surely is not something that requires an escape sequence.
1673 // This might need...
1674 if ( a
== wxS('\r') )
1676 // DOS style line end.
1677 // Already taken care below
1679 else if ( a
== wxS('\n') )
1680 // UNIX style line end.
1681 dst_str
<< wxS("\\n");
1682 else if ( a
== wxS('\t') )
1684 dst_str
<< wxS('\t');
1687 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1697 // -----------------------------------------------------------------------
1699 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1703 return (wxPGProperty
*) NULL
;
1706 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1709 // -----------------------------------------------------------------------
1710 // wxPropertyGrid graphics related methods
1711 // -----------------------------------------------------------------------
1713 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1717 // Update everything inside the box
1718 wxRect r
= GetUpdateRegion().GetBox();
1720 dc
.SetPen(m_colEmptySpace
);
1721 dc
.SetBrush(m_colEmptySpace
);
1722 dc
.DrawRectangle(r
);
1725 // -----------------------------------------------------------------------
1727 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1728 wxPGProperty
* property
) const
1730 // Prepare rectangle to be used
1732 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1733 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1735 #if (wxPG_USE_RENDERER_NATIVE)
1737 #elif wxPG_ICON_WIDTH
1738 // Drawing expand/collapse button manually
1739 dc
.SetPen(m_colPropFore
);
1740 if ( property
->IsCategory() )
1741 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1743 dc
.SetBrush(m_colPropBack
);
1745 dc
.DrawRectangle( r
);
1746 int _y
= r
.y
+(m_iconWidth
/2);
1747 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1752 if ( property
->IsExpanded() )
1754 // wxRenderer functions are non-mutating in nature, so it
1755 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1756 // Hopefully this does not cause problems.
1757 #if (wxPG_USE_RENDERER_NATIVE)
1758 wxRendererNative::Get().DrawTreeItemButton(
1764 #elif wxPG_ICON_WIDTH
1773 #if (wxPG_USE_RENDERER_NATIVE)
1774 wxRendererNative::Get().DrawTreeItemButton(
1780 #elif wxPG_ICON_WIDTH
1781 int _x
= r
.x
+(m_iconWidth
/2);
1782 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1788 #if (wxPG_USE_RENDERER_NATIVE)
1790 #elif wxPG_ICON_WIDTH
1793 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1797 // -----------------------------------------------------------------------
1800 // This is the one called by OnPaint event handler and others.
1801 // topy and bottomy are already unscrolled (ie. physical)
1803 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1805 unsigned int bottomy
,
1806 const wxRect
* clipRect
)
1808 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1810 m_pState
->EnsureVirtualHeight();
1812 wxRect tempClipRect
;
1815 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1816 clipRect
= &tempClipRect
;
1819 // items added check
1820 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1822 int paintFinishY
= 0;
1824 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1827 bool isBuffered
= false;
1829 #if wxPG_DOUBLE_BUFFER
1830 wxMemoryDC
* bufferDC
= NULL
;
1832 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1834 if ( !m_doubleBuffer
)
1836 paintFinishY
= clipRect
->y
;
1841 bufferDC
= new wxMemoryDC();
1843 // If nothing was changed, then just copy from double-buffer
1844 bufferDC
->SelectObject( *m_doubleBuffer
);
1854 dc
.SetClippingRegion( *clipRect
);
1855 paintFinishY
= DoDrawItems( *dcPtr
, NULL
, NULL
, clipRect
, isBuffered
);
1858 #if wxPG_DOUBLE_BUFFER
1861 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1862 bufferDC
, 0, 0, wxCOPY
);
1863 dc
.DestroyClippingRegion(); // Is this really necessary?
1869 // Clear area beyond bottomY?
1870 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1872 dc
.SetPen(m_colEmptySpace
);
1873 dc
.SetBrush(m_colEmptySpace
);
1874 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1878 // -----------------------------------------------------------------------
1880 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1881 const wxPGProperty
* firstItem
,
1882 const wxPGProperty
* lastItem
,
1883 const wxRect
* clipRect
,
1884 bool isBuffered
) const
1886 // TODO: This should somehow be eliminated.
1887 wxRect tempClipRect
;
1890 wxASSERT(firstItem
);
1892 tempClipRect
= GetPropertyRect(firstItem
, lastItem
);
1893 clipRect
= &tempClipRect
;
1897 firstItem
= DoGetItemAtY(clipRect
->y
);
1901 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1903 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1906 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1909 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1910 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1912 int lh
= m_lineHeight
;
1915 int lastItemBottomY
;
1917 firstItemTopY
= clipRect
->y
;
1918 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1920 // Align y coordinates to item boundaries
1921 firstItemTopY
-= firstItemTopY
% lh
;
1922 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1923 lastItemBottomY
-= 1;
1925 // Entire range outside scrolled, visible area?
1926 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1929 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1933 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
1934 firstItem->GetLabel().c_str(),
1935 lastItem->GetLabel().c_str(),
1936 (int)(lastItemBottomY - firstItemTopY),
1938 (unsigned long)clipRect );
1943 long windowStyle
= m_windowStyle
;
1949 // With wxPG_DOUBLE_BUFFER, do double buffering
1950 // - buffer's y = 0, so align cliprect and coordinates to that
1952 #if wxPG_DOUBLE_BUFFER
1958 xRelMod
= clipRect
->x
;
1959 yRelMod
= clipRect
->y
;
1962 // clipRect conversion
1970 firstItemTopY
-= yRelMod
;
1971 lastItemBottomY
-= yRelMod
;
1974 wxUnusedVar(isBuffered
);
1977 int x
= m_marginWidth
- xRelMod
;
1979 const wxFont
& normalfont
= m_font
;
1981 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) ? true : false;
1983 bool isEnabled
= IsEnabled();
1986 // Prepare some pens and brushes that are often changed to.
1989 wxBrush
marginBrush(m_colMargin
);
1990 wxPen
marginPen(m_colMargin
);
1991 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
1992 wxPen
linepen(m_colLine
,1,wxSOLID
);
1994 // pen that has same colour as text
1995 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
1998 // Clear margin with background colour
2000 dc
.SetBrush( marginBrush
);
2001 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2003 dc
.SetPen( *wxTRANSPARENT_PEN
);
2004 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2007 const wxPGProperty
* selected
= m_selected
;
2008 const wxPropertyGridPageState
* state
= m_pState
;
2010 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2011 bool wasSelectedPainted
= false;
2014 // TODO: Only render columns that are within clipping region.
2016 dc
.SetFont(normalfont
);
2018 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2019 int endScanBottomY
= lastItemBottomY
+ lh
;
2020 int y
= firstItemTopY
;
2023 // Pregenerate list of visible properties.
2024 wxArrayPGProperty visPropArray
;
2025 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2027 for ( ; !it
.AtEnd(); it
.Next() )
2029 const wxPGProperty
* p
= *it
;
2031 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2033 visPropArray
.push_back((wxPGProperty
*)p
);
2035 if ( y
> endScanBottomY
)
2042 visPropArray
.push_back(NULL
);
2044 wxPGProperty
* nextP
= visPropArray
[0];
2046 int gridWidth
= state
->m_width
;
2049 for ( unsigned int arrInd
=1;
2050 nextP
&& y
<= lastItemBottomY
;
2053 wxPGProperty
* p
= nextP
;
2054 nextP
= visPropArray
[arrInd
];
2056 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2057 int textMarginHere
= x
;
2058 int renderFlags
= wxPGCellRenderer::Control
;
2060 int greyDepth
= m_marginWidth
;
2061 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2062 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2064 int greyDepthX
= greyDepth
- xRelMod
;
2066 // Use basic depth if in non-categoric mode and parent is base array.
2067 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2069 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2072 // Paint margin area
2073 dc
.SetBrush(marginBrush
);
2074 dc
.SetPen(marginPen
);
2075 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2077 dc
.SetPen( linepen
);
2082 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2088 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
2090 sx
+= state
->m_colWidths
[si
];
2091 dc
.DrawLine( sx
, y
, sx
, y2
);
2094 // Horizontal Line, below
2095 // (not if both this and next is category caption)
2096 if ( p
->IsCategory() &&
2097 nextP
&& nextP
->IsCategory() )
2098 dc
.SetPen(m_colCapBack
);
2100 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2102 if ( p
== selected
)
2104 renderFlags
|= wxPGCellRenderer::Selected
;
2105 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2106 wasSelectedPainted
= true;
2114 if ( p
->IsCategory() )
2116 if ( p
->m_fgColIndex
== 0 )
2117 rowFgCol
= m_colCapFore
;
2119 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2120 rowBgBrush
= wxBrush(m_colCapBack
);
2122 else if ( p
!= selected
)
2124 // Disabled may get different colour.
2125 if ( !p
->IsEnabled() )
2126 rowFgCol
= m_colDisPropFore
;
2128 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2130 rowBgBrush
= *(wxPGBrush
*)m_arrBgBrushes
[p
->m_bgColIndex
];
2134 // Selected gets different colour.
2135 if ( reallyFocused
)
2137 rowFgCol
= m_colSelFore
;
2138 rowBgBrush
= wxBrush(m_colSelBack
);
2140 else if ( isEnabled
)
2142 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2143 rowBgBrush
= marginBrush
;
2147 rowFgCol
= m_colDisPropFore
;
2148 rowBgBrush
= wxBrush(m_colSelBack
);
2152 bool fontChanged
= false;
2154 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2159 if ( p
->IsCategory() )
2161 // Captions are all cells merged as one
2162 dc
.SetFont(m_captionFont
);
2164 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2166 dc
.SetBrush(rowBgBrush
);
2167 dc
.SetPen(rowBgBrush
.GetColour());
2168 dc
.SetTextForeground(rowFgCol
);
2170 dc
.DrawRectangle(cellRect
);
2173 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
2174 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
2177 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2178 DrawExpanderButton( dc
, butRect
, p
);
2182 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
2184 dc
.SetFont(m_captionFont
);
2190 int nextCellWidth
= state
->m_colWidths
[0];
2191 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
2192 int textXAdd
= textMarginHere
- greyDepthX
;
2194 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
2196 cellRect
.width
= nextCellWidth
- 1;
2198 bool ctrlCell
= false;
2201 if ( p
== selected
&& m_wndEditor
&& ci
== 1 )
2203 wxColour editorBgCol
= GetEditorControl()->GetBackgroundColour();
2204 dc
.SetBrush(editorBgCol
);
2205 dc
.SetPen(editorBgCol
);
2206 dc
.SetTextForeground(m_colPropFore
);
2208 if ( m_dragStatus
== 0 && !(m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2213 dc
.SetBrush(rowBgBrush
);
2214 dc
.SetPen(rowBgBrush
.GetColour());
2215 dc
.SetTextForeground(rowFgCol
);
2218 dc
.DrawRectangle(cellRect
);
2221 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2222 DrawExpanderButton( dc
, butRect
, p
);
2224 dc
.SetClippingRegion(cellRect
);
2226 cellRect
.x
+= textXAdd
;
2227 cellRect
.width
-= textXAdd
;
2232 wxPGCellRenderer
* renderer
;
2233 int cmnVal
= p
->GetCommonValue();
2234 if ( cmnVal
== -1 || ci
!= 1 )
2236 renderer
= p
->GetCellRenderer(ci
);
2237 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2241 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2242 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2246 cellX
+= state
->m_colWidths
[ci
];
2247 if ( ci
< (state
->m_colWidths
.size()-1) )
2248 nextCellWidth
= state
->m_colWidths
[ci
+1];
2250 dc
.DestroyClippingRegion(); // Is this really necessary?
2256 dc
.SetFont(normalfont
);
2261 // Refresh editor controls (seems not needed on msw)
2262 // NOTE: This code is mandatory for GTK!
2263 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2264 if ( wasSelectedPainted
)
2267 m_wndEditor
->Refresh();
2269 m_wndEditor2
->Refresh();
2276 // -----------------------------------------------------------------------
2278 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2282 if ( m_width
< 10 || m_height
< 10 ||
2283 !m_pState
->m_properties
->GetChildCount() ||
2284 p1
== (wxPGProperty
*) NULL
)
2285 return wxRect(0,0,0,0);
2290 // Return rect which encloses the given property range
2292 int visTop
= p1
->GetY();
2295 visBottom
= p2
->GetY() + m_lineHeight
;
2297 visBottom
= m_height
+ visTop
;
2299 // If seleced property is inside the range, we'll extend the range to include
2301 wxPGProperty
* selected
= m_selected
;
2304 int selectedY
= selected
->GetY();
2305 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2307 wxWindow
* editor
= GetEditorControl();
2310 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2311 if ( visBottom2
> visBottom
)
2312 visBottom
= visBottom2
;
2317 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2320 // -----------------------------------------------------------------------
2322 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2327 if ( m_pState
->m_itemsAdded
)
2328 PrepareAfterItemsAdded();
2330 wxRect r
= GetPropertyRect(p1
, p2
);
2333 m_canvas
->RefreshRect(r
);
2337 // -----------------------------------------------------------------------
2339 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2341 if ( p
== m_selected
)
2342 DoSelectProperty(p
, wxPG_SEL_FORCE
);
2344 DrawItemAndChildren(p
);
2347 // -----------------------------------------------------------------------
2349 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2354 // Draw item, children, and parent too, if it is not category
2355 wxPGProperty
* parent
= p
->GetParent();
2358 !parent
->IsCategory() &&
2359 parent
->GetParent() )
2362 parent
= parent
->GetParent();
2365 DrawItemAndChildren(p
);
2368 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2370 wxCHECK_RET( p
, wxT("invalid property id") );
2372 // Do not draw if in non-visible page
2373 if ( p
->GetParentState() != m_pState
)
2376 // do not draw a single item if multiple pending
2377 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2380 wxWindow
* wndPrimary
= GetEditorControl();
2382 // Update child control.
2383 if ( m_selected
&& m_selected
->GetParent() == p
)
2384 m_selected
->UpdateControl(wndPrimary
);
2386 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2388 DrawItems(p
, lastDrawn
);
2391 // -----------------------------------------------------------------------
2393 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2394 const wxRect
*rect
)
2396 PrepareAfterItemsAdded();
2398 wxWindow::Refresh(false);
2400 // TODO: Coordinate translation
2401 m_canvas
->Refresh(false, rect
);
2403 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2404 // I think this really helps only GTK+1.2
2405 if ( m_wndEditor
) m_wndEditor
->Refresh();
2406 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2410 // -----------------------------------------------------------------------
2411 // wxPropertyGrid global operations
2412 // -----------------------------------------------------------------------
2414 void wxPropertyGrid::Clear()
2418 bool selRes
= DoSelectProperty(NULL
, wxPG_SEL_DELETING
); // This must be before state clear
2419 wxPG_CHECK_RET_DBG( selRes
,
2420 wxT("failed to deselect a property (editor probably had invalid value)") );
2423 m_pState
->DoClear();
2429 RecalculateVirtualSize();
2431 // Need to clear some area at the end
2433 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2436 // -----------------------------------------------------------------------
2438 bool wxPropertyGrid::EnableCategories( bool enable
)
2440 if ( !ClearSelection() )
2446 // Enable categories
2449 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2454 // Disable categories
2456 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2459 if ( !m_pState
->EnableCategories(enable
) )
2464 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2466 m_pState
->m_itemsAdded
= 1; // force
2467 PrepareAfterItemsAdded();
2471 m_pState
->m_itemsAdded
= 1;
2473 // No need for RecalculateVirtualSize() here - it is already called in
2474 // wxPropertyGridPageState method above.
2481 // -----------------------------------------------------------------------
2483 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2485 wxASSERT( pNewState
);
2486 wxASSERT( pNewState
->GetGrid() );
2488 if ( pNewState
== m_pState
)
2491 wxPGProperty
* oldSelection
= m_selected
;
2496 bool selRes
= ClearSelection();
2497 wxPG_CHECK_RET_DBG( selRes
,
2498 wxT("failed to deselect a property (editor probably had invalid value)") );
2501 m_pState
->m_selected
= oldSelection
;
2503 bool orig_mode
= m_pState
->IsInNonCatMode();
2504 bool new_state_mode
= pNewState
->IsInNonCatMode();
2506 m_pState
= pNewState
;
2509 int pgWidth
= GetClientSize().x
;
2510 if ( HasVirtualWidth() )
2512 int minWidth
= pgWidth
;
2513 if ( pNewState
->m_width
< minWidth
)
2515 pNewState
->m_width
= minWidth
;
2516 pNewState
->CheckColumnWidths();
2522 // Just in case, fully re-center splitter
2523 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2524 pNewState
->m_fSplitterX
= -1.0;
2526 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2529 m_propHover
= (wxPGProperty
*) NULL
;
2531 // If necessary, convert state to correct mode.
2532 if ( orig_mode
!= new_state_mode
)
2534 // This should refresh as well.
2535 EnableCategories( orig_mode
?false:true );
2537 else if ( !m_frozen
)
2539 // Refresh, if not frozen.
2540 if ( m_pState
->m_itemsAdded
)
2541 PrepareAfterItemsAdded();
2544 if ( m_pState
->m_selected
)
2545 DoSelectProperty( m_pState
->m_selected
);
2547 RecalculateVirtualSize(0);
2551 m_pState
->m_itemsAdded
= 1;
2554 // -----------------------------------------------------------------------
2556 void wxPropertyGrid::SortChildren( wxPGPropArg id
)
2558 wxPG_PROP_ARG_CALL_PROLOG()
2560 m_pState
->SortChildren( p
);
2563 // -----------------------------------------------------------------------
2565 void wxPropertyGrid::Sort()
2567 bool selRes
= ClearSelection(); // This must be before state clear
2568 wxPG_CHECK_RET_DBG( selRes
,
2569 wxT("failed to deselect a property (editor probably had invalid value)") );
2574 // -----------------------------------------------------------------------
2576 // Call to SetSplitterPosition will always disable splitter auto-centering
2577 // if parent window is shown.
2578 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2580 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2583 wxPropertyGridPageState
* state
= m_pState
;
2585 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2590 CorrectEditorWidgetSizeX();
2596 // -----------------------------------------------------------------------
2598 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2600 SetSplitterPosition( m_width
/2, true );
2601 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2602 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2605 // -----------------------------------------------------------------------
2606 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2607 // -----------------------------------------------------------------------
2609 // Returns nearest paint visible property (such that will be painted unless
2610 // window is scrolled or resized). If given property is paint visible, then
2611 // it itself will be returned
2612 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2614 int vx
,vy1
;// Top left corner of client
2615 GetViewStart(&vx
,&vy1
);
2616 vy1
*= wxPG_PIXELS_PER_UNIT
;
2618 int vy2
= vy1
+ m_height
;
2619 int propY
= p
->GetY2(m_lineHeight
);
2621 if ( (propY
+ m_lineHeight
) < vy1
)
2624 return DoGetItemAtY( vy1
);
2626 else if ( propY
> vy2
)
2629 return DoGetItemAtY( vy2
);
2632 // Itself paint visible
2637 // -----------------------------------------------------------------------
2638 // Methods related to change in value, value modification and sending events
2639 // -----------------------------------------------------------------------
2641 // commits any changes in editor of selected property
2642 // return true if validation did not fail
2643 // flags are same as with DoSelectProperty
2644 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2646 // Committing already?
2647 if ( m_inCommitChangesFromEditor
)
2650 // Don't do this if already processing editor event. It might
2651 // induce recursive dialogs and crap like that.
2652 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2654 if ( m_inDoPropertyChanged
)
2661 IsEditorsValueModified() &&
2662 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2665 m_inCommitChangesFromEditor
= 1;
2667 wxVariant
variant(m_selected
->GetValueRef());
2668 bool valueIsPending
= false;
2670 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2671 // due to another window getting focus
2672 wxWindow
* oldFocus
= m_curFocused
;
2674 bool validationFailure
= false;
2675 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2677 m_chgInfo_changedProperty
= NULL
;
2679 // If truly modified, schedule value as pending.
2680 if ( m_selected
->GetEditorClass()->GetValueFromControl( variant
, m_selected
, GetEditorControl() ) )
2682 if ( DoEditorValidate() &&
2683 PerformValidation(m_selected
, variant
) )
2685 valueIsPending
= true;
2689 validationFailure
= true;
2694 EditorsValueWasNotModified();
2699 m_inCommitChangesFromEditor
= 0;
2701 if ( validationFailure
&& !forceSuccess
)
2705 oldFocus
->SetFocus();
2706 m_curFocused
= oldFocus
;
2709 res
= OnValidationFailure(m_selected
, variant
);
2711 // Now prevent further validation failure messages
2714 EditorsValueWasNotModified();
2715 OnValidationFailureReset(m_selected
);
2718 else if ( valueIsPending
)
2720 DoPropertyChanged( m_selected
, flags
);
2721 EditorsValueWasNotModified();
2730 // -----------------------------------------------------------------------
2732 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
)
2735 // Runs all validation functionality.
2736 // Returns true if value passes all tests.
2739 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2741 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2743 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2748 // Adapt list to child values, if necessary
2749 wxVariant listValue
= pendingValue
;
2750 wxVariant
* pPendingValue
= &pendingValue
;
2751 wxVariant
* pList
= NULL
;
2753 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2754 // string value, then we need treat as it was changed instead
2755 // (or, in addition, as is the case with composite string parent).
2756 // This includes creating list variant for child values.
2758 wxPGProperty
* pwc
= p
->GetParent();
2759 wxPGProperty
* changedProperty
= p
;
2760 wxPGProperty
* baseChangedProperty
= changedProperty
;
2761 wxVariant bcpPendingList
;
2763 listValue
= pendingValue
;
2764 listValue
.SetName(p
->GetBaseName());
2767 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2769 wxVariantList tempList
;
2770 wxVariant
lv(tempList
, pwc
->GetBaseName());
2771 lv
.Append(listValue
);
2773 pPendingValue
= &listValue
;
2775 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2777 baseChangedProperty
= pwc
;
2778 bcpPendingList
= lv
;
2781 changedProperty
= pwc
;
2782 pwc
= pwc
->GetParent();
2786 wxPGProperty
* evtChangingProperty
= changedProperty
;
2788 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2790 value
= *pPendingValue
;
2794 // Convert list to child values
2795 pList
= pPendingValue
;
2796 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2799 wxVariant evtChangingValue
= value
;
2801 // FIXME: After proper ValueToString()s added, remove
2802 // this. It is just a temporary fix, as evt_changing
2803 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2804 // (unless it is selected, and textctrl editor is open).
2805 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2807 evtChangingProperty
= baseChangedProperty
;
2808 if ( evtChangingProperty
!= p
)
2810 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2814 evtChangingValue
= pendingValue
;
2818 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2820 if ( changedProperty
== m_selected
)
2822 wxWindow
* editor
= GetEditorControl();
2823 wxASSERT( editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2824 evtChangingValue
= wxStaticCast(editor
, wxTextCtrl
)->GetValue();
2828 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2832 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2833 m_chgInfo_changedProperty
= changedProperty
;
2834 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2835 m_chgInfo_pendingValue
= value
;
2838 m_chgInfo_valueList
= *pList
;
2840 m_chgInfo_valueList
.MakeNull();
2842 // If changedProperty is not property which value was edited,
2843 // then call wxPGProperty::ValidateValue() for that as well.
2844 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2846 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2850 // SendEvent returns true if event was vetoed
2851 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
, &evtChangingValue
, 0 ) )
2857 // -----------------------------------------------------------------------
2859 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2861 if ( !msg
.length() )
2865 if ( !wxPGGlobalVars
->m_offline
)
2867 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2870 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2873 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
2876 pStatusBar
->SetStatusText(msg
);
2884 ::wxMessageBox(msg
, _T("Property Error"));
2887 // -----------------------------------------------------------------------
2889 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
2891 int vfb
= m_validationInfo
.m_failureBehavior
;
2893 if ( vfb
& wxPG_VFB_BEEP
)
2896 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
2897 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
2899 wxASSERT_MSG( !property
->GetCell(0) && !property
->GetCell(1),
2900 wxT("Currently wxPG_VFB_MARK_CELL only works with properties with standard first two cells") );
2902 if ( !property
->GetCell(0) && !property
->GetCell(1) )
2904 wxColour vfbFg
= *wxWHITE
;
2905 wxColour vfbBg
= *wxRED
;
2906 property
->SetCell(0, new wxPGCell(property
->GetLabel(), wxNullBitmap
, vfbFg
, vfbBg
));
2907 property
->SetCell(1, new wxPGCell(property
->GetDisplayedString(), wxNullBitmap
, vfbFg
, vfbBg
));
2909 DrawItemAndChildren(property
);
2911 if ( property
== m_selected
)
2913 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2915 wxWindow
* editor
= GetEditorControl();
2918 editor
->SetForegroundColour(vfbFg
);
2919 editor
->SetBackgroundColour(vfbBg
);
2925 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
2927 wxString msg
= m_validationInfo
.m_failureMessage
;
2929 if ( !msg
.length() )
2930 msg
= _T("You have entered invalid value. Press ESC to cancel editing.");
2932 DoShowPropertyError(property
, msg
);
2935 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
2938 // -----------------------------------------------------------------------
2940 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
2942 int vfb
= m_validationInfo
.m_failureBehavior
;
2944 if ( vfb
& wxPG_VFB_MARK_CELL
)
2946 property
->SetCell(0, NULL
);
2947 property
->SetCell(1, NULL
);
2949 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2951 if ( property
== m_selected
&& GetEditorControl() )
2953 // Calling this will recreate the control, thus resetting its colour
2954 RefreshProperty(property
);
2958 DrawItemAndChildren(property
);
2963 // -----------------------------------------------------------------------
2965 // flags are same as with DoSelectProperty
2966 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
2968 if ( m_inDoPropertyChanged
)
2971 wxWindow
* editor
= GetEditorControl();
2973 m_pState
->m_anyModified
= 1;
2975 m_inDoPropertyChanged
= 1;
2977 // Maybe need to update control
2978 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
2980 // These values were calculated in PerformValidation()
2981 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
2982 wxVariant value
= m_chgInfo_pendingValue
;
2984 wxPGProperty
* topPaintedProperty
= changedProperty
;
2986 while ( !topPaintedProperty
->IsCategory() &&
2987 !topPaintedProperty
->IsRoot() )
2989 topPaintedProperty
= topPaintedProperty
->GetParent();
2992 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
2994 // Set as Modified (not if dragging just began)
2995 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
2997 p
->m_flags
|= wxPG_PROP_MODIFIED
;
2998 if ( p
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3001 SetCurControlBoldFont();
3007 // Propagate updates to parent(s)
3009 wxPGProperty
* prevPwc
= NULL
;
3011 while ( prevPwc
!= topPaintedProperty
)
3013 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3015 if ( pwc
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3018 SetCurControlBoldFont();
3022 pwc
= pwc
->GetParent();
3025 // Draw the actual property
3026 DrawItemAndChildren( topPaintedProperty
);
3029 // If value was set by wxPGProperty::OnEvent, then update the editor
3031 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3034 p
->GetEditorClass()->UpdateControl(p
, editor
);
3038 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3039 if ( m_wndEditor
) m_wndEditor
->Refresh();
3040 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3045 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3047 // If top parent has composite string value, then send to child parents,
3048 // starting from baseChangedProperty.
3049 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3051 pwc
= m_chgInfo_baseChangedProperty
;
3053 while ( pwc
!= changedProperty
)
3055 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
, selFlags
);
3056 pwc
= pwc
->GetParent();
3060 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
, selFlags
);
3062 m_inDoPropertyChanged
= 0;
3067 // -----------------------------------------------------------------------
3069 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3071 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3073 m_chgInfo_changedProperty
= NULL
;
3075 if ( PerformValidation(p
, newValue
) )
3077 DoPropertyChanged(p
);
3082 OnValidationFailure(p
, newValue
);
3088 // -----------------------------------------------------------------------
3090 // Runs wxValidator for the selected property
3091 bool wxPropertyGrid::DoEditorValidate()
3096 // -----------------------------------------------------------------------
3098 bool wxPropertyGrid::ProcessEvent(wxEvent
& event
)
3100 wxWindow
* wnd
= (wxWindow
*) event
.GetEventObject();
3101 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxWindow
)) )
3103 wxWindow
* parent
= wnd
->GetParent();
3106 (parent
== m_canvas
||
3107 parent
->GetParent() == m_canvas
) )
3109 OnCustomEditorEvent((wxCommandEvent
&)event
);
3113 return wxPanel::ProcessEvent(event
);
3116 // -----------------------------------------------------------------------
3118 // NB: It may really not be wxCommandEvent - must check if necessary
3120 void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent
&event
)
3122 wxPGProperty
* selected
= m_selected
;
3124 // Somehow, event is handled after property has been deselected.
3125 // Possibly, but very rare.
3129 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
3132 wxVariant
pendingValue(selected
->GetValueRef());
3133 wxWindow
* wnd
= GetEditorControl();
3135 bool wasUnspecified
= selected
->IsValueUnspecified();
3136 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3138 bool valueIsPending
= false;
3140 m_chgInfo_changedProperty
= NULL
;
3142 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
3145 // Filter out excess wxTextCtrl modified events
3146 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
3148 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3150 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3152 wxString newTcValue
= tc
->GetValue();
3153 if ( m_prevTcValue
== newTcValue
)
3156 m_prevTcValue
= newTcValue
;
3159 SetInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3161 bool validationFailure
= false;
3162 bool buttonWasHandled
= false;
3165 // Try common button handling
3166 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3168 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3172 buttonWasHandled
= true;
3173 // Store as res2, as previously (and still currently alternatively)
3174 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3175 // in wxPGProperty::OnEvent().
3176 adapter
->ShowDialog( this, selected
);
3181 if ( !buttonWasHandled
)
3185 // First call editor class' event handler.
3186 const wxPGEditor
* editor
= selected
->GetEditorClass();
3188 if ( editor
->OnEvent( this, selected
, wnd
, event
) )
3190 // If changes, validate them
3191 if ( DoEditorValidate() )
3193 if ( editor
->GetValueFromControl( pendingValue
, m_selected
, wnd
) )
3194 valueIsPending
= true;
3198 validationFailure
= true;
3203 // Then the property's custom handler (must be always called, unless
3204 // validation failed).
3205 if ( !validationFailure
)
3206 buttonWasHandled
= selected
->OnEvent( this, wnd
, event
);
3209 // SetValueInEvent(), as called in one of the functions referred above
3210 // overrides editor's value.
3211 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3213 valueIsPending
= true;
3214 pendingValue
= m_changeInEventValue
;
3215 selFlags
|= wxPG_SEL_DIALOGVAL
;
3218 if ( !validationFailure
&& valueIsPending
)
3219 if ( !PerformValidation(m_selected
, pendingValue
) )
3220 validationFailure
= true;
3222 if ( validationFailure
)
3224 OnValidationFailure(selected
, pendingValue
);
3226 else if ( valueIsPending
)
3228 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3230 DoPropertyChanged(selected
, selFlags
);
3231 EditorsValueWasNotModified();
3233 // Regardless of editor type, unfocus editor on
3234 // text-editing related enter press.
3235 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3242 // No value after all
3244 // Regardless of editor type, unfocus editor on
3245 // text-editing related enter press.
3246 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3251 // Let unhandled button click events go to the parent
3252 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3254 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3255 GetEventHandler()->AddPendingEvent(evt
);
3259 ClearInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3262 // -----------------------------------------------------------------------
3263 // wxPropertyGrid editor control helper methods
3264 // -----------------------------------------------------------------------
3266 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3268 int itemy
= p
->GetY2(m_lineHeight
);
3270 int cust_img_space
= 0;
3271 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3272 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3274 // TODO: If custom image detection changes from current, change this.
3275 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
/*p->m_flags & wxPG_PROP_CUSTOMIMAGE*/ )
3277 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3278 int imwid
= p
->OnMeasureImage().x
;
3279 if ( imwid
< 1 ) imwid
= wxPG_CUSTOM_IMAGE_WIDTH
;
3280 cust_img_space
= imwid
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
3285 splitterX
+cust_img_space
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3287 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-cust_img_space
-1,
3292 // -----------------------------------------------------------------------
3294 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3296 wxSize sz
= GetImageSize(p
, item
);
3297 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3298 wxPG_CUSTOM_IMAGE_SPACINGY
,
3303 // return size of custom paint image
3304 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3306 // If called with NULL property, then return default image
3307 // size for properties that use image.
3309 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3311 wxSize cis
= p
->OnMeasureImage(item
);
3313 int choiceCount
= p
->m_choices
.GetCount();
3314 int comVals
= p
->GetDisplayedCommonValueCount();
3315 if ( item
>= choiceCount
&& comVals
> 0 )
3317 unsigned int cvi
= item
-choiceCount
;
3318 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3320 else if ( item
>= 0 && choiceCount
== 0 )
3321 return wxSize(0, 0);
3326 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3331 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3338 // -----------------------------------------------------------------------
3340 // takes scrolling into account
3341 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3344 GetViewStart(&vx
,&vy
);
3345 vy
*=wxPG_PIXELS_PER_UNIT
;
3346 vx
*=wxPG_PIXELS_PER_UNIT
;
3349 ClientToScreen( px
, py
);
3352 // -----------------------------------------------------------------------
3354 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3357 GetViewStart(&pt2
.x
,&pt2
.y
);
3358 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3359 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3363 return m_pState
->HitTest(pt2
);
3366 // -----------------------------------------------------------------------
3368 // custom set cursor
3369 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3371 if ( type
== m_curcursor
&& !override
) return;
3373 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3375 if ( type
== wxCURSOR_SIZEWE
)
3376 cursor
= m_cursorSizeWE
;
3378 m_canvas
->SetCursor( *cursor
);
3383 // -----------------------------------------------------------------------
3384 // wxPropertyGrid property selection
3385 // -----------------------------------------------------------------------
3387 // Setups event handling for child control
3388 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3390 wxWindowID id
= argWnd
->GetId();
3392 if ( argWnd
== m_wndEditor
)
3394 argWnd
->Connect(id
, wxEVT_MOTION
,
3395 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3397 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3398 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3400 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3401 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3403 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3404 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3406 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3407 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3409 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3410 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3412 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3413 wxCharEventHandler(wxPropertyGrid::OnChildKeyDown
),
3418 void wxPropertyGrid::FreeEditors()
3420 // Do not free editors immediately if processing events
3423 m_wndEditor2
->Hide();
3424 wxPendingDelete
.Append( m_wndEditor2
);
3425 m_wndEditor2
= (wxWindow
*) NULL
;
3430 m_wndEditor
->Hide();
3431 wxPendingDelete
.Append( m_wndEditor
);
3432 m_wndEditor
= (wxWindow
*) NULL
;
3436 // Call with NULL to de-select property
3437 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3439 wxPanel
* canvas
= GetPanel();
3443 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3444 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3446 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3449 if ( m_inDoSelectProperty
)
3452 m_inDoSelectProperty
= 1;
3454 wxPGProperty
* prev
= m_selected
;
3458 m_inDoSelectProperty
= 0;
3464 wxPrintf( "Selected %s\n", m_selected->GetClassInfo()->GetClassName() );
3466 wxPrintf( "None selected\n" );
3469 wxPrintf( "P = %s\n", p->GetClassInfo()->GetClassName() );
3471 wxPrintf( "P = NULL\n" );
3474 // If we are frozen, then just set the values.
3477 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3478 m_editorFocused
= 0;
3481 m_pState
->m_selected
= p
;
3483 // If frozen, always free controls. But don't worry, as Thaw will
3484 // recall SelectProperty to recreate them.
3487 // Prevent any further selection measures in this call
3488 p
= (wxPGProperty
*) NULL
;
3493 if ( m_selected
== p
&& !(flags
& wxPG_SEL_FORCE
) )
3495 // Only set focus if not deselecting
3498 if ( flags
& wxPG_SEL_FOCUS
)
3502 m_wndEditor
->SetFocus();
3503 m_editorFocused
= 1;
3512 m_inDoSelectProperty
= 0;
3517 // First, deactivate previous
3521 OnValidationFailureReset(m_selected
);
3523 // Must double-check if this is an selected in case of forceswitch
3526 if ( !CommitChangesFromEditor(flags
) )
3528 // Validation has failed, so we can't exit the previous editor
3529 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3530 // _("Invalid Value"),wxOK|wxICON_ERROR);
3531 m_inDoSelectProperty
= 0;
3539 m_selected
= (wxPGProperty
*) NULL
;
3540 m_pState
->m_selected
= (wxPGProperty
*) NULL
;
3542 // We need to always fully refresh the grid here
3545 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3546 EditorsValueWasNotModified();
3549 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3552 // Then, activate the one given.
3555 int propY
= p
->GetY2(m_lineHeight
);
3557 int splitterX
= GetSplitterPosition();
3558 m_editorFocused
= 0;
3560 m_pState
->m_selected
= p
;
3561 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3563 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3565 wxASSERT( m_wndEditor
== (wxWindow
*) NULL
);
3567 // Do we need OnMeasureCalls?
3568 wxSize imsz
= p
->OnMeasureImage();
3571 // Only create editor for non-disabled non-caption
3572 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3574 // do this for non-caption items
3578 // Do we need to paint the custom image, if any?
3579 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3580 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3581 !p
->GetEditorClass()->CanContainCustomImage()
3583 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3585 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3586 wxPoint goodPos
= grect
.GetPosition();
3587 #if wxPG_CREATE_CONTROLS_HIDDEN
3588 int coord_adjust
= m_height
- goodPos
.y
;
3589 goodPos
.y
+= coord_adjust
;
3592 const wxPGEditor
* editor
= p
->GetEditorClass();
3593 wxCHECK_MSG(editor
, false,
3594 wxT("NULL editor class not allowed"));
3596 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3598 wxPGWindowList wndList
= editor
->CreateControls(this,
3603 m_wndEditor
= wndList
.m_primary
;
3604 m_wndEditor2
= wndList
.m_secondary
;
3605 wxWindow
* primaryCtrl
= GetEditorControl();
3608 // Essentially, primaryCtrl == m_wndEditor
3611 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3612 // value is drawn as normal, and m_wndEditor2 is assumed
3613 // to be a right-aligned button that triggers a separate editorCtrl
3618 wxASSERT_MSG( m_wndEditor
->GetParent() == canvas
,
3619 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3621 // Set validator, if any
3622 #if wxUSE_VALIDATORS
3623 wxValidator
* validator
= p
->GetValidator();
3625 primaryCtrl
->SetValidator(*validator
);
3628 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3629 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3631 // If it has modified status, use bold font
3632 // (must be done before capturing m_ctrlXAdjust)
3633 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3634 SetCurControlBoldFont();
3637 // Fix TextCtrl indentation
3638 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3639 wxTextCtrl
* tc
= NULL
;
3640 if ( primaryCtrl
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3641 tc
= ((wxOwnerDrawnComboBox
*)primaryCtrl
)->GetTextCtrl();
3643 tc
= wxDynamicCast(primaryCtrl
, wxTextCtrl
);
3645 ::SendMessage(GetHwndOf(tc
), EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0, 0));
3648 // Store x relative to splitter (we'll need it).
3649 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3651 // Check if background clear is not necessary
3652 wxPoint pos
= m_wndEditor
->GetPosition();
3653 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3655 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3658 m_wndEditor
->SetSizeHints(3, 3);
3660 #if wxPG_CREATE_CONTROLS_HIDDEN
3661 m_wndEditor
->Show(false);
3662 m_wndEditor
->Freeze();
3664 goodPos
= m_wndEditor
->GetPosition();
3665 goodPos
.y
-= coord_adjust
;
3666 m_wndEditor
->Move( goodPos
);
3669 SetupChildEventHandling(primaryCtrl
);
3671 // Focus and select all (wxTextCtrl, wxComboBox etc)
3672 if ( flags
& wxPG_SEL_FOCUS
)
3674 primaryCtrl
->SetFocus();
3676 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3682 wxASSERT_MSG( m_wndEditor2
->GetParent() == canvas
,
3683 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3685 // Get proper id for wndSecondary
3686 m_wndSecId
= m_wndEditor2
->GetId();
3687 wxWindowList children
= m_wndEditor2
->GetChildren();
3688 wxWindowList::iterator node
= children
.begin();
3689 if ( node
!= children
.end() )
3690 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3692 m_wndEditor2
->SetSizeHints(3,3);
3694 #if wxPG_CREATE_CONTROLS_HIDDEN
3695 wxRect sec_rect
= m_wndEditor2
->GetRect();
3696 sec_rect
.y
-= coord_adjust
;
3698 // Fine tuning required to fix "oversized"
3699 // button disappearance bug.
3700 if ( sec_rect
.y
< 0 )
3702 sec_rect
.height
+= sec_rect
.y
;
3705 m_wndEditor2
->SetSize( sec_rect
);
3707 m_wndEditor2
->Show();
3709 SetupChildEventHandling(m_wndEditor2
);
3711 // If no primary editor, focus to button to allow
3712 // it to interprete ENTER etc.
3713 // NOTE: Due to problems focusing away from it, this
3714 // has been disabled.
3716 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3717 m_wndEditor2->SetFocus();
3721 if ( flags
& wxPG_SEL_FOCUS
)
3722 m_editorFocused
= 1;
3727 // Make sure focus is in grid canvas (important for wxGTK, at least)
3731 EditorsValueWasNotModified();
3733 // If it's inside collapsed section, expand parent, scroll, etc.
3734 // Also, if it was partially visible, scroll it into view.
3735 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3740 #if wxPG_CREATE_CONTROLS_HIDDEN
3741 m_wndEditor
->Thaw();
3743 m_wndEditor
->Show(true);
3750 // Make sure focus is in grid canvas
3754 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3760 // Show help text in status bar.
3761 // (if found and grid not embedded in manager with help box and
3762 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3765 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3767 wxStatusBar
* statusbar
= (wxStatusBar
*) NULL
;
3768 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3770 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3772 statusbar
= frame
->GetStatusBar();
3777 const wxString
* pHelpString
= (const wxString
*) NULL
;
3781 pHelpString
= &p
->GetHelpString();
3782 if ( pHelpString
->length() )
3784 // Set help box text.
3785 statusbar
->SetStatusText( *pHelpString
);
3786 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3790 if ( (!pHelpString
|| !pHelpString
->length()) &&
3791 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3793 // Clear help box - but only if it was written
3794 // by us at previous time.
3795 statusbar
->SetStatusText( m_emptyString
);
3796 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3802 m_inDoSelectProperty
= 0;
3804 // call wx event handler (here so that it also occurs on deselection)
3805 SendEvent( wxEVT_PG_SELECTED
, m_selected
, NULL
, flags
);
3810 // -----------------------------------------------------------------------
3812 bool wxPropertyGrid::UnfocusEditor()
3814 if ( !m_selected
|| !m_wndEditor
|| m_frozen
)
3817 if ( !CommitChangesFromEditor(0) )
3821 DrawItem(m_selected
);
3826 // -----------------------------------------------------------------------
3828 // This method is not inline because it called dozens of times
3829 // (i.e. two-arg function calls create smaller code size).
3830 bool wxPropertyGrid::DoClearSelection()
3832 return DoSelectProperty((wxPGProperty
*)NULL
);
3835 // -----------------------------------------------------------------------
3836 // wxPropertyGrid expand/collapse state
3837 // -----------------------------------------------------------------------
3839 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
3841 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
3843 // If active editor was inside collapsed section, then disable it
3844 if ( m_selected
&& m_selected
->IsSomeParent (p
) )
3846 if ( !ClearSelection() )
3850 // Store dont-center-splitter flag 'cause we need to temporarily set it
3851 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3852 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3854 bool res
= m_pState
->DoCollapse(pwc
);
3859 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
3861 RecalculateVirtualSize();
3863 // Redraw etc. only if collapsed was visible.
3864 if (pwc
->IsVisible() &&
3866 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
3868 // When item is collapsed so that scrollbar would move,
3869 // graphics mess is about (unless we redraw everything).
3874 // Clear dont-center-splitter flag if it wasn't set
3875 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3880 // -----------------------------------------------------------------------
3882 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
3884 wxCHECK_MSG( p
, false, wxT("invalid property id") );
3886 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
3888 // Store dont-center-splitter flag 'cause we need to temporarily set it
3889 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3890 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3892 bool res
= m_pState
->DoExpand(pwc
);
3897 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
3899 RecalculateVirtualSize();
3901 // Redraw etc. only if expanded was visible.
3902 if ( pwc
->IsVisible() && !m_frozen
&&
3903 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
3907 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3910 DrawItems(pwc
, NULL
);
3915 // Clear dont-center-splitter flag if it wasn't set
3916 m_iFlags
= m_iFlags
& ~(wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3921 // -----------------------------------------------------------------------
3923 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
3926 return m_pState
->DoHideProperty(p
, hide
, flags
);
3929 ( m_selected
== p
|| m_selected
->IsSomeParent(p
) )
3932 if ( !ClearSelection() )
3936 m_pState
->DoHideProperty(p
, hide
, flags
);
3938 RecalculateVirtualSize();
3945 // -----------------------------------------------------------------------
3946 // wxPropertyGrid size related methods
3947 // -----------------------------------------------------------------------
3949 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
3951 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
3955 // If virtual height was changed, then recalculate editor control position(s)
3956 if ( m_pState
->m_vhCalcPending
)
3957 CorrectEditorWidgetPosY();
3959 m_pState
->EnsureVirtualHeight();
3962 int by1
= m_pState
->GetVirtualHeight();
3963 int by2
= m_pState
->GetActualVirtualHeight();
3966 wxString s
= wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1
, by2
);
3967 wxASSERT_MSG( false,
3973 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
3975 int x
= m_pState
->m_width
;
3976 int y
= m_pState
->m_virtualHeight
;
3979 GetClientSize(&width
,&height
);
3981 // Now adjust virtual size.
3982 SetVirtualSize(x
, y
);
3988 // Adjust scrollbars
3989 if ( HasVirtualWidth() )
3991 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
3992 xPos
= GetScrollPos( wxHORIZONTAL
);
3995 if ( forceXPos
!= -1 )
3998 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4001 int yAmount
= (y
+wxPG_PIXELS_PER_UNIT
+2)/wxPG_PIXELS_PER_UNIT
;
4002 int yPos
= GetScrollPos( wxVERTICAL
);
4004 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4005 xAmount
, yAmount
, xPos
, yPos
, true );
4007 // Must re-get size now
4008 GetClientSize(&width
,&height
);
4010 if ( !HasVirtualWidth() )
4012 m_pState
->SetVirtualWidth(width
);
4019 m_canvas
->SetSize( x
, y
);
4021 m_pState
->CheckColumnWidths();
4024 CorrectEditorWidgetSizeX();
4026 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4029 // -----------------------------------------------------------------------
4031 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4033 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4037 GetClientSize(&width
,&height
);
4042 #if wxPG_DOUBLE_BUFFER
4043 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4045 int dblh
= (m_lineHeight
*2);
4046 if ( !m_doubleBuffer
)
4048 // Create double buffer bitmap to draw on, if none
4049 int w
= (width
>250)?width
:250;
4050 int h
= height
+ dblh
;
4052 m_doubleBuffer
= new wxBitmap( w
, h
);
4056 int w
= m_doubleBuffer
->GetWidth();
4057 int h
= m_doubleBuffer
->GetHeight();
4059 // Double buffer must be large enough
4060 if ( w
< width
|| h
< (height
+dblh
) )
4062 if ( w
< width
) w
= width
;
4063 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4064 delete m_doubleBuffer
;
4065 m_doubleBuffer
= new wxBitmap( w
, h
);
4072 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4073 m_ncWidth
= event
.GetSize().x
;
4077 if ( m_pState
->m_itemsAdded
)
4078 PrepareAfterItemsAdded();
4080 // Without this, virtual size (atleast under wxGTK) will be skewed
4081 RecalculateVirtualSize();
4087 // -----------------------------------------------------------------------
4089 void wxPropertyGrid::SetVirtualWidth( int width
)
4093 // Disable virtual width
4094 width
= GetClientSize().x
;
4095 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4099 // Enable virtual width
4100 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4102 m_pState
->SetVirtualWidth( width
);
4105 void wxPropertyGrid::SetFocusOnCanvas()
4107 m_canvas
->SetFocusIgnoringChildren();
4108 m_editorFocused
= 0;
4111 // -----------------------------------------------------------------------
4112 // wxPropertyGrid mouse event handling
4113 // -----------------------------------------------------------------------
4115 // selFlags uses same values DoSelectProperty's flags
4116 // Returns true if event was vetoed.
4117 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
, wxVariant
* pValue
, unsigned int WXUNUSED(selFlags
) )
4119 // Send property grid event of specific type and with specific property
4120 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4121 evt
.SetPropertyGrid(this);
4122 evt
.SetEventObject(m_eventObject
);
4126 evt
.SetCanVeto(true);
4127 evt
.SetupValidationInfo();
4128 m_validationInfo
.m_pValue
= pValue
;
4130 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
4132 evtHandler
->ProcessEvent(evt
);
4134 return evt
.WasVetoed();
4137 // -----------------------------------------------------------------------
4139 // Return false if should be skipped
4140 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4144 // Need to set focus?
4145 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4150 wxPropertyGridPageState
* state
= m_pState
;
4152 int splitterHitOffset
;
4153 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4155 wxPGProperty
* p
= DoGetItemAtY(y
);
4159 int depth
= (int)p
->GetDepth() - 1;
4161 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4163 if ( x
>= marginEnds
)
4167 if ( p
->IsCategory() )
4169 // This is category.
4170 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4172 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4174 // Expand, collapse, activate etc. if click on text or left of splitter.
4177 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4182 if ( !DoSelectProperty( p
) )
4185 // On double-click, expand/collapse.
4186 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4188 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4189 else DoExpand( p
, true );
4193 else if ( splitterHit
== -1 )
4196 unsigned int selFlag
= 0;
4197 if ( columnHit
== 1 )
4199 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4200 selFlag
= wxPG_SEL_FOCUS
;
4202 if ( !DoSelectProperty( p
, selFlag
) )
4205 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4207 if ( p
->GetChildCount() && !p
->IsCategory() )
4208 // On double-click, expand/collapse.
4209 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4211 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4212 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4213 else DoExpand( p
, true );
4220 // click on splitter
4221 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4223 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4225 // Double-clicking the splitter causes auto-centering
4226 CenterSplitter( true );
4228 else if ( m_dragStatus
== 0 )
4231 // Begin draggin the splitter
4235 // Changes must be committed here or the
4236 // value won't be drawn correctly
4237 if ( !CommitChangesFromEditor() )
4240 m_wndEditor
->Show ( false );
4243 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4245 m_canvas
->CaptureMouse();
4246 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4250 m_draggedSplitter
= splitterHit
;
4251 m_dragOffset
= splitterHitOffset
;
4253 wxClientDC
dc(m_canvas
);
4255 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4256 // Fixes button disappearance bug
4258 m_wndEditor2
->Show ( false );
4261 m_startingSplitterX
= x
- splitterHitOffset
;
4269 if ( p
->GetChildCount() )
4271 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4273 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4275 int y2
= y
% m_lineHeight
;
4276 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4278 // On click on expander button, expand/collapse
4279 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4280 DoCollapse( p
, true );
4282 DoExpand( p
, true );
4291 // -----------------------------------------------------------------------
4293 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4294 wxMouseEvent
& WXUNUSED(event
) )
4298 // Select property here as well
4299 wxPGProperty
* p
= m_propHover
;
4300 if ( p
!= m_selected
)
4301 DoSelectProperty( p
);
4303 // Send right click event.
4304 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4311 // -----------------------------------------------------------------------
4313 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4314 wxMouseEvent
& WXUNUSED(event
) )
4318 // Select property here as well
4319 wxPGProperty
* p
= m_propHover
;
4321 if ( p
!= m_selected
)
4322 DoSelectProperty( p
);
4324 // Send double-click event.
4325 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4332 // -----------------------------------------------------------------------
4334 #if wxPG_SUPPORT_TOOLTIPS
4336 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4338 if ( tipString
.length() )
4340 m_canvas
->SetToolTip(tipString
);
4344 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4345 m_canvas
->SetToolTip( m_emptyString
);
4347 m_canvas
->SetToolTip( NULL
);
4352 #endif // #if wxPG_SUPPORT_TOOLTIPS
4354 // -----------------------------------------------------------------------
4356 // Return false if should be skipped
4357 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4359 // Safety check (needed because mouse capturing may
4360 // otherwise freeze the control)
4361 if ( m_dragStatus
> 0 && !event
.Dragging() )
4363 HandleMouseUp(x
,y
,event
);
4366 wxPropertyGridPageState
* state
= m_pState
;
4368 int splitterHitOffset
;
4369 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4370 int splitterX
= x
- splitterHitOffset
;
4372 if ( m_dragStatus
> 0 )
4374 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4375 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4378 int newSplitterX
= x
- m_dragOffset
;
4379 int splitterX
= x
- splitterHitOffset
;
4381 // Splitter redraw required?
4382 if ( newSplitterX
!= splitterX
)
4385 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4386 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4387 state
->m_fSplitterX
= (float) newSplitterX
;
4390 CorrectEditorWidgetSizeX();
4404 int ih
= m_lineHeight
;
4407 #if wxPG_SUPPORT_TOOLTIPS
4408 wxPGProperty
* prevHover
= m_propHover
;
4409 unsigned char prevSide
= m_mouseSide
;
4411 int curPropHoverY
= y
- (y
% ih
);
4413 // On which item it hovers
4414 if ( ( !m_propHover
)
4416 ( m_propHover
&& ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) ) )
4419 // Mouse moves on another property
4421 m_propHover
= DoGetItemAtY(y
);
4422 m_propHoverY
= curPropHoverY
;
4425 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4428 #if wxPG_SUPPORT_TOOLTIPS
4429 // Store which side we are on
4431 if ( columnHit
== 1 )
4433 else if ( columnHit
== 0 )
4437 // If tooltips are enabled, show label or value as a tip
4438 // in case it doesn't otherwise show in full length.
4440 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4442 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4444 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4446 if ( m_propHover
&& !m_propHover
->IsCategory() )
4449 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4451 // Show help string as a tooltip
4452 wxString tipString
= m_propHover
->GetHelpString();
4454 SetToolTip(tipString
);
4458 // Show cropped value string as a tooltip
4462 if ( m_mouseSide
== 1 )
4464 tipString
= m_propHover
->m_label
;
4465 space
= splitterX
-m_marginWidth
-3;
4467 else if ( m_mouseSide
== 2 )
4469 tipString
= m_propHover
->GetDisplayedString();
4471 space
= m_width
- splitterX
;
4472 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4473 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4479 GetTextExtent( tipString
, &tw
, &th
, 0, 0, &m_font
);
4482 SetToolTip( tipString
);
4489 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4490 m_canvas
->SetToolTip( m_emptyString
);
4492 m_canvas
->SetToolTip( NULL
);
4503 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4504 m_canvas
->SetToolTip( m_emptyString
);
4506 m_canvas
->SetToolTip( NULL
);
4514 if ( splitterHit
== -1 ||
4516 HasFlag(wxPG_STATIC_SPLITTER
) )
4518 // hovering on something else
4519 if ( m_curcursor
!= wxCURSOR_ARROW
)
4520 CustomSetCursor( wxCURSOR_ARROW
);
4524 // Do not allow splitter cursor on caption items.
4525 // (also not if we were dragging and its started
4526 // outside the splitter region)
4529 !m_propHover
->IsCategory() &&
4533 // hovering on splitter
4535 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4536 // reliably detected.
4537 //if ( m_curcursor != wxCURSOR_SIZEWE )
4538 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4544 // hovering on something else
4545 if ( m_curcursor
!= wxCURSOR_ARROW
)
4546 CustomSetCursor( wxCURSOR_ARROW
);
4553 // -----------------------------------------------------------------------
4555 // Also handles Leaving event
4556 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4557 wxMouseEvent
&WXUNUSED(event
) )
4559 wxPropertyGridPageState
* state
= m_pState
;
4563 int splitterHitOffset
;
4564 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4566 // No event type check - basicly calling this method should
4567 // just stop dragging.
4568 // Left up after dragged?
4569 if ( m_dragStatus
>= 1 )
4572 // End Splitter Dragging
4574 // DO NOT ENABLE FOLLOWING LINE!
4575 // (it is only here as a reminder to not to do it)
4578 // Disable splitter auto-centering
4579 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4581 // This is necessary to return cursor
4582 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4584 m_canvas
->ReleaseMouse();
4585 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4588 // Set back the default cursor, if necessary
4589 if ( splitterHit
== -1 ||
4592 CustomSetCursor( wxCURSOR_ARROW
);
4597 // Control background needs to be cleared
4598 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && m_selected
)
4599 DrawItem( m_selected
);
4603 m_wndEditor
->Show ( true );
4606 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4607 // Fixes button disappearance bug
4609 m_wndEditor2
->Show ( true );
4612 // This clears the focus.
4613 m_editorFocused
= 0;
4619 // -----------------------------------------------------------------------
4621 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4623 int splitterX
= GetSplitterPosition();
4626 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4630 wxWindow
* wnd
= GetEditorControl();
4632 // Hide popup on clicks
4633 if ( event
.GetEventType() != wxEVT_MOTION
)
4634 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4636 ((wxOwnerDrawnComboBox
*)wnd
)->HidePopup();
4642 if ( wnd
== (wxWindow
*) NULL
|| m_dragStatus
||
4644 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4645 ux
>= (r
.x
+r
.width
) ||
4647 event
.m_y
>= (r
.y
+r
.height
)
4657 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4662 // -----------------------------------------------------------------------
4664 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4667 if ( OnMouseCommon( event
, &x
, &y
) )
4669 HandleMouseClick(x
,y
,event
);
4674 // -----------------------------------------------------------------------
4676 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4679 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4680 HandleMouseRightClick(x
,y
,event
);
4684 // -----------------------------------------------------------------------
4686 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4688 // Always run standard mouse-down handler as well
4689 OnMouseClick(event
);
4692 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4693 HandleMouseDoubleClick(x
,y
,event
);
4697 // -----------------------------------------------------------------------
4699 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4702 if ( OnMouseCommon( event
, &x
, &y
) )
4704 HandleMouseMove(x
,y
,event
);
4709 // -----------------------------------------------------------------------
4711 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4713 // Called when mouse moves in the empty space below the properties.
4714 CustomSetCursor( wxCURSOR_ARROW
);
4717 // -----------------------------------------------------------------------
4719 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
4722 if ( OnMouseCommon( event
, &x
, &y
) )
4724 HandleMouseUp(x
,y
,event
);
4729 // -----------------------------------------------------------------------
4731 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
4733 // This may get called from child control as well, so event's
4734 // mouse position cannot be relied on.
4736 if ( event
.Entering() )
4738 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4740 // TODO: Fix this (detect parent and only do
4741 // cursor trick if it is a manager).
4742 wxASSERT( GetParent() );
4743 GetParent()->SetCursor(wxNullCursor
);
4745 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
4748 GetParent()->SetCursor(wxNullCursor
);
4750 else if ( event
.Leaving() )
4752 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4753 m_canvas
->SetCursor( wxNullCursor
);
4755 // Get real cursor position
4756 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
4758 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
4761 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4763 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
4767 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
4775 // -----------------------------------------------------------------------
4777 // Common code used by various OnMouseXXXChild methods.
4778 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
4780 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
4781 wxASSERT( topCtrlWnd
);
4783 event
.GetPosition(&x
,&y
);
4785 int splitterX
= GetSplitterPosition();
4787 wxRect r
= topCtrlWnd
->GetRect();
4788 if ( !m_dragStatus
&&
4789 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
4790 y
>= 0 && y
< r
.height \
4793 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4798 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
4805 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
4808 if ( OnMouseChildCommon(event
,&x
,&y
) )
4810 bool res
= HandleMouseClick(x
,y
,event
);
4811 if ( !res
) event
.Skip();
4815 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
4818 wxASSERT( m_wndEditor
);
4819 // These coords may not be exact (about +-2),
4820 // but that should not matter (right click is about item, not position).
4821 wxPoint pt
= m_wndEditor
->GetPosition();
4822 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
4823 wxASSERT( m_selected
);
4824 m_propHover
= m_selected
;
4825 bool res
= HandleMouseRightClick(x
,y
,event
);
4826 if ( !res
) event
.Skip();
4829 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
4832 if ( OnMouseChildCommon(event
,&x
,&y
) )
4834 bool res
= HandleMouseMove(x
,y
,event
);
4835 if ( !res
) event
.Skip();
4839 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
4842 if ( OnMouseChildCommon(event
,&x
,&y
) )
4844 bool res
= HandleMouseUp(x
,y
,event
);
4845 if ( !res
) event
.Skip();
4849 // -----------------------------------------------------------------------
4850 // wxPropertyGrid keyboard event handling
4851 // -----------------------------------------------------------------------
4853 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
4855 // Translates wxKeyEvent to wxPG_ACTION_XXX
4857 int keycode
= event
.GetKeyCode();
4858 int modifiers
= event
.GetModifiers();
4860 wxASSERT( !(modifiers
&~(0xFFFF)) );
4862 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4864 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
4866 if ( it
== m_actionTriggers
.end() )
4871 int second
= (it
->second
>>16) & 0xFFFF;
4875 return (it
->second
& 0xFFFF);
4878 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
4880 wxASSERT( !(modifiers
&~(0xFFFF)) );
4882 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4884 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
4886 if ( it
!= m_actionTriggers
.end() )
4888 // This key combination is already used
4890 // Can add secondary?
4891 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
4892 wxT("You can only add up to two separate actions per key combination.") );
4894 action
= it
->second
| (action
<<16);
4897 m_actionTriggers
[hashMapKey
] = action
;
4900 void wxPropertyGrid::ClearActionTriggers( int action
)
4902 wxPGHashMapI2I::iterator it
;
4904 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); it
++ )
4906 if ( it
->second
== action
)
4908 m_actionTriggers
.erase(it
);
4913 static void CopyTextToClipboard( const wxString
& text
)
4915 if ( wxTheClipboard
->Open() )
4917 // This data objects are held by the clipboard,
4918 // so do not delete them in the app.
4919 wxTheClipboard
->SetData( new wxTextDataObject(text
) );
4920 wxTheClipboard
->Close();
4924 void wxPropertyGrid::HandleKeyEvent(wxKeyEvent
&event
)
4927 // Handles key event when editor control is not focused.
4930 wxASSERT( !m_frozen
);
4934 // Travelsal between items, collapsing/expanding, etc.
4935 int keycode
= event
.GetKeyCode();
4937 if ( keycode
== WXK_TAB
)
4940 DoSelectProperty( m_selected
, wxPG_SEL_FOCUS
);
4944 // Ignore Alt and Control when they are down alone
4945 if ( keycode
== WXK_ALT
||
4946 keycode
== WXK_CONTROL
)
4953 int action
= KeyEventToActions(event
, &secondAction
);
4959 if ( ButtonTriggerKeyTest(action
, event
) )
4962 wxPGProperty
* p
= m_selected
;
4964 if ( action
== wxPG_ACTION_COPY
)
4966 CopyTextToClipboard(p
->GetDisplayedString());
4970 // Travel and expand/collapse
4973 if ( p
->GetChildCount() &&
4974 !(p
->m_flags
& wxPG_PROP_DISABLED
)
4977 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
4979 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
4982 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
4984 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
4991 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
4995 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5006 if ( selectDir
>= -1 )
5008 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5010 DoSelectProperty(p
);
5016 // If nothing was selected, select the first item now
5017 // (or navigate out of tab).
5018 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5020 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5021 if ( p
) DoSelectProperty(p
);
5026 // -----------------------------------------------------------------------
5028 // Potentially handles a keyboard event for editor controls.
5029 // Returns false if event should *not* be skipped (on true it can
5030 // be optionally skipped).
5031 // Basicly, false means that SelectProperty was called (or was about
5032 // to be called, if canDestroy was false).
5033 bool wxPropertyGrid::HandleChildKey( wxKeyEvent
& event
)
5037 if ( !m_selected
|| !m_wndEditor
)
5042 int action
= KeyEventToAction(event
);
5045 if ( action
== wxPG_ACTION_CANCEL_EDIT
)
5048 // Esc cancels any changes
5049 if ( IsEditorsValueModified() )
5051 EditorsValueWasNotModified();
5053 // Update the control as well
5054 m_selected
->GetEditorClass()->SetControlStringValue( m_selected
,
5056 m_selected
->GetDisplayedString() );
5059 OnValidationFailureReset(m_selected
);
5064 else if ( action
== wxPG_ACTION_COPY
)
5066 // NB: There is some problem with getting native cut-copy-paste keys to go through
5067 // for embedded editor wxTextCtrl. This is why we emulate.
5069 wxTextCtrl
* tc
= GetEditorTextCtrl();
5072 wxString sel
= tc
->GetStringSelection();
5074 CopyTextToClipboard(sel
);
5078 CopyTextToClipboard(m_selected
->GetDisplayedString());
5081 else if ( action
== wxPG_ACTION_CUT
)
5083 wxTextCtrl
* tc
= GetEditorTextCtrl();
5087 tc
->GetSelection(&from
, &to
);
5090 CopyTextToClipboard(tc
->GetStringSelection());
5091 tc
->Remove(from
, to
);
5095 else if ( action
== wxPG_ACTION_PASTE
)
5097 wxTextCtrl
* tc
= GetEditorTextCtrl();
5100 if (wxTheClipboard
->Open())
5102 if (wxTheClipboard
->IsSupported( wxDF_TEXT
))
5104 wxTextDataObject data
;
5105 wxTheClipboard
->GetData( data
);
5107 tc
->GetSelection(&from
, &to
);
5110 tc
->Remove(from
, to
);
5111 tc
->WriteText(data
.GetText());
5115 tc
->WriteText(data
.GetText());
5118 wxTheClipboard
->Close();
5126 // -----------------------------------------------------------------------
5128 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5130 HandleKeyEvent( event
);
5133 // -----------------------------------------------------------------------
5135 void wxPropertyGrid::OnKeyUp(wxKeyEvent
&event
)
5140 // -----------------------------------------------------------------------
5142 bool wxPropertyGrid::ButtonTriggerKeyTest( int action
, wxKeyEvent
& event
)
5147 action
= KeyEventToActions(event
, &secondAction
);
5150 // Does the keycode trigger button?
5151 if ( action
== wxPG_ACTION_PRESS_BUTTON
&&
5154 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
, m_wndEditor2
->GetId());
5155 GetEventHandler()->AddPendingEvent(evt
);
5162 // -----------------------------------------------------------------------
5164 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5166 int keycode
= event
.GetKeyCode();
5168 // Ignore Alt and Control when they are down alone
5169 if ( keycode
== WXK_ALT
||
5170 keycode
== WXK_CONTROL
)
5176 if ( ButtonTriggerKeyTest(-1, event
) )
5179 if ( HandleChildKey(event
) == true )
5182 GetEventHandler()->AddPendingEvent(event
);
5185 void wxPropertyGrid::OnChildKeyUp( wxKeyEvent
&event
)
5187 GetEventHandler()->AddPendingEvent(event
);
5192 // -----------------------------------------------------------------------
5193 // wxPropertyGrid miscellaneous event handling
5194 // -----------------------------------------------------------------------
5196 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5199 // Check if the focus is in this control or one of its children
5200 wxWindow
* newFocused
= wxWindow::FindFocus();
5202 if ( newFocused
!= m_curFocused
)
5203 HandleFocusChange( newFocused
);
5206 // Called by focus event handlers. newFocused is the window that becomes focused.
5207 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5209 unsigned int oldFlags
= m_iFlags
;
5211 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5213 wxWindow
* parent
= newFocused
;
5215 // This must be one of nextFocus' parents.
5218 // Use m_eventObject, which is either wxPropertyGrid or
5219 // wxPropertyGridManager, as appropriate.
5220 if ( parent
== m_eventObject
)
5222 m_iFlags
|= wxPG_FL_FOCUSED
;
5225 parent
= parent
->GetParent();
5228 m_curFocused
= newFocused
;
5230 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5231 (oldFlags
& wxPG_FL_FOCUSED
) )
5233 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5235 // Need to store changed value
5236 CommitChangesFromEditor();
5242 // Preliminary code for tab-order respecting
5243 // tab-traversal (but should be moved to
5246 wxWindow* prevFocus = event.GetWindow();
5247 wxWindow* useThis = this;
5248 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5249 useThis = GetParent();
5252 prevFocus->GetParent() == useThis->GetParent() )
5254 wxList& children = useThis->GetParent()->GetChildren();
5256 wxNode* node = children.Find(prevFocus);
5258 if ( node->GetNext() &&
5259 useThis == node->GetNext()->GetData() )
5260 DoSelectProperty(GetFirst());
5261 else if ( node->GetPrevious () &&
5262 useThis == node->GetPrevious()->GetData() )
5263 DoSelectProperty(GetLastProperty());
5270 if ( m_selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5271 DrawItem( m_selected
);
5275 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5277 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5278 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5279 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5280 //else if ( event.GetWindow() )
5282 HandleFocusChange(event
.GetWindow());
5287 // -----------------------------------------------------------------------
5289 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5291 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5294 // event.Skip() being commented out is aworkaround for bug reported
5295 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5299 // -----------------------------------------------------------------------
5301 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5303 m_iFlags
|= wxPG_FL_SCROLLED
;
5308 // -----------------------------------------------------------------------
5310 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5312 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5314 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5318 // -----------------------------------------------------------------------
5319 // Property editor related functions
5320 // -----------------------------------------------------------------------
5322 // noDefCheck = true prevents infinite recursion.
5323 wxPGEditor
* wxPropertyGrid::RegisterEditorClass( wxPGEditor
* editorClass
,
5326 wxASSERT( editorClass
);
5328 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5329 RegisterDefaultEditors();
5331 wxString name
= editorClass
->GetName();
5333 // Existing editor under this name?
5334 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5336 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5337 (wxPGEditor
*) vt_it
->second
,
5338 "Editor with given name was already registered" );
5340 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5345 // Registers all default editor classes
5346 void wxPropertyGrid::RegisterDefaultEditors()
5348 wxPGRegisterDefaultEditorClass( TextCtrl
);
5349 wxPGRegisterDefaultEditorClass( Choice
);
5350 wxPGRegisterDefaultEditorClass( ComboBox
);
5351 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5352 #if wxPG_INCLUDE_CHECKBOX
5353 wxPGRegisterDefaultEditorClass( CheckBox
);
5355 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5357 // Register SpinCtrl etc. editors before use
5358 RegisterAdditionalEditors();
5361 // -----------------------------------------------------------------------
5362 // wxPGStringTokenizer
5363 // Needed to handle C-style string lists (e.g. "str1" "str2")
5364 // -----------------------------------------------------------------------
5366 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5367 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5371 wxPGStringTokenizer::~wxPGStringTokenizer()
5375 bool wxPGStringTokenizer::HasMoreTokens()
5377 const wxString
& str
= *m_str
;
5379 wxString::const_iterator i
= m_curPos
;
5381 wxUniChar delim
= m_delimeter
;
5383 wxUniChar prev_a
= wxT('\0');
5385 bool inToken
= false;
5387 while ( i
!= str
.end() )
5396 m_readyToken
.clear();
5401 if ( prev_a
!= wxT('\\') )
5405 if ( a
!= wxT('\\') )
5425 m_curPos
= str
.end();
5433 wxString
wxPGStringTokenizer::GetNextToken()
5435 return m_readyToken
;
5438 // -----------------------------------------------------------------------
5440 // -----------------------------------------------------------------------
5442 wxPGChoiceEntry::wxPGChoiceEntry()
5443 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5447 wxPGChoiceEntry::wxPGChoiceEntry( const wxPGChoiceEntry
& entry
)
5448 : wxPGCell( entry
.GetText(), entry
.GetBitmap(),
5449 entry
.GetFgCol(), entry
.GetBgCol() ), m_value(entry
.GetValue())
5453 // -----------------------------------------------------------------------
5455 // -----------------------------------------------------------------------
5457 wxPGChoicesData::wxPGChoicesData()
5462 wxPGChoicesData::~wxPGChoicesData()
5467 void wxPGChoicesData::Clear()
5471 for ( i
=0; i
<m_items
.size(); i
++ )
5479 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
5481 wxASSERT( m_items
.size() == 0 );
5485 for ( i
=0; i
<data
->GetCount(); i
++ )
5486 m_items
.push_back( new wxPGChoiceEntry(*data
->Item(i
)) );
5489 // -----------------------------------------------------------------------
5491 // -----------------------------------------------------------------------
5493 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
5497 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5498 m_data
->Insert( -1, p
);
5502 // -----------------------------------------------------------------------
5504 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
5508 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5509 p
->SetBitmap(bitmap
);
5510 m_data
->Insert( -1, p
);
5514 // -----------------------------------------------------------------------
5516 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
5520 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(entry
);
5521 m_data
->Insert(index
, p
);
5525 // -----------------------------------------------------------------------
5527 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
5531 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5532 m_data
->Insert( index
, p
);
5536 // -----------------------------------------------------------------------
5538 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
5544 while ( index
< GetCount() )
5546 int cmpRes
= GetLabel(index
).Cmp(label
);
5552 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5553 m_data
->Insert( index
, p
);
5557 // -----------------------------------------------------------------------
5559 void wxPGChoices::Add( const wxChar
** labels
, const ValArrItem
* values
)
5563 unsigned int itemcount
= 0;
5564 const wxChar
** p
= &labels
[0];
5565 while ( *p
) { p
++; itemcount
++; }
5568 for ( i
= 0; i
< itemcount
; i
++ )
5570 int value
= wxPG_INVALID_VALUE
;
5573 m_data
->Insert( -1, new wxPGChoiceEntry(labels
[i
], value
) );
5577 // -----------------------------------------------------------------------
5579 void wxPGChoices::Add( const wxArrayString
& arr
, const ValArrItem
* values
)
5584 unsigned int itemcount
= arr
.size();
5586 for ( i
= 0; i
< itemcount
; i
++ )
5588 int value
= wxPG_INVALID_VALUE
;
5591 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5595 // -----------------------------------------------------------------------
5597 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
5602 unsigned int itemcount
= arr
.size();
5604 for ( i
= 0; i
< itemcount
; i
++ )
5606 int value
= wxPG_INVALID_VALUE
;
5607 if ( &arrint
&& arrint
.size() )
5609 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5613 // -----------------------------------------------------------------------
5615 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
5617 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
5619 for ( i
=nIndex
; i
<(nIndex
+count
); i
++)
5620 delete m_data
->Item(i
);
5621 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
5622 m_data
->m_items
.begin()+nIndex
+count
-1);
5625 // -----------------------------------------------------------------------
5627 int wxPGChoices::Index( const wxString
& str
) const
5632 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5634 if ( m_data
->Item(i
)->GetText() == str
)
5641 // -----------------------------------------------------------------------
5643 int wxPGChoices::Index( int val
) const
5648 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5650 if ( m_data
->Item(i
)->GetValue() == val
)
5657 // -----------------------------------------------------------------------
5659 wxArrayString
wxPGChoices::GetLabels() const
5664 if ( this && IsOk() )
5665 for ( i
=0; i
<GetCount(); i
++ )
5666 arr
.push_back(GetLabel(i
));
5671 // -----------------------------------------------------------------------
5673 bool wxPGChoices::HasValues() const
5678 // -----------------------------------------------------------------------
5680 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
5687 for ( i
=0; i
< strings
.size(); i
++ )
5689 int index
= Index(strings
[i
]);
5691 arr
.Add(GetValue(index
));
5693 arr
.Add(wxPG_INVALID_VALUE
);
5700 // -----------------------------------------------------------------------
5702 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
5703 wxArrayString
* unmatched
) const
5710 for ( i
=0; i
< strings
.size(); i
++ )
5712 const wxString
& str
= strings
[i
];
5713 int index
= Index(str
);
5716 else if ( unmatched
)
5717 unmatched
->Add(str
);
5724 // -----------------------------------------------------------------------
5726 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
5730 if ( data
!= wxPGChoicesEmptyData
)
5737 // -----------------------------------------------------------------------
5739 void wxPGChoices::Init()
5741 m_data
= wxPGChoicesEmptyData
;
5744 // -----------------------------------------------------------------------
5746 void wxPGChoices::Free()
5748 if ( m_data
!= wxPGChoicesEmptyData
)
5751 m_data
= wxPGChoicesEmptyData
;
5755 // -----------------------------------------------------------------------
5756 // wxPropertyGridEvent
5757 // -----------------------------------------------------------------------
5759 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5762 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED
)
5763 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING
)
5764 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED
)
5765 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED
)
5766 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK
)
5767 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED
)
5768 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED
)
5769 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED
)
5770 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK
)
5773 // -----------------------------------------------------------------------
5775 void wxPropertyGridEvent::Init()
5777 m_validationInfo
= NULL
;
5779 m_wasVetoed
= false;
5782 // -----------------------------------------------------------------------
5784 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5785 : wxCommandEvent(commandType
,id
)
5791 // -----------------------------------------------------------------------
5793 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5794 : wxCommandEvent(event
)
5796 m_eventType
= event
.GetEventType();
5797 m_eventObject
= event
.m_eventObject
;
5799 m_property
= event
.m_property
;
5800 m_validationInfo
= event
.m_validationInfo
;
5801 m_canVeto
= event
.m_canVeto
;
5802 m_wasVetoed
= event
.m_wasVetoed
;
5805 // -----------------------------------------------------------------------
5807 wxPropertyGridEvent::~wxPropertyGridEvent()
5811 // -----------------------------------------------------------------------
5813 wxEvent
* wxPropertyGridEvent::Clone() const
5815 return new wxPropertyGridEvent( *this );
5818 // -----------------------------------------------------------------------
5819 // wxPropertyGridPopulator
5820 // -----------------------------------------------------------------------
5822 wxPropertyGridPopulator::wxPropertyGridPopulator()
5826 wxPGGlobalVars
->m_offline
++;
5829 // -----------------------------------------------------------------------
5831 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
5834 m_propHierarchy
.clear();
5837 // -----------------------------------------------------------------------
5839 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
5845 // -----------------------------------------------------------------------
5847 wxPropertyGridPopulator::~wxPropertyGridPopulator()
5850 // Free unused sets of choices
5851 wxPGHashMapS2P::iterator it
;
5853 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
5855 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
5862 m_pg
->GetPanel()->Refresh();
5864 wxPGGlobalVars
->m_offline
--;
5867 // -----------------------------------------------------------------------
5869 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
5870 const wxString
& propLabel
,
5871 const wxString
& propName
,
5872 const wxString
* propValue
,
5873 wxPGChoices
* pChoices
)
5875 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
5876 wxPGProperty
* parent
= GetCurParent();
5878 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
5880 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
5884 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
5886 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
5890 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
5892 property
->SetLabel(propLabel
);
5893 property
->DoSetName(propName
);
5895 if ( pChoices
&& pChoices
->IsOk() )
5896 property
->SetChoices(*pChoices
);
5898 m_state
->DoInsert(parent
, -1, property
);
5901 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
);
5906 // -----------------------------------------------------------------------
5908 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
5910 m_propHierarchy
.push_back(property
);
5911 DoScanForChildren();
5912 m_propHierarchy
.pop_back();
5915 // -----------------------------------------------------------------------
5917 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
5918 const wxString
& idString
)
5920 wxPGChoices choices
;
5923 if ( choicesString
[0] == wxT('@') )
5925 wxString ids
= choicesString
.substr(1);
5926 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
5927 if ( it
== m_dictIdChoices
.end() )
5928 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
5930 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5935 if ( idString
.length() )
5937 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
5938 if ( it
!= m_dictIdChoices
.end() )
5940 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5947 // Parse choices string
5948 wxString::const_iterator it
= choicesString
.begin();
5952 bool labelValid
= false;
5954 for ( ; it
!= choicesString
.end(); it
++ )
5960 if ( c
== wxT('"') )
5965 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
5966 choices
.Add(label
, l
);
5969 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
5974 else if ( c
== wxT('=') )
5981 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
5988 if ( c
== wxT('"') )
6001 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6002 choices
.Add(label
, l
);
6005 if ( !choices
.IsOk() )
6007 choices
.EnsureData();
6011 if ( idString
.length() )
6012 m_dictIdChoices
[idString
] = choices
.GetData();
6019 // -----------------------------------------------------------------------
6021 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6023 if ( s
.Last() == wxT('%') )
6025 wxString s2
= s
.substr(0,s
.length()-1);
6027 if ( s2
.ToLong(&val
, 10) )
6029 *pval
= (val
*max
)/100;
6035 return s
.ToLong(pval
, 10);
6038 // -----------------------------------------------------------------------
6040 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6041 const wxString
& type
,
6042 const wxString
& value
)
6044 int l
= m_propHierarchy
.size();
6048 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6049 wxString valuel
= value
.Lower();
6052 if ( type
.length() == 0 )
6057 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6059 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6061 else if ( value
.ToLong(&v
, 0) )
6068 if ( type
== wxT("string") )
6072 else if ( type
== wxT("int") )
6075 value
.ToLong(&v
, 0);
6078 else if ( type
== wxT("bool") )
6080 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6087 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6092 p
->SetAttribute( name
, variant
);
6097 // -----------------------------------------------------------------------
6099 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6101 wxLogError(_("Error in resource: %s"),msg
.c_str());
6104 // -----------------------------------------------------------------------
6106 #endif // wxUSE_PROPGRID