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
);
589 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_F4
);
591 m_coloursCustomized
= 0;
596 #if wxPG_DOUBLE_BUFFER
597 m_doubleBuffer
= (wxBitmap
*) NULL
;
600 #ifndef wxPG_ICON_WIDTH
606 m_iconWidth
= wxPG_ICON_WIDTH
;
611 m_gutterWidth
= wxPG_GUTTER_MIN
;
612 m_subgroup_extramargin
= 10;
616 m_width
= m_height
= 0;
618 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
621 m_chgInfo_changedProperty
= NULL
;
624 // -----------------------------------------------------------------------
627 // Initialize after parent etc. set
629 void wxPropertyGrid::Init2()
631 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
634 // Smaller controls on Mac
635 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
638 // Now create state, if one didn't exist already
639 // (wxPropertyGridManager might have created it for us).
642 m_pState
= CreateState();
643 m_pState
->m_pPropGrid
= this;
644 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
647 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
648 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
650 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
652 m_pState
->InitNonCatMode();
654 m_pState
->m_properties
= m_pState
->m_abcArray
;
657 GetClientSize(&m_width
,&m_height
);
659 #ifndef wxPG_ICON_WIDTH
660 // create two bitmap nodes for drawing
661 m_expandbmp
= new wxBitmap(expand_xpm
);
662 m_collbmp
= new wxBitmap(collapse_xpm
);
664 // calculate average font height for bitmap centering
666 m_iconWidth
= m_expandbmp
->GetWidth();
667 m_iconHeight
= m_expandbmp
->GetHeight();
670 m_curcursor
= wxCURSOR_ARROW
;
671 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
673 // adjust bitmap icon y position so they are centered
674 m_vspacing
= wxPG_DEFAULT_VSPACING
;
678 wxFont useFont
= wxScrolledWindow::GetFont();
679 wxScrolledWindow::SetOwnFont( useFont
);
682 // This should be otherwise called by SetOwnFont
683 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
685 // Add base brush item
686 m_arrBgBrushes
.Add((void*)new wxPGBrush());
688 // Add base colour items
689 m_arrFgCols
.Add((void*)new wxPGColour());
690 m_arrFgCols
.Add((void*)new wxPGColour());
694 // This helps with flicker
695 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
698 wxPGTLWHandler
* handler
= new wxPGTLWHandler(this);
699 m_tlp
= ::wxGetTopLevelParent(this);
700 m_tlwHandler
= handler
;
701 m_tlp
->PushEventHandler(handler
);
703 // set virtual size to this window size
704 wxSize wndsize
= GetSize();
705 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
707 m_timeCreated
= ::wxGetLocalTimeMillis();
709 m_canvas
= new wxPGCanvas();
710 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
711 (GetWindowStyle() & wxTAB_TRAVERSAL
) | wxWANTS_CHARS
| wxCLIP_CHILDREN
);
712 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
714 m_iFlags
|= wxPG_FL_INITIALIZED
;
716 m_ncWidth
= wndsize
.GetWidth();
718 // Need to call OnResize handler or size given in constructor/Create
720 wxSizeEvent
sizeEvent(wndsize
,0);
724 // -----------------------------------------------------------------------
726 wxPropertyGrid::~wxPropertyGrid()
730 DoSelectProperty(NULL
);
732 // This should do prevent things from going too badly wrong
733 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
735 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
736 m_canvas
->ReleaseMouse();
738 wxPGTLWHandler
* handler
= (wxPGTLWHandler
*) m_tlwHandler
;
739 m_tlp
->RemoveEventHandler(handler
);
743 if ( IsEditorsValueModified() )
744 ::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).)"),
745 wxS("wxPropertyGrid Debug Warning") );
748 #if wxPG_DOUBLE_BUFFER
749 if ( m_doubleBuffer
)
750 delete m_doubleBuffer
;
753 //m_selected = (wxPGProperty*) NULL;
755 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
758 delete m_cursorSizeWE
;
760 #ifndef wxPG_ICON_WIDTH
765 // Delete cached text colours.
766 for ( i
=0; i
<m_arrFgCols
.size(); i
++ )
768 delete (wxPGColour
*)m_arrFgCols
.Item(i
);
771 // Delete cached brushes.
772 for ( i
=0; i
<m_arrBgBrushes
.size(); i
++ )
774 delete (wxPGBrush
*)m_arrBgBrushes
.Item(i
);
777 // Delete common value records
778 for ( i
=0; i
<m_commonValues
.size(); i
++ )
780 delete GetCommonValue(i
);
784 // -----------------------------------------------------------------------
786 bool wxPropertyGrid::Destroy()
788 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
789 m_canvas
->ReleaseMouse();
791 return wxScrolledWindow::Destroy();
794 // -----------------------------------------------------------------------
796 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
798 return new wxPropertyGridPageState();
801 // -----------------------------------------------------------------------
802 // wxPropertyGrid overridden wxWindow methods
803 // -----------------------------------------------------------------------
805 void wxPropertyGrid::SetWindowStyleFlag( long style
)
807 long old_style
= m_windowStyle
;
809 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
811 wxASSERT( m_pState
);
813 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
816 EnableCategories( true );
818 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
820 // Disable categories
821 EnableCategories( false );
823 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
829 PrepareAfterItemsAdded();
831 m_pState
->m_itemsAdded
= 1;
833 #if wxPG_SUPPORT_TOOLTIPS
834 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
840 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
841 SetToolTip ( tooltip );
842 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
845 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
850 m_canvas
->SetToolTip( (wxToolTip
*) NULL
);
855 wxScrolledWindow::SetWindowStyleFlag ( style
);
857 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
859 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
861 CalculateFontAndBitmapStuff( m_vspacing
);
867 // -----------------------------------------------------------------------
869 void wxPropertyGrid::Freeze()
873 wxScrolledWindow::Freeze();
878 // -----------------------------------------------------------------------
880 void wxPropertyGrid::Thaw()
886 wxScrolledWindow::Thaw();
887 RecalculateVirtualSize();
888 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
892 // Force property re-selection
894 DoSelectProperty(m_selected
, wxPG_SEL_FORCE
);
898 // -----------------------------------------------------------------------
900 void wxPropertyGrid::SetExtraStyle( long exStyle
)
902 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
904 #if defined(__WXMSW__)
907 // Don't use WS_EX_COMPOSITED just now.
910 if ( m_iFlags & wxPG_FL_IN_MANAGER )
911 hWnd = (HWND)GetParent()->GetHWND();
913 hWnd = (HWND)GetHWND();
915 ::SetWindowLong( hWnd, GWL_EXSTYLE,
916 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
919 //#elif defined(__WXGTK20__)
921 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
922 // truly was double-buffered.
923 if ( !this->IsDoubleBuffered() )
925 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
929 #if wxPG_DOUBLE_BUFFER
930 delete m_doubleBuffer
;
931 m_doubleBuffer
= NULL
;
936 wxScrolledWindow::SetExtraStyle( exStyle
);
938 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
939 m_pState
->InitNonCatMode();
941 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
942 m_windowStyle
|= wxPG_TOOLTIPS
;
945 wxPGGlobalVars
->m_extraStyle
= exStyle
;
948 // -----------------------------------------------------------------------
950 // returns the best acceptable minimal size
951 wxSize
wxPropertyGrid::DoGetBestSize() const
954 if ( m_lineHeight
> hei
)
956 wxSize sz
= wxSize( 60, hei
+40 );
962 // -----------------------------------------------------------------------
963 // wxPropertyGrid Font and Colour Methods
964 // -----------------------------------------------------------------------
966 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
970 m_captionFont
= wxScrolledWindow::GetFont();
972 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
973 m_subgroup_extramargin
= x
+ (x
/2);
976 #if wxPG_USE_RENDERER_NATIVE
977 m_iconWidth
= wxPG_ICON_WIDTH
;
978 #elif wxPG_ICON_WIDTH
980 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
981 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
982 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
986 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
987 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
988 m_gutterWidth
= wxPG_GUTTER_MIN
;
991 if ( vspacing
<= 1 ) vdiv
= 12;
992 else if ( vspacing
>= 3 ) vdiv
= 3;
994 m_spacingy
= m_fontHeight
/ vdiv
;
995 if ( m_spacingy
< wxPG_YSPACING_MIN
)
996 m_spacingy
= wxPG_YSPACING_MIN
;
999 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
1000 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1002 m_captionFont
.SetWeight(wxBOLD
);
1003 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1005 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1008 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1009 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1012 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1014 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1015 RecalculateVirtualSize();
1017 InvalidateBestSize();
1020 // -----------------------------------------------------------------------
1022 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1028 // -----------------------------------------------------------------------
1030 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1031 int ga
= 1000, int ba
= 1000,
1032 bool forceDifferent
= false)
1039 // Recursion guard (allow 2 max)
1040 static int isinside
= 0;
1042 wxCHECK_MSG( isinside
< 3,
1044 wxT("wxPGAdjustColour should not be recursively called more than once") );
1049 int g
= src
.Green();
1052 if ( r2
>255 ) r2
= 255;
1053 else if ( r2
<0) r2
= 0;
1055 if ( g2
>255 ) g2
= 255;
1056 else if ( g2
<0) g2
= 0;
1058 if ( b2
>255 ) b2
= 255;
1059 else if ( b2
<0) b2
= 0;
1061 // Make sure they are somewhat different
1062 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1063 dst
= wxPGAdjustColour(src
,-(ra
*2));
1065 dst
= wxColour(r2
,g2
,b2
);
1067 // Recursion guard (allow 2 max)
1074 static int wxPGGetColAvg( const wxColour
& col
)
1076 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1080 void wxPropertyGrid::RegainColours()
1082 wxColour def_bgcol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1084 if ( !(m_coloursCustomized
& 0x0002) )
1086 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1088 // Make sure colour is dark enough
1090 int colDec
= wxPGGetColAvg(col
) - 230;
1092 int colDec
= wxPGGetColAvg(col
) - 200;
1095 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1100 if ( !(m_coloursCustomized
& 0x0001) )
1101 m_colMargin
= m_colCapBack
;
1103 if ( !(m_coloursCustomized
& 0x0004) )
1110 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1111 m_colCapFore
= capForeCol
;
1113 // Set the cached colour as well.
1114 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(capForeCol
);
1117 if ( !(m_coloursCustomized
& 0x0008) )
1119 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1120 m_colPropBack
= bgCol
;
1122 // Set the cached brush as well.
1123 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(bgCol
);
1126 if ( !(m_coloursCustomized
& 0x0010) )
1128 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1129 m_colPropFore
= fgCol
;
1131 // Set the cached colour as well.
1132 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(fgCol
);
1135 if ( !(m_coloursCustomized
& 0x0020) )
1136 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1138 if ( !(m_coloursCustomized
& 0x0040) )
1139 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1141 if ( !(m_coloursCustomized
& 0x0080) )
1142 m_colLine
= m_colCapBack
;
1144 if ( !(m_coloursCustomized
& 0x0100) )
1145 m_colDisPropFore
= m_colCapFore
;
1147 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1150 // -----------------------------------------------------------------------
1152 void wxPropertyGrid::ResetColours()
1154 m_coloursCustomized
= 0;
1161 // -----------------------------------------------------------------------
1163 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1165 // Must disable active editor.
1168 bool selRes
= ClearSelection();
1169 wxPG_CHECK_MSG_DBG( selRes
,
1171 wxT("failed to deselect a property (editor probably had invalid value)") );
1174 // TODO: Following code is disabled with wxMac because
1175 // it is reported to fail. I (JMS) cannot debug it
1176 // personally right now.
1177 // CS: should be fixed now, leaving old code in just in case, TODO: REMOVE
1178 #if 1 // !defined(__WXMAC__)
1179 bool res
= wxScrolledWindow::SetFont( font
);
1182 CalculateFontAndBitmapStuff( m_vspacing
);
1185 m_pState
->CalculateFontAndBitmapStuff(m_vspacing
);
1193 // TODO: Remove after SetFont crash fixed.
1194 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1196 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."));
1202 // -----------------------------------------------------------------------
1204 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1207 m_coloursCustomized
|= 0x80;
1211 // -----------------------------------------------------------------------
1213 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1216 m_coloursCustomized
|= 0x01;
1220 // -----------------------------------------------------------------------
1222 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1224 m_colPropBack
= col
;
1225 m_coloursCustomized
|= 0x08;
1227 // Set the cached brush as well.
1228 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(col
);
1233 // -----------------------------------------------------------------------
1235 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1237 m_colPropFore
= col
;
1238 m_coloursCustomized
|= 0x10;
1240 // Set the cached colour as well.
1241 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(col
);
1246 // -----------------------------------------------------------------------
1248 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1250 m_colEmptySpace
= col
;
1255 // -----------------------------------------------------------------------
1257 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1259 m_colDisPropFore
= col
;
1260 m_coloursCustomized
|= 0x100;
1264 // -----------------------------------------------------------------------
1266 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1269 m_coloursCustomized
|= 0x20;
1273 // -----------------------------------------------------------------------
1275 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1278 m_coloursCustomized
|= 0x40;
1282 // -----------------------------------------------------------------------
1284 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1287 m_coloursCustomized
|= 0x02;
1291 // -----------------------------------------------------------------------
1293 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1296 m_coloursCustomized
|= 0x04;
1298 // Set the cached colour as well.
1299 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(col
);
1304 // -----------------------------------------------------------------------
1306 void wxPropertyGrid::SetBackgroundColourIndex( wxPGProperty
* p
, int index
)
1308 unsigned char ind
= index
;
1310 p
->m_bgColIndex
= ind
;
1313 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1314 SetBackgroundColourIndex(p
->Item(i
),index
);
1317 // -----------------------------------------------------------------------
1319 void wxPropertyGrid::SetPropertyBackgroundColour( wxPGPropArg id
, const wxColour
& colour
)
1321 wxPG_PROP_ARG_CALL_PROLOG()
1326 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1328 // As it is most likely that the previous colour is used, start comparison
1330 for ( i
=(m_arrBgBrushes
.size()-1); i
>0; i
-- )
1332 if ( ((wxPGBrush
*)m_arrBgBrushes
.Item(i
))->GetColourAsLong() == colAsLong
)
1341 colInd
= m_arrBgBrushes
.size();
1342 wxCHECK_RET( colInd
< 256, wxT("wxPropertyGrid: Warning - Only 255 different property background colours allowed.") );
1343 m_arrBgBrushes
.Add( (void*)new wxPGBrush(colour
) );
1347 SetBackgroundColourIndex(p
,colInd
);
1349 // If this was on a visible grid, then draw it.
1350 DrawItemAndChildren(p
);
1353 // -----------------------------------------------------------------------
1355 wxColour
wxPropertyGrid::GetPropertyBackgroundColour( wxPGPropArg id
) const
1357 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1359 return ((wxPGBrush
*)m_arrBgBrushes
.Item(p
->m_bgColIndex
))->GetColour();
1362 // -----------------------------------------------------------------------
1364 void wxPropertyGrid::SetTextColourIndex( wxPGProperty
* p
, int index
, int flags
)
1366 unsigned char ind
= index
;
1368 p
->m_fgColIndex
= ind
;
1370 if ( p
->GetChildCount() && (flags
& wxPG_RECURSE
) )
1373 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1374 SetTextColourIndex( p
->Item(i
), index
, flags
);
1378 // -----------------------------------------------------------------------
1380 int wxPropertyGrid::CacheColour( const wxColour
& colour
)
1385 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1387 // As it is most likely that the previous colour is used, start comparison
1389 for ( i
=(m_arrFgCols
.size()-1); i
>0; i
-- )
1391 if ( ((wxPGColour
*)m_arrFgCols
.Item(i
))->GetColourAsLong() == colAsLong
)
1400 colInd
= m_arrFgCols
.size();
1401 wxCHECK_MSG( colInd
< 256, 0, wxT("wxPropertyGrid: Warning - Only 255 different property foreground colours allowed.") );
1402 m_arrFgCols
.Add( (void*)new wxPGColour(colour
) );
1408 // -----------------------------------------------------------------------
1410 void wxPropertyGrid::SetPropertyTextColour( wxPGPropArg id
, const wxColour
& colour
,
1413 wxPG_PROP_ARG_CALL_PROLOG()
1415 if ( p
->IsCategory() )
1417 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1418 cat
->SetTextColIndex(CacheColour(colour
));
1424 flags
|= wxPG_RECURSE
;
1425 SetTextColourIndex(p
, CacheColour(colour
), flags
);
1427 DrawItemAndChildren(p
);
1430 // -----------------------------------------------------------------------
1432 wxColour
wxPropertyGrid::GetPropertyTextColour( wxPGPropArg id
) const
1434 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1436 return wxColour(*((wxPGColour
*)m_arrFgCols
.Item(p
->m_fgColIndex
)));
1439 void wxPropertyGrid::SetPropertyColoursToDefault( wxPGPropArg id
)
1441 wxPG_PROP_ARG_CALL_PROLOG()
1443 SetBackgroundColourIndex( p
, 0 );
1444 SetTextColourIndex( p
, 0, wxPG_RECURSE
);
1446 if ( p
->IsCategory() )
1448 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1449 cat
->SetTextColIndex(1);
1453 // -----------------------------------------------------------------------
1454 // wxPropertyGrid property adding and removal
1455 // -----------------------------------------------------------------------
1457 void wxPropertyGrid::PrepareAfterItemsAdded()
1459 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1461 m_pState
->m_itemsAdded
= 0;
1463 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1466 RecalculateVirtualSize();
1469 // -----------------------------------------------------------------------
1470 // wxPropertyGrid property value setting and getting
1471 // -----------------------------------------------------------------------
1473 void wxPropertyGrid::DoSetPropertyValueUnspecified( wxPGProperty
* p
)
1475 m_pState
->DoSetPropertyValueUnspecified(p
);
1476 DrawItemAndChildren(p
);
1478 wxPGProperty
* parent
= p
->GetParent();
1479 while ( (parent
->GetFlags() & wxPG_PROP_PARENTAL_FLAGS
) == wxPG_PROP_MISC_PARENT
)
1482 parent
= parent
->GetParent();
1486 // -----------------------------------------------------------------------
1487 // wxPropertyGrid property operations
1488 // -----------------------------------------------------------------------
1490 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1492 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1496 bool changed
= false;
1498 // Is it inside collapsed section?
1499 if ( !p
->IsVisible() )
1502 wxPGProperty
* parent
= p
->GetParent();
1503 wxPGProperty
* grandparent
= parent
->GetParent();
1505 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1506 Expand( grandparent
);
1514 GetViewStart(&vx
,&vy
);
1515 vy
*=wxPG_PIXELS_PER_UNIT
;
1521 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1522 m_iFlags
|= wxPG_FL_SCROLLED
;
1525 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1527 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1528 m_iFlags
|= wxPG_FL_SCROLLED
;
1538 // -----------------------------------------------------------------------
1539 // wxPropertyGrid helper methods called by properties
1540 // -----------------------------------------------------------------------
1542 // Control font changer helper.
1543 void wxPropertyGrid::SetCurControlBoldFont()
1545 wxASSERT( m_wndEditor
);
1546 m_wndEditor
->SetFont( m_captionFont
);
1549 // -----------------------------------------------------------------------
1551 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1554 #if wxPG_SMALL_SCREEN
1555 // On small-screen devices, always show dialogs with default position and size.
1556 return wxDefaultPosition
;
1558 int splitterX
= GetSplitterPosition();
1562 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1564 ImprovedClientToScreen( &x
, &y
);
1566 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1567 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1574 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1584 new_y
= y
+ m_lineHeight
;
1586 return wxPoint(new_x
,new_y
);
1590 // -----------------------------------------------------------------------
1592 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1594 if ( src_str
.length() == 0 )
1600 bool prev_is_slash
= false;
1602 wxString::const_iterator i
= src_str
.begin();
1606 for ( ; i
!= src_str
.end(); i
++ )
1610 if ( a
!= wxS('\\') )
1612 if ( !prev_is_slash
)
1618 if ( a
== wxS('n') )
1621 dst_str
<< wxS('\n');
1623 dst_str
<< wxS('\n');
1626 else if ( a
== wxS('t') )
1627 dst_str
<< wxS('\t');
1631 prev_is_slash
= false;
1635 if ( prev_is_slash
)
1637 dst_str
<< wxS('\\');
1638 prev_is_slash
= false;
1642 prev_is_slash
= true;
1649 // -----------------------------------------------------------------------
1651 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1653 if ( src_str
.length() == 0 )
1659 wxString::const_iterator i
= src_str
.begin();
1660 wxUniChar prev_a
= wxS('\0');
1664 for ( ; i
!= src_str
.end(); i
++ )
1668 if ( a
>= wxS(' ') )
1670 // This surely is not something that requires an escape sequence.
1675 // This might need...
1676 if ( a
== wxS('\r') )
1678 // DOS style line end.
1679 // Already taken care below
1681 else if ( a
== wxS('\n') )
1682 // UNIX style line end.
1683 dst_str
<< wxS("\\n");
1684 else if ( a
== wxS('\t') )
1686 dst_str
<< wxS('\t');
1689 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1699 // -----------------------------------------------------------------------
1701 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1705 return (wxPGProperty
*) NULL
;
1708 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1711 // -----------------------------------------------------------------------
1712 // wxPropertyGrid graphics related methods
1713 // -----------------------------------------------------------------------
1715 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1719 // Update everything inside the box
1720 wxRect r
= GetUpdateRegion().GetBox();
1722 dc
.SetPen(m_colEmptySpace
);
1723 dc
.SetBrush(m_colEmptySpace
);
1724 dc
.DrawRectangle(r
);
1727 // -----------------------------------------------------------------------
1729 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1730 wxPGProperty
* property
) const
1732 // Prepare rectangle to be used
1734 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1735 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1737 #if (wxPG_USE_RENDERER_NATIVE)
1739 #elif wxPG_ICON_WIDTH
1740 // Drawing expand/collapse button manually
1741 dc
.SetPen(m_colPropFore
);
1742 if ( property
->IsCategory() )
1743 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1745 dc
.SetBrush(m_colPropBack
);
1747 dc
.DrawRectangle( r
);
1748 int _y
= r
.y
+(m_iconWidth
/2);
1749 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1754 if ( property
->IsExpanded() )
1756 // wxRenderer functions are non-mutating in nature, so it
1757 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1758 // Hopefully this does not cause problems.
1759 #if (wxPG_USE_RENDERER_NATIVE)
1760 wxRendererNative::Get().DrawTreeItemButton(
1766 #elif wxPG_ICON_WIDTH
1775 #if (wxPG_USE_RENDERER_NATIVE)
1776 wxRendererNative::Get().DrawTreeItemButton(
1782 #elif wxPG_ICON_WIDTH
1783 int _x
= r
.x
+(m_iconWidth
/2);
1784 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1790 #if (wxPG_USE_RENDERER_NATIVE)
1792 #elif wxPG_ICON_WIDTH
1795 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1799 // -----------------------------------------------------------------------
1802 // This is the one called by OnPaint event handler and others.
1803 // topy and bottomy are already unscrolled (ie. physical)
1805 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1807 unsigned int bottomy
,
1808 const wxRect
* clipRect
)
1810 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1812 m_pState
->EnsureVirtualHeight();
1814 wxRect tempClipRect
;
1817 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1818 clipRect
= &tempClipRect
;
1821 // items added check
1822 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1824 int paintFinishY
= 0;
1826 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1829 bool isBuffered
= false;
1831 #if wxPG_DOUBLE_BUFFER
1832 wxMemoryDC
* bufferDC
= NULL
;
1834 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1836 if ( !m_doubleBuffer
)
1838 paintFinishY
= clipRect
->y
;
1843 bufferDC
= new wxMemoryDC();
1845 // If nothing was changed, then just copy from double-buffer
1846 bufferDC
->SelectObject( *m_doubleBuffer
);
1856 dc
.SetClippingRegion( *clipRect
);
1857 paintFinishY
= DoDrawItems( *dcPtr
, NULL
, NULL
, clipRect
, isBuffered
);
1860 #if wxPG_DOUBLE_BUFFER
1863 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1864 bufferDC
, 0, 0, wxCOPY
);
1865 dc
.DestroyClippingRegion(); // Is this really necessary?
1871 // Clear area beyond bottomY?
1872 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1874 dc
.SetPen(m_colEmptySpace
);
1875 dc
.SetBrush(m_colEmptySpace
);
1876 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1880 // -----------------------------------------------------------------------
1882 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1883 const wxPGProperty
* firstItem
,
1884 const wxPGProperty
* lastItem
,
1885 const wxRect
* clipRect
,
1886 bool isBuffered
) const
1888 // TODO: This should somehow be eliminated.
1889 wxRect tempClipRect
;
1892 wxASSERT(firstItem
);
1894 tempClipRect
= GetPropertyRect(firstItem
, lastItem
);
1895 clipRect
= &tempClipRect
;
1899 firstItem
= DoGetItemAtY(clipRect
->y
);
1903 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1905 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1908 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1911 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1912 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1914 int lh
= m_lineHeight
;
1917 int lastItemBottomY
;
1919 firstItemTopY
= clipRect
->y
;
1920 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1922 // Align y coordinates to item boundaries
1923 firstItemTopY
-= firstItemTopY
% lh
;
1924 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1925 lastItemBottomY
-= 1;
1927 // Entire range outside scrolled, visible area?
1928 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1931 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1935 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
1936 firstItem->GetLabel().c_str(),
1937 lastItem->GetLabel().c_str(),
1938 (int)(lastItemBottomY - firstItemTopY),
1940 (unsigned long)clipRect );
1945 long windowStyle
= m_windowStyle
;
1951 // With wxPG_DOUBLE_BUFFER, do double buffering
1952 // - buffer's y = 0, so align cliprect and coordinates to that
1954 #if wxPG_DOUBLE_BUFFER
1960 xRelMod
= clipRect
->x
;
1961 yRelMod
= clipRect
->y
;
1964 // clipRect conversion
1972 firstItemTopY
-= yRelMod
;
1973 lastItemBottomY
-= yRelMod
;
1976 wxUnusedVar(isBuffered
);
1979 int x
= m_marginWidth
- xRelMod
;
1981 const wxFont
& normalfont
= m_font
;
1983 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) ? true : false;
1985 bool isEnabled
= IsEnabled();
1988 // Prepare some pens and brushes that are often changed to.
1991 wxBrush
marginBrush(m_colMargin
);
1992 wxPen
marginPen(m_colMargin
);
1993 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
1994 wxPen
linepen(m_colLine
,1,wxSOLID
);
1996 // pen that has same colour as text
1997 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
2000 // Clear margin with background colour
2002 dc
.SetBrush( marginBrush
);
2003 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2005 dc
.SetPen( *wxTRANSPARENT_PEN
);
2006 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2009 const wxPGProperty
* selected
= m_selected
;
2010 const wxPropertyGridPageState
* state
= m_pState
;
2012 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2013 bool wasSelectedPainted
= false;
2016 // TODO: Only render columns that are within clipping region.
2018 dc
.SetFont(normalfont
);
2020 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2021 int endScanBottomY
= lastItemBottomY
+ lh
;
2022 int y
= firstItemTopY
;
2025 // Pregenerate list of visible properties.
2026 wxArrayPGProperty visPropArray
;
2027 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2029 for ( ; !it
.AtEnd(); it
.Next() )
2031 const wxPGProperty
* p
= *it
;
2033 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2035 visPropArray
.push_back((wxPGProperty
*)p
);
2037 if ( y
> endScanBottomY
)
2044 visPropArray
.push_back(NULL
);
2046 wxPGProperty
* nextP
= visPropArray
[0];
2048 int gridWidth
= state
->m_width
;
2051 for ( unsigned int arrInd
=1;
2052 nextP
&& y
<= lastItemBottomY
;
2055 wxPGProperty
* p
= nextP
;
2056 nextP
= visPropArray
[arrInd
];
2058 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2059 int textMarginHere
= x
;
2060 int renderFlags
= wxPGCellRenderer::Control
;
2062 int greyDepth
= m_marginWidth
;
2063 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2064 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2066 int greyDepthX
= greyDepth
- xRelMod
;
2068 // Use basic depth if in non-categoric mode and parent is base array.
2069 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2071 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2074 // Paint margin area
2075 dc
.SetBrush(marginBrush
);
2076 dc
.SetPen(marginPen
);
2077 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2079 dc
.SetPen( linepen
);
2084 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2090 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
2092 sx
+= state
->m_colWidths
[si
];
2093 dc
.DrawLine( sx
, y
, sx
, y2
);
2096 // Horizontal Line, below
2097 // (not if both this and next is category caption)
2098 if ( p
->IsCategory() &&
2099 nextP
&& nextP
->IsCategory() )
2100 dc
.SetPen(m_colCapBack
);
2102 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2104 if ( p
== selected
)
2106 renderFlags
|= wxPGCellRenderer::Selected
;
2107 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2108 wasSelectedPainted
= true;
2116 if ( p
->IsCategory() )
2118 if ( p
->m_fgColIndex
== 0 )
2119 rowFgCol
= m_colCapFore
;
2121 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2122 rowBgBrush
= wxBrush(m_colCapBack
);
2124 else if ( p
!= selected
)
2126 // Disabled may get different colour.
2127 if ( !p
->IsEnabled() )
2128 rowFgCol
= m_colDisPropFore
;
2130 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2132 rowBgBrush
= *(wxPGBrush
*)m_arrBgBrushes
[p
->m_bgColIndex
];
2136 // Selected gets different colour.
2137 if ( reallyFocused
)
2139 rowFgCol
= m_colSelFore
;
2140 rowBgBrush
= wxBrush(m_colSelBack
);
2142 else if ( isEnabled
)
2144 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2145 rowBgBrush
= marginBrush
;
2149 rowFgCol
= m_colDisPropFore
;
2150 rowBgBrush
= wxBrush(m_colSelBack
);
2154 bool fontChanged
= false;
2156 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2161 if ( p
->IsCategory() )
2163 // Captions are all cells merged as one
2164 dc
.SetFont(m_captionFont
);
2166 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2168 dc
.SetBrush(rowBgBrush
);
2169 dc
.SetPen(rowBgBrush
.GetColour());
2170 dc
.SetTextForeground(rowFgCol
);
2172 dc
.DrawRectangle(cellRect
);
2175 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
2176 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
2179 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2180 DrawExpanderButton( dc
, butRect
, p
);
2184 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
2186 dc
.SetFont(m_captionFont
);
2192 int nextCellWidth
= state
->m_colWidths
[0];
2193 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
2194 int textXAdd
= textMarginHere
- greyDepthX
;
2196 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
2198 cellRect
.width
= nextCellWidth
- 1;
2200 bool ctrlCell
= false;
2203 if ( p
== selected
&& m_wndEditor
&& ci
== 1 )
2205 wxColour editorBgCol
= GetEditorControl()->GetBackgroundColour();
2206 dc
.SetBrush(editorBgCol
);
2207 dc
.SetPen(editorBgCol
);
2208 dc
.SetTextForeground(m_colPropFore
);
2210 if ( m_dragStatus
== 0 && !(m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2215 dc
.SetBrush(rowBgBrush
);
2216 dc
.SetPen(rowBgBrush
.GetColour());
2217 dc
.SetTextForeground(rowFgCol
);
2220 dc
.DrawRectangle(cellRect
);
2223 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2224 DrawExpanderButton( dc
, butRect
, p
);
2226 dc
.SetClippingRegion(cellRect
);
2228 cellRect
.x
+= textXAdd
;
2229 cellRect
.width
-= textXAdd
;
2234 wxPGCellRenderer
* renderer
;
2235 int cmnVal
= p
->GetCommonValue();
2236 if ( cmnVal
== -1 || ci
!= 1 )
2238 renderer
= p
->GetCellRenderer(ci
);
2239 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2243 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2244 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2248 cellX
+= state
->m_colWidths
[ci
];
2249 if ( ci
< (state
->m_colWidths
.size()-1) )
2250 nextCellWidth
= state
->m_colWidths
[ci
+1];
2252 dc
.DestroyClippingRegion(); // Is this really necessary?
2258 dc
.SetFont(normalfont
);
2263 // Refresh editor controls (seems not needed on msw)
2264 // NOTE: This code is mandatory for GTK!
2265 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2266 if ( wasSelectedPainted
)
2269 m_wndEditor
->Refresh();
2271 m_wndEditor2
->Refresh();
2278 // -----------------------------------------------------------------------
2280 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2284 if ( m_width
< 10 || m_height
< 10 ||
2285 !m_pState
->m_properties
->GetChildCount() ||
2286 p1
== (wxPGProperty
*) NULL
)
2287 return wxRect(0,0,0,0);
2292 // Return rect which encloses the given property range
2294 int visTop
= p1
->GetY();
2297 visBottom
= p2
->GetY() + m_lineHeight
;
2299 visBottom
= m_height
+ visTop
;
2301 // If seleced property is inside the range, we'll extend the range to include
2303 wxPGProperty
* selected
= m_selected
;
2306 int selectedY
= selected
->GetY();
2307 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2309 wxWindow
* editor
= GetEditorControl();
2312 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2313 if ( visBottom2
> visBottom
)
2314 visBottom
= visBottom2
;
2319 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2322 // -----------------------------------------------------------------------
2324 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2329 if ( m_pState
->m_itemsAdded
)
2330 PrepareAfterItemsAdded();
2332 wxRect r
= GetPropertyRect(p1
, p2
);
2335 m_canvas
->RefreshRect(r
);
2339 // -----------------------------------------------------------------------
2341 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2343 if ( p
== m_selected
)
2344 DoSelectProperty(p
, wxPG_SEL_FORCE
);
2346 DrawItemAndChildren(p
);
2349 // -----------------------------------------------------------------------
2351 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2356 // Draw item, children, and parent too, if it is not category
2357 wxPGProperty
* parent
= p
->GetParent();
2360 !parent
->IsCategory() &&
2361 parent
->GetParent() )
2364 parent
= parent
->GetParent();
2367 DrawItemAndChildren(p
);
2370 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2372 wxCHECK_RET( p
, wxT("invalid property id") );
2374 // Do not draw if in non-visible page
2375 if ( p
->GetParentState() != m_pState
)
2378 // do not draw a single item if multiple pending
2379 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2382 wxWindow
* wndPrimary
= GetEditorControl();
2384 // Update child control.
2385 if ( m_selected
&& m_selected
->GetParent() == p
)
2386 m_selected
->UpdateControl(wndPrimary
);
2388 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2390 DrawItems(p
, lastDrawn
);
2393 // -----------------------------------------------------------------------
2395 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2396 const wxRect
*rect
)
2398 PrepareAfterItemsAdded();
2400 wxWindow::Refresh(false);
2402 // TODO: Coordinate translation
2403 m_canvas
->Refresh(false, rect
);
2405 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2406 // I think this really helps only GTK+1.2
2407 if ( m_wndEditor
) m_wndEditor
->Refresh();
2408 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2412 // -----------------------------------------------------------------------
2413 // wxPropertyGrid global operations
2414 // -----------------------------------------------------------------------
2416 void wxPropertyGrid::Clear()
2420 bool selRes
= DoSelectProperty(NULL
, wxPG_SEL_DELETING
); // This must be before state clear
2421 wxPG_CHECK_RET_DBG( selRes
,
2422 wxT("failed to deselect a property (editor probably had invalid value)") );
2425 m_pState
->DoClear();
2431 RecalculateVirtualSize();
2433 // Need to clear some area at the end
2435 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2438 // -----------------------------------------------------------------------
2440 bool wxPropertyGrid::EnableCategories( bool enable
)
2442 if ( !ClearSelection() )
2448 // Enable categories
2451 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2456 // Disable categories
2458 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2461 if ( !m_pState
->EnableCategories(enable
) )
2466 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2468 m_pState
->m_itemsAdded
= 1; // force
2469 PrepareAfterItemsAdded();
2473 m_pState
->m_itemsAdded
= 1;
2475 // No need for RecalculateVirtualSize() here - it is already called in
2476 // wxPropertyGridPageState method above.
2483 // -----------------------------------------------------------------------
2485 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2487 wxASSERT( pNewState
);
2488 wxASSERT( pNewState
->GetGrid() );
2490 if ( pNewState
== m_pState
)
2493 wxPGProperty
* oldSelection
= m_selected
;
2498 bool selRes
= ClearSelection();
2499 wxPG_CHECK_RET_DBG( selRes
,
2500 wxT("failed to deselect a property (editor probably had invalid value)") );
2503 m_pState
->m_selected
= oldSelection
;
2505 bool orig_mode
= m_pState
->IsInNonCatMode();
2506 bool new_state_mode
= pNewState
->IsInNonCatMode();
2508 m_pState
= pNewState
;
2511 int pgWidth
= GetClientSize().x
;
2512 if ( HasVirtualWidth() )
2514 int minWidth
= pgWidth
;
2515 if ( pNewState
->m_width
< minWidth
)
2517 pNewState
->m_width
= minWidth
;
2518 pNewState
->CheckColumnWidths();
2524 // Just in case, fully re-center splitter
2525 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2526 pNewState
->m_fSplitterX
= -1.0;
2528 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2531 m_propHover
= (wxPGProperty
*) NULL
;
2533 // If necessary, convert state to correct mode.
2534 if ( orig_mode
!= new_state_mode
)
2536 // This should refresh as well.
2537 EnableCategories( orig_mode
?false:true );
2539 else if ( !m_frozen
)
2541 // Refresh, if not frozen.
2542 if ( m_pState
->m_itemsAdded
)
2543 PrepareAfterItemsAdded();
2546 if ( m_pState
->m_selected
)
2547 DoSelectProperty( m_pState
->m_selected
);
2549 RecalculateVirtualSize(0);
2553 m_pState
->m_itemsAdded
= 1;
2556 // -----------------------------------------------------------------------
2558 void wxPropertyGrid::SortChildren( wxPGPropArg id
)
2560 wxPG_PROP_ARG_CALL_PROLOG()
2562 m_pState
->SortChildren( p
);
2565 // -----------------------------------------------------------------------
2567 void wxPropertyGrid::Sort()
2569 bool selRes
= ClearSelection(); // This must be before state clear
2570 wxPG_CHECK_RET_DBG( selRes
,
2571 wxT("failed to deselect a property (editor probably had invalid value)") );
2576 // -----------------------------------------------------------------------
2578 // Call to SetSplitterPosition will always disable splitter auto-centering
2579 // if parent window is shown.
2580 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2582 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2585 wxPropertyGridPageState
* state
= m_pState
;
2587 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2592 CorrectEditorWidgetSizeX();
2598 // -----------------------------------------------------------------------
2600 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2602 SetSplitterPosition( m_width
/2, true );
2603 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2604 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2607 // -----------------------------------------------------------------------
2608 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2609 // -----------------------------------------------------------------------
2611 // Returns nearest paint visible property (such that will be painted unless
2612 // window is scrolled or resized). If given property is paint visible, then
2613 // it itself will be returned
2614 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2616 int vx
,vy1
;// Top left corner of client
2617 GetViewStart(&vx
,&vy1
);
2618 vy1
*= wxPG_PIXELS_PER_UNIT
;
2620 int vy2
= vy1
+ m_height
;
2621 int propY
= p
->GetY2(m_lineHeight
);
2623 if ( (propY
+ m_lineHeight
) < vy1
)
2626 return DoGetItemAtY( vy1
);
2628 else if ( propY
> vy2
)
2631 return DoGetItemAtY( vy2
);
2634 // Itself paint visible
2639 // -----------------------------------------------------------------------
2640 // Methods related to change in value, value modification and sending events
2641 // -----------------------------------------------------------------------
2643 // commits any changes in editor of selected property
2644 // return true if validation did not fail
2645 // flags are same as with DoSelectProperty
2646 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2648 // Committing already?
2649 if ( m_inCommitChangesFromEditor
)
2652 // Don't do this if already processing editor event. It might
2653 // induce recursive dialogs and crap like that.
2654 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2656 if ( m_inDoPropertyChanged
)
2663 IsEditorsValueModified() &&
2664 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2667 m_inCommitChangesFromEditor
= 1;
2669 wxVariant
variant(m_selected
->GetValueRef());
2670 bool valueIsPending
= false;
2672 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2673 // due to another window getting focus
2674 wxWindow
* oldFocus
= m_curFocused
;
2676 bool validationFailure
= false;
2677 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2679 m_chgInfo_changedProperty
= NULL
;
2681 // If truly modified, schedule value as pending.
2682 if ( m_selected
->GetEditorClass()->GetValueFromControl( variant
, m_selected
, GetEditorControl() ) )
2684 if ( DoEditorValidate() &&
2685 PerformValidation(m_selected
, variant
) )
2687 valueIsPending
= true;
2691 validationFailure
= true;
2696 EditorsValueWasNotModified();
2701 m_inCommitChangesFromEditor
= 0;
2703 if ( validationFailure
&& !forceSuccess
)
2707 oldFocus
->SetFocus();
2708 m_curFocused
= oldFocus
;
2711 res
= OnValidationFailure(m_selected
, variant
);
2713 // Now prevent further validation failure messages
2716 EditorsValueWasNotModified();
2717 OnValidationFailureReset(m_selected
);
2720 else if ( valueIsPending
)
2722 DoPropertyChanged( m_selected
, flags
);
2723 EditorsValueWasNotModified();
2732 // -----------------------------------------------------------------------
2734 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
,
2738 // Runs all validation functionality.
2739 // Returns true if value passes all tests.
2742 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2744 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2746 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2751 // Adapt list to child values, if necessary
2752 wxVariant listValue
= pendingValue
;
2753 wxVariant
* pPendingValue
= &pendingValue
;
2754 wxVariant
* pList
= NULL
;
2756 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2757 // string value, then we need treat as it was changed instead
2758 // (or, in addition, as is the case with composite string parent).
2759 // This includes creating list variant for child values.
2761 wxPGProperty
* pwc
= p
->GetParent();
2762 wxPGProperty
* changedProperty
= p
;
2763 wxPGProperty
* baseChangedProperty
= changedProperty
;
2764 wxVariant bcpPendingList
;
2766 listValue
= pendingValue
;
2767 listValue
.SetName(p
->GetBaseName());
2770 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2772 wxVariantList tempList
;
2773 wxVariant
lv(tempList
, pwc
->GetBaseName());
2774 lv
.Append(listValue
);
2776 pPendingValue
= &listValue
;
2778 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2780 baseChangedProperty
= pwc
;
2781 bcpPendingList
= lv
;
2784 changedProperty
= pwc
;
2785 pwc
= pwc
->GetParent();
2789 wxPGProperty
* evtChangingProperty
= changedProperty
;
2791 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2793 value
= *pPendingValue
;
2797 // Convert list to child values
2798 pList
= pPendingValue
;
2799 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2802 wxVariant evtChangingValue
= value
;
2804 if ( flags
& SendEvtChanging
)
2806 // FIXME: After proper ValueToString()s added, remove
2807 // this. It is just a temporary fix, as evt_changing
2808 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2809 // (unless it is selected, and textctrl editor is open).
2810 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2812 evtChangingProperty
= baseChangedProperty
;
2813 if ( evtChangingProperty
!= p
)
2815 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2819 evtChangingValue
= pendingValue
;
2823 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2825 if ( changedProperty
== m_selected
)
2827 wxWindow
* editor
= GetEditorControl();
2828 wxASSERT( editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2829 evtChangingValue
= wxStaticCast(editor
, wxTextCtrl
)->GetValue();
2833 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2838 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2839 m_chgInfo_changedProperty
= changedProperty
;
2840 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2841 m_chgInfo_pendingValue
= value
;
2844 m_chgInfo_valueList
= *pList
;
2846 m_chgInfo_valueList
.MakeNull();
2848 // If changedProperty is not property which value was edited,
2849 // then call wxPGProperty::ValidateValue() for that as well.
2850 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2852 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2856 if ( flags
& SendEvtChanging
)
2858 // SendEvent returns true if event was vetoed
2859 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
, &evtChangingValue
, 0 ) )
2863 if ( flags
& IsStandaloneValidation
)
2865 // If called in 'generic' context, we need to reset
2866 // m_chgInfo_changedProperty and write back translated value.
2867 m_chgInfo_changedProperty
= NULL
;
2868 pendingValue
= value
;
2874 // -----------------------------------------------------------------------
2876 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2878 if ( !msg
.length() )
2882 if ( !wxPGGlobalVars
->m_offline
)
2884 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2887 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2890 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
2893 pStatusBar
->SetStatusText(msg
);
2901 ::wxMessageBox(msg
, _T("Property Error"));
2904 // -----------------------------------------------------------------------
2906 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
2908 int vfb
= m_validationInfo
.m_failureBehavior
;
2910 if ( vfb
& wxPG_VFB_BEEP
)
2913 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
2914 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
2916 wxASSERT_MSG( !property
->GetCell(0) && !property
->GetCell(1),
2917 wxT("Currently wxPG_VFB_MARK_CELL only works with properties with standard first two cells") );
2919 if ( !property
->GetCell(0) && !property
->GetCell(1) )
2921 wxColour vfbFg
= *wxWHITE
;
2922 wxColour vfbBg
= *wxRED
;
2923 property
->SetCell(0, new wxPGCell(property
->GetLabel(), wxNullBitmap
, vfbFg
, vfbBg
));
2924 property
->SetCell(1, new wxPGCell(property
->GetDisplayedString(), wxNullBitmap
, vfbFg
, vfbBg
));
2926 DrawItemAndChildren(property
);
2928 if ( property
== m_selected
)
2930 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2932 wxWindow
* editor
= GetEditorControl();
2935 editor
->SetForegroundColour(vfbFg
);
2936 editor
->SetBackgroundColour(vfbBg
);
2942 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
2944 wxString msg
= m_validationInfo
.m_failureMessage
;
2946 if ( !msg
.length() )
2947 msg
= _T("You have entered invalid value. Press ESC to cancel editing.");
2949 DoShowPropertyError(property
, msg
);
2952 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
2955 // -----------------------------------------------------------------------
2957 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
2959 int vfb
= m_validationInfo
.m_failureBehavior
;
2961 if ( vfb
& wxPG_VFB_MARK_CELL
)
2963 property
->SetCell(0, NULL
);
2964 property
->SetCell(1, NULL
);
2966 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2968 if ( property
== m_selected
&& GetEditorControl() )
2970 // Calling this will recreate the control, thus resetting its colour
2971 RefreshProperty(property
);
2975 DrawItemAndChildren(property
);
2980 // -----------------------------------------------------------------------
2982 // flags are same as with DoSelectProperty
2983 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
2985 if ( m_inDoPropertyChanged
)
2988 wxWindow
* editor
= GetEditorControl();
2990 m_pState
->m_anyModified
= 1;
2992 m_inDoPropertyChanged
= 1;
2994 // Maybe need to update control
2995 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
2997 // These values were calculated in PerformValidation()
2998 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
2999 wxVariant value
= m_chgInfo_pendingValue
;
3001 wxPGProperty
* topPaintedProperty
= changedProperty
;
3003 while ( !topPaintedProperty
->IsCategory() &&
3004 !topPaintedProperty
->IsRoot() )
3006 topPaintedProperty
= topPaintedProperty
->GetParent();
3009 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
3011 // Set as Modified (not if dragging just began)
3012 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
3014 p
->m_flags
|= wxPG_PROP_MODIFIED
;
3015 if ( p
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3018 SetCurControlBoldFont();
3024 // Propagate updates to parent(s)
3026 wxPGProperty
* prevPwc
= NULL
;
3028 while ( prevPwc
!= topPaintedProperty
)
3030 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3032 if ( pwc
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3035 SetCurControlBoldFont();
3039 pwc
= pwc
->GetParent();
3042 // Draw the actual property
3043 DrawItemAndChildren( topPaintedProperty
);
3046 // If value was set by wxPGProperty::OnEvent, then update the editor
3048 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3051 p
->GetEditorClass()->UpdateControl(p
, editor
);
3055 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3056 if ( m_wndEditor
) m_wndEditor
->Refresh();
3057 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3062 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3064 // If top parent has composite string value, then send to child parents,
3065 // starting from baseChangedProperty.
3066 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3068 pwc
= m_chgInfo_baseChangedProperty
;
3070 while ( pwc
!= changedProperty
)
3072 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
, selFlags
);
3073 pwc
= pwc
->GetParent();
3077 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
, selFlags
);
3079 m_inDoPropertyChanged
= 0;
3084 // -----------------------------------------------------------------------
3086 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3088 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3090 m_chgInfo_changedProperty
= NULL
;
3092 if ( PerformValidation(p
, newValue
) )
3094 DoPropertyChanged(p
);
3099 OnValidationFailure(p
, newValue
);
3105 // -----------------------------------------------------------------------
3107 wxVariant
wxPropertyGrid::GetPendingEditedValue()
3109 wxPGProperty
* prop
= GetSelectedProperty();
3112 return wxNullVariant
;
3114 wxTextCtrl
* tc
= GetEditorTextCtrl();
3115 wxVariant value
= prop
->GetValue();
3117 if ( !tc
|| !IsEditorsValueModified() )
3120 if ( !prop
->StringToValue(value
, tc
->GetValue()) )
3123 if ( !PerformValidation(prop
, value
, IsStandaloneValidation
) )
3124 return prop
->GetValue();
3129 // -----------------------------------------------------------------------
3131 // Runs wxValidator for the selected property
3132 bool wxPropertyGrid::DoEditorValidate()
3137 // -----------------------------------------------------------------------
3139 bool wxPropertyGrid::ProcessEvent(wxEvent
& event
)
3141 wxWindow
* wnd
= (wxWindow
*) event
.GetEventObject();
3142 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxWindow
)) )
3144 wxWindow
* parent
= wnd
->GetParent();
3147 (parent
== m_canvas
||
3148 parent
->GetParent() == m_canvas
) )
3150 OnCustomEditorEvent((wxCommandEvent
&)event
);
3154 return wxPanel::ProcessEvent(event
);
3157 // -----------------------------------------------------------------------
3159 // NB: It may really not be wxCommandEvent - must check if necessary
3161 void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent
&event
)
3163 wxPGProperty
* selected
= m_selected
;
3165 // Somehow, event is handled after property has been deselected.
3166 // Possibly, but very rare.
3170 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
3173 wxVariant
pendingValue(selected
->GetValueRef());
3174 wxWindow
* wnd
= GetEditorControl();
3176 bool wasUnspecified
= selected
->IsValueUnspecified();
3177 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3179 bool valueIsPending
= false;
3181 m_chgInfo_changedProperty
= NULL
;
3183 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
3186 // Filter out excess wxTextCtrl modified events
3187 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
3189 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3191 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3193 wxString newTcValue
= tc
->GetValue();
3194 if ( m_prevTcValue
== newTcValue
)
3197 m_prevTcValue
= newTcValue
;
3200 SetInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3202 bool validationFailure
= false;
3203 bool buttonWasHandled
= false;
3206 // Try common button handling
3207 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3209 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3213 buttonWasHandled
= true;
3214 // Store as res2, as previously (and still currently alternatively)
3215 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3216 // in wxPGProperty::OnEvent().
3217 adapter
->ShowDialog( this, selected
);
3222 if ( !buttonWasHandled
)
3226 // First call editor class' event handler.
3227 const wxPGEditor
* editor
= selected
->GetEditorClass();
3229 if ( editor
->OnEvent( this, selected
, wnd
, event
) )
3231 // If changes, validate them
3232 if ( DoEditorValidate() )
3234 if ( editor
->GetValueFromControl( pendingValue
, m_selected
, wnd
) )
3235 valueIsPending
= true;
3239 validationFailure
= true;
3244 // Then the property's custom handler (must be always called, unless
3245 // validation failed).
3246 if ( !validationFailure
)
3247 buttonWasHandled
= selected
->OnEvent( this, wnd
, event
);
3250 // SetValueInEvent(), as called in one of the functions referred above
3251 // overrides editor's value.
3252 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3254 valueIsPending
= true;
3255 pendingValue
= m_changeInEventValue
;
3256 selFlags
|= wxPG_SEL_DIALOGVAL
;
3259 if ( !validationFailure
&& valueIsPending
)
3260 if ( !PerformValidation(m_selected
, pendingValue
) )
3261 validationFailure
= true;
3263 if ( validationFailure
)
3265 OnValidationFailure(selected
, pendingValue
);
3267 else if ( valueIsPending
)
3269 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3271 DoPropertyChanged(selected
, selFlags
);
3272 EditorsValueWasNotModified();
3274 // Regardless of editor type, unfocus editor on
3275 // text-editing related enter press.
3276 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3283 // No value after all
3285 // Regardless of editor type, unfocus editor on
3286 // text-editing related enter press.
3287 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3292 // Let unhandled button click events go to the parent
3293 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3295 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3296 GetEventHandler()->AddPendingEvent(evt
);
3300 ClearInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3303 // -----------------------------------------------------------------------
3304 // wxPropertyGrid editor control helper methods
3305 // -----------------------------------------------------------------------
3307 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3309 int itemy
= p
->GetY2(m_lineHeight
);
3311 int cust_img_space
= 0;
3312 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3313 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3315 // TODO: If custom image detection changes from current, change this.
3316 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
/*p->m_flags & wxPG_PROP_CUSTOMIMAGE*/ )
3318 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3319 int imwid
= p
->OnMeasureImage().x
;
3320 if ( imwid
< 1 ) imwid
= wxPG_CUSTOM_IMAGE_WIDTH
;
3321 cust_img_space
= imwid
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
3326 splitterX
+cust_img_space
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3328 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-cust_img_space
-1,
3333 // -----------------------------------------------------------------------
3335 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3337 wxSize sz
= GetImageSize(p
, item
);
3338 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3339 wxPG_CUSTOM_IMAGE_SPACINGY
,
3344 // return size of custom paint image
3345 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3347 // If called with NULL property, then return default image
3348 // size for properties that use image.
3350 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3352 wxSize cis
= p
->OnMeasureImage(item
);
3354 int choiceCount
= p
->m_choices
.GetCount();
3355 int comVals
= p
->GetDisplayedCommonValueCount();
3356 if ( item
>= choiceCount
&& comVals
> 0 )
3358 unsigned int cvi
= item
-choiceCount
;
3359 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3361 else if ( item
>= 0 && choiceCount
== 0 )
3362 return wxSize(0, 0);
3367 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3372 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3379 // -----------------------------------------------------------------------
3381 // takes scrolling into account
3382 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3385 GetViewStart(&vx
,&vy
);
3386 vy
*=wxPG_PIXELS_PER_UNIT
;
3387 vx
*=wxPG_PIXELS_PER_UNIT
;
3390 ClientToScreen( px
, py
);
3393 // -----------------------------------------------------------------------
3395 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3398 GetViewStart(&pt2
.x
,&pt2
.y
);
3399 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3400 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3404 return m_pState
->HitTest(pt2
);
3407 // -----------------------------------------------------------------------
3409 // custom set cursor
3410 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3412 if ( type
== m_curcursor
&& !override
) return;
3414 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3416 if ( type
== wxCURSOR_SIZEWE
)
3417 cursor
= m_cursorSizeWE
;
3419 m_canvas
->SetCursor( *cursor
);
3424 // -----------------------------------------------------------------------
3425 // wxPropertyGrid property selection
3426 // -----------------------------------------------------------------------
3428 // Setups event handling for child control
3429 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3431 wxWindowID id
= argWnd
->GetId();
3433 if ( argWnd
== m_wndEditor
)
3435 argWnd
->Connect(id
, wxEVT_MOTION
,
3436 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3438 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3439 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3441 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3442 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3444 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3445 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3447 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3448 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3450 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3451 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3453 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3454 wxCharEventHandler(wxPropertyGrid::OnChildKeyDown
),
3459 void wxPropertyGrid::FreeEditors()
3461 // Do not free editors immediately if processing events
3464 m_wndEditor2
->Hide();
3465 wxPendingDelete
.Append( m_wndEditor2
);
3466 m_wndEditor2
= (wxWindow
*) NULL
;
3471 m_wndEditor
->Hide();
3472 wxPendingDelete
.Append( m_wndEditor
);
3473 m_wndEditor
= (wxWindow
*) NULL
;
3477 // Call with NULL to de-select property
3478 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3480 wxPanel
* canvas
= GetPanel();
3484 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3485 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3487 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3490 if ( m_inDoSelectProperty
)
3493 m_inDoSelectProperty
= 1;
3495 wxPGProperty
* prev
= m_selected
;
3499 m_inDoSelectProperty
= 0;
3505 wxPrintf( "Selected %s\n", m_selected->GetClassInfo()->GetClassName() );
3507 wxPrintf( "None selected\n" );
3510 wxPrintf( "P = %s\n", p->GetClassInfo()->GetClassName() );
3512 wxPrintf( "P = NULL\n" );
3515 // If we are frozen, then just set the values.
3518 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3519 m_editorFocused
= 0;
3522 m_pState
->m_selected
= p
;
3524 // If frozen, always free controls. But don't worry, as Thaw will
3525 // recall SelectProperty to recreate them.
3528 // Prevent any further selection measures in this call
3529 p
= (wxPGProperty
*) NULL
;
3534 if ( m_selected
== p
&& !(flags
& wxPG_SEL_FORCE
) )
3536 // Only set focus if not deselecting
3539 if ( flags
& wxPG_SEL_FOCUS
)
3543 m_wndEditor
->SetFocus();
3544 m_editorFocused
= 1;
3553 m_inDoSelectProperty
= 0;
3558 // First, deactivate previous
3562 OnValidationFailureReset(m_selected
);
3564 // Must double-check if this is an selected in case of forceswitch
3567 if ( !CommitChangesFromEditor(flags
) )
3569 // Validation has failed, so we can't exit the previous editor
3570 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3571 // _("Invalid Value"),wxOK|wxICON_ERROR);
3572 m_inDoSelectProperty
= 0;
3580 m_selected
= (wxPGProperty
*) NULL
;
3581 m_pState
->m_selected
= (wxPGProperty
*) NULL
;
3583 // We need to always fully refresh the grid here
3586 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3587 EditorsValueWasNotModified();
3590 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3593 // Then, activate the one given.
3596 int propY
= p
->GetY2(m_lineHeight
);
3598 int splitterX
= GetSplitterPosition();
3599 m_editorFocused
= 0;
3601 m_pState
->m_selected
= p
;
3602 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3604 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3606 wxASSERT( m_wndEditor
== (wxWindow
*) NULL
);
3608 // Do we need OnMeasureCalls?
3609 wxSize imsz
= p
->OnMeasureImage();
3612 // Only create editor for non-disabled non-caption
3613 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3615 // do this for non-caption items
3619 // Do we need to paint the custom image, if any?
3620 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3621 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3622 !p
->GetEditorClass()->CanContainCustomImage()
3624 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3626 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3627 wxPoint goodPos
= grect
.GetPosition();
3628 #if wxPG_CREATE_CONTROLS_HIDDEN
3629 int coord_adjust
= m_height
- goodPos
.y
;
3630 goodPos
.y
+= coord_adjust
;
3633 const wxPGEditor
* editor
= p
->GetEditorClass();
3634 wxCHECK_MSG(editor
, false,
3635 wxT("NULL editor class not allowed"));
3637 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3639 wxPGWindowList wndList
= editor
->CreateControls(this,
3644 m_wndEditor
= wndList
.m_primary
;
3645 m_wndEditor2
= wndList
.m_secondary
;
3646 wxWindow
* primaryCtrl
= GetEditorControl();
3649 // Essentially, primaryCtrl == m_wndEditor
3652 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3653 // value is drawn as normal, and m_wndEditor2 is assumed
3654 // to be a right-aligned button that triggers a separate editorCtrl
3659 wxASSERT_MSG( m_wndEditor
->GetParent() == canvas
,
3660 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3662 // Set validator, if any
3663 #if wxUSE_VALIDATORS
3664 wxValidator
* validator
= p
->GetValidator();
3666 primaryCtrl
->SetValidator(*validator
);
3669 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3670 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3672 // If it has modified status, use bold font
3673 // (must be done before capturing m_ctrlXAdjust)
3674 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3675 SetCurControlBoldFont();
3678 // Fix TextCtrl indentation
3679 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3680 wxTextCtrl
* tc
= NULL
;
3681 if ( primaryCtrl
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3682 tc
= ((wxOwnerDrawnComboBox
*)primaryCtrl
)->GetTextCtrl();
3684 tc
= wxDynamicCast(primaryCtrl
, wxTextCtrl
);
3686 ::SendMessage(GetHwndOf(tc
), EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0, 0));
3689 // Store x relative to splitter (we'll need it).
3690 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3692 // Check if background clear is not necessary
3693 wxPoint pos
= m_wndEditor
->GetPosition();
3694 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3696 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3699 m_wndEditor
->SetSizeHints(3, 3);
3701 #if wxPG_CREATE_CONTROLS_HIDDEN
3702 m_wndEditor
->Show(false);
3703 m_wndEditor
->Freeze();
3705 goodPos
= m_wndEditor
->GetPosition();
3706 goodPos
.y
-= coord_adjust
;
3707 m_wndEditor
->Move( goodPos
);
3710 SetupChildEventHandling(primaryCtrl
);
3712 // Focus and select all (wxTextCtrl, wxComboBox etc)
3713 if ( flags
& wxPG_SEL_FOCUS
)
3715 primaryCtrl
->SetFocus();
3717 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3723 wxASSERT_MSG( m_wndEditor2
->GetParent() == canvas
,
3724 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3726 // Get proper id for wndSecondary
3727 m_wndSecId
= m_wndEditor2
->GetId();
3728 wxWindowList children
= m_wndEditor2
->GetChildren();
3729 wxWindowList::iterator node
= children
.begin();
3730 if ( node
!= children
.end() )
3731 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3733 m_wndEditor2
->SetSizeHints(3,3);
3735 #if wxPG_CREATE_CONTROLS_HIDDEN
3736 wxRect sec_rect
= m_wndEditor2
->GetRect();
3737 sec_rect
.y
-= coord_adjust
;
3739 // Fine tuning required to fix "oversized"
3740 // button disappearance bug.
3741 if ( sec_rect
.y
< 0 )
3743 sec_rect
.height
+= sec_rect
.y
;
3746 m_wndEditor2
->SetSize( sec_rect
);
3748 m_wndEditor2
->Show();
3750 SetupChildEventHandling(m_wndEditor2
);
3752 // If no primary editor, focus to button to allow
3753 // it to interprete ENTER etc.
3754 // NOTE: Due to problems focusing away from it, this
3755 // has been disabled.
3757 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3758 m_wndEditor2->SetFocus();
3762 if ( flags
& wxPG_SEL_FOCUS
)
3763 m_editorFocused
= 1;
3768 // Make sure focus is in grid canvas (important for wxGTK, at least)
3772 EditorsValueWasNotModified();
3774 // If it's inside collapsed section, expand parent, scroll, etc.
3775 // Also, if it was partially visible, scroll it into view.
3776 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3781 #if wxPG_CREATE_CONTROLS_HIDDEN
3782 m_wndEditor
->Thaw();
3784 m_wndEditor
->Show(true);
3791 // Make sure focus is in grid canvas
3795 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3801 // Show help text in status bar.
3802 // (if found and grid not embedded in manager with help box and
3803 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3806 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3808 wxStatusBar
* statusbar
= (wxStatusBar
*) NULL
;
3809 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3811 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3813 statusbar
= frame
->GetStatusBar();
3818 const wxString
* pHelpString
= (const wxString
*) NULL
;
3822 pHelpString
= &p
->GetHelpString();
3823 if ( pHelpString
->length() )
3825 // Set help box text.
3826 statusbar
->SetStatusText( *pHelpString
);
3827 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3831 if ( (!pHelpString
|| !pHelpString
->length()) &&
3832 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3834 // Clear help box - but only if it was written
3835 // by us at previous time.
3836 statusbar
->SetStatusText( m_emptyString
);
3837 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3843 m_inDoSelectProperty
= 0;
3845 // call wx event handler (here so that it also occurs on deselection)
3846 SendEvent( wxEVT_PG_SELECTED
, m_selected
, NULL
, flags
);
3851 // -----------------------------------------------------------------------
3853 bool wxPropertyGrid::UnfocusEditor()
3855 if ( !m_selected
|| !m_wndEditor
|| m_frozen
)
3858 if ( !CommitChangesFromEditor(0) )
3862 DrawItem(m_selected
);
3867 // -----------------------------------------------------------------------
3869 // This method is not inline because it called dozens of times
3870 // (i.e. two-arg function calls create smaller code size).
3871 bool wxPropertyGrid::DoClearSelection()
3873 return DoSelectProperty((wxPGProperty
*)NULL
);
3876 // -----------------------------------------------------------------------
3877 // wxPropertyGrid expand/collapse state
3878 // -----------------------------------------------------------------------
3880 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
3882 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
3884 // If active editor was inside collapsed section, then disable it
3885 if ( m_selected
&& m_selected
->IsSomeParent (p
) )
3887 if ( !ClearSelection() )
3891 // Store dont-center-splitter flag 'cause we need to temporarily set it
3892 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3893 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3895 bool res
= m_pState
->DoCollapse(pwc
);
3900 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
3902 RecalculateVirtualSize();
3904 // Redraw etc. only if collapsed was visible.
3905 if (pwc
->IsVisible() &&
3907 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
3909 // When item is collapsed so that scrollbar would move,
3910 // graphics mess is about (unless we redraw everything).
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::DoExpand( wxPGProperty
* p
, bool sendEvents
)
3925 wxCHECK_MSG( p
, false, wxT("invalid property id") );
3927 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
3929 // Store dont-center-splitter flag 'cause we need to temporarily set it
3930 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3931 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3933 bool res
= m_pState
->DoExpand(pwc
);
3938 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
3940 RecalculateVirtualSize();
3942 // Redraw etc. only if expanded was visible.
3943 if ( pwc
->IsVisible() && !m_frozen
&&
3944 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
3948 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3951 DrawItems(pwc
, NULL
);
3956 // Clear dont-center-splitter flag if it wasn't set
3957 m_iFlags
= m_iFlags
& ~(wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3962 // -----------------------------------------------------------------------
3964 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
3967 return m_pState
->DoHideProperty(p
, hide
, flags
);
3970 ( m_selected
== p
|| m_selected
->IsSomeParent(p
) )
3973 if ( !ClearSelection() )
3977 m_pState
->DoHideProperty(p
, hide
, flags
);
3979 RecalculateVirtualSize();
3986 // -----------------------------------------------------------------------
3987 // wxPropertyGrid size related methods
3988 // -----------------------------------------------------------------------
3990 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
3992 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
3996 // If virtual height was changed, then recalculate editor control position(s)
3997 if ( m_pState
->m_vhCalcPending
)
3998 CorrectEditorWidgetPosY();
4000 m_pState
->EnsureVirtualHeight();
4003 int by1
= m_pState
->GetVirtualHeight();
4004 int by2
= m_pState
->GetActualVirtualHeight();
4007 wxString s
= wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1
, by2
);
4008 wxASSERT_MSG( false,
4014 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4016 int x
= m_pState
->m_width
;
4017 int y
= m_pState
->m_virtualHeight
;
4020 GetClientSize(&width
,&height
);
4022 // Now adjust virtual size.
4023 SetVirtualSize(x
, y
);
4029 // Adjust scrollbars
4030 if ( HasVirtualWidth() )
4032 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
4033 xPos
= GetScrollPos( wxHORIZONTAL
);
4036 if ( forceXPos
!= -1 )
4039 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4042 int yAmount
= (y
+wxPG_PIXELS_PER_UNIT
+2)/wxPG_PIXELS_PER_UNIT
;
4043 int yPos
= GetScrollPos( wxVERTICAL
);
4045 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4046 xAmount
, yAmount
, xPos
, yPos
, true );
4048 // Must re-get size now
4049 GetClientSize(&width
,&height
);
4051 if ( !HasVirtualWidth() )
4053 m_pState
->SetVirtualWidth(width
);
4060 m_canvas
->SetSize( x
, y
);
4062 m_pState
->CheckColumnWidths();
4065 CorrectEditorWidgetSizeX();
4067 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4070 // -----------------------------------------------------------------------
4072 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4074 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4078 GetClientSize(&width
,&height
);
4083 #if wxPG_DOUBLE_BUFFER
4084 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4086 int dblh
= (m_lineHeight
*2);
4087 if ( !m_doubleBuffer
)
4089 // Create double buffer bitmap to draw on, if none
4090 int w
= (width
>250)?width
:250;
4091 int h
= height
+ dblh
;
4093 m_doubleBuffer
= new wxBitmap( w
, h
);
4097 int w
= m_doubleBuffer
->GetWidth();
4098 int h
= m_doubleBuffer
->GetHeight();
4100 // Double buffer must be large enough
4101 if ( w
< width
|| h
< (height
+dblh
) )
4103 if ( w
< width
) w
= width
;
4104 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4105 delete m_doubleBuffer
;
4106 m_doubleBuffer
= new wxBitmap( w
, h
);
4113 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4114 m_ncWidth
= event
.GetSize().x
;
4118 if ( m_pState
->m_itemsAdded
)
4119 PrepareAfterItemsAdded();
4121 // Without this, virtual size (atleast under wxGTK) will be skewed
4122 RecalculateVirtualSize();
4128 // -----------------------------------------------------------------------
4130 void wxPropertyGrid::SetVirtualWidth( int width
)
4134 // Disable virtual width
4135 width
= GetClientSize().x
;
4136 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4140 // Enable virtual width
4141 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4143 m_pState
->SetVirtualWidth( width
);
4146 void wxPropertyGrid::SetFocusOnCanvas()
4148 m_canvas
->SetFocusIgnoringChildren();
4149 m_editorFocused
= 0;
4152 // -----------------------------------------------------------------------
4153 // wxPropertyGrid mouse event handling
4154 // -----------------------------------------------------------------------
4156 // selFlags uses same values DoSelectProperty's flags
4157 // Returns true if event was vetoed.
4158 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
, wxVariant
* pValue
, unsigned int WXUNUSED(selFlags
) )
4160 // Send property grid event of specific type and with specific property
4161 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4162 evt
.SetPropertyGrid(this);
4163 evt
.SetEventObject(m_eventObject
);
4167 evt
.SetCanVeto(true);
4168 evt
.SetupValidationInfo();
4169 m_validationInfo
.m_pValue
= pValue
;
4171 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
4173 evtHandler
->ProcessEvent(evt
);
4175 return evt
.WasVetoed();
4178 // -----------------------------------------------------------------------
4180 // Return false if should be skipped
4181 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4185 // Need to set focus?
4186 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4191 wxPropertyGridPageState
* state
= m_pState
;
4193 int splitterHitOffset
;
4194 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4196 wxPGProperty
* p
= DoGetItemAtY(y
);
4200 int depth
= (int)p
->GetDepth() - 1;
4202 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4204 if ( x
>= marginEnds
)
4208 if ( p
->IsCategory() )
4210 // This is category.
4211 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4213 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4215 // Expand, collapse, activate etc. if click on text or left of splitter.
4218 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4223 if ( !DoSelectProperty( p
) )
4226 // On double-click, expand/collapse.
4227 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4229 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4230 else DoExpand( p
, true );
4234 else if ( splitterHit
== -1 )
4237 unsigned int selFlag
= 0;
4238 if ( columnHit
== 1 )
4240 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4241 selFlag
= wxPG_SEL_FOCUS
;
4243 if ( !DoSelectProperty( p
, selFlag
) )
4246 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4248 if ( p
->GetChildCount() && !p
->IsCategory() )
4249 // On double-click, expand/collapse.
4250 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4252 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4253 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4254 else DoExpand( p
, true );
4261 // click on splitter
4262 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4264 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4266 // Double-clicking the splitter causes auto-centering
4267 CenterSplitter( true );
4269 else if ( m_dragStatus
== 0 )
4272 // Begin draggin the splitter
4276 // Changes must be committed here or the
4277 // value won't be drawn correctly
4278 if ( !CommitChangesFromEditor() )
4281 m_wndEditor
->Show ( false );
4284 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4286 m_canvas
->CaptureMouse();
4287 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4291 m_draggedSplitter
= splitterHit
;
4292 m_dragOffset
= splitterHitOffset
;
4294 wxClientDC
dc(m_canvas
);
4296 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4297 // Fixes button disappearance bug
4299 m_wndEditor2
->Show ( false );
4302 m_startingSplitterX
= x
- splitterHitOffset
;
4310 if ( p
->GetChildCount() )
4312 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4314 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4316 int y2
= y
% m_lineHeight
;
4317 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4319 // On click on expander button, expand/collapse
4320 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4321 DoCollapse( p
, true );
4323 DoExpand( p
, true );
4332 // -----------------------------------------------------------------------
4334 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4335 wxMouseEvent
& WXUNUSED(event
) )
4339 // Select property here as well
4340 wxPGProperty
* p
= m_propHover
;
4341 if ( p
!= m_selected
)
4342 DoSelectProperty( p
);
4344 // Send right click event.
4345 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4352 // -----------------------------------------------------------------------
4354 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4355 wxMouseEvent
& WXUNUSED(event
) )
4359 // Select property here as well
4360 wxPGProperty
* p
= m_propHover
;
4362 if ( p
!= m_selected
)
4363 DoSelectProperty( p
);
4365 // Send double-click event.
4366 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4373 // -----------------------------------------------------------------------
4375 #if wxPG_SUPPORT_TOOLTIPS
4377 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4379 if ( tipString
.length() )
4381 m_canvas
->SetToolTip(tipString
);
4385 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4386 m_canvas
->SetToolTip( m_emptyString
);
4388 m_canvas
->SetToolTip( NULL
);
4393 #endif // #if wxPG_SUPPORT_TOOLTIPS
4395 // -----------------------------------------------------------------------
4397 // Return false if should be skipped
4398 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4400 // Safety check (needed because mouse capturing may
4401 // otherwise freeze the control)
4402 if ( m_dragStatus
> 0 && !event
.Dragging() )
4404 HandleMouseUp(x
,y
,event
);
4407 wxPropertyGridPageState
* state
= m_pState
;
4409 int splitterHitOffset
;
4410 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4411 int splitterX
= x
- splitterHitOffset
;
4413 if ( m_dragStatus
> 0 )
4415 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4416 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4419 int newSplitterX
= x
- m_dragOffset
;
4420 int splitterX
= x
- splitterHitOffset
;
4422 // Splitter redraw required?
4423 if ( newSplitterX
!= splitterX
)
4426 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4427 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4428 state
->m_fSplitterX
= (float) newSplitterX
;
4431 CorrectEditorWidgetSizeX();
4445 int ih
= m_lineHeight
;
4448 #if wxPG_SUPPORT_TOOLTIPS
4449 wxPGProperty
* prevHover
= m_propHover
;
4450 unsigned char prevSide
= m_mouseSide
;
4452 int curPropHoverY
= y
- (y
% ih
);
4454 // On which item it hovers
4455 if ( ( !m_propHover
)
4457 ( m_propHover
&& ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) ) )
4460 // Mouse moves on another property
4462 m_propHover
= DoGetItemAtY(y
);
4463 m_propHoverY
= curPropHoverY
;
4466 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4469 #if wxPG_SUPPORT_TOOLTIPS
4470 // Store which side we are on
4472 if ( columnHit
== 1 )
4474 else if ( columnHit
== 0 )
4478 // If tooltips are enabled, show label or value as a tip
4479 // in case it doesn't otherwise show in full length.
4481 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4483 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4485 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4487 if ( m_propHover
&& !m_propHover
->IsCategory() )
4490 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4492 // Show help string as a tooltip
4493 wxString tipString
= m_propHover
->GetHelpString();
4495 SetToolTip(tipString
);
4499 // Show cropped value string as a tooltip
4503 if ( m_mouseSide
== 1 )
4505 tipString
= m_propHover
->m_label
;
4506 space
= splitterX
-m_marginWidth
-3;
4508 else if ( m_mouseSide
== 2 )
4510 tipString
= m_propHover
->GetDisplayedString();
4512 space
= m_width
- splitterX
;
4513 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4514 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4520 GetTextExtent( tipString
, &tw
, &th
, 0, 0, &m_font
);
4523 SetToolTip( tipString
);
4530 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4531 m_canvas
->SetToolTip( m_emptyString
);
4533 m_canvas
->SetToolTip( NULL
);
4544 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4545 m_canvas
->SetToolTip( m_emptyString
);
4547 m_canvas
->SetToolTip( NULL
);
4555 if ( splitterHit
== -1 ||
4557 HasFlag(wxPG_STATIC_SPLITTER
) )
4559 // hovering on something else
4560 if ( m_curcursor
!= wxCURSOR_ARROW
)
4561 CustomSetCursor( wxCURSOR_ARROW
);
4565 // Do not allow splitter cursor on caption items.
4566 // (also not if we were dragging and its started
4567 // outside the splitter region)
4570 !m_propHover
->IsCategory() &&
4574 // hovering on splitter
4576 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4577 // reliably detected.
4578 //if ( m_curcursor != wxCURSOR_SIZEWE )
4579 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4585 // hovering on something else
4586 if ( m_curcursor
!= wxCURSOR_ARROW
)
4587 CustomSetCursor( wxCURSOR_ARROW
);
4594 // -----------------------------------------------------------------------
4596 // Also handles Leaving event
4597 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4598 wxMouseEvent
&WXUNUSED(event
) )
4600 wxPropertyGridPageState
* state
= m_pState
;
4604 int splitterHitOffset
;
4605 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4607 // No event type check - basicly calling this method should
4608 // just stop dragging.
4609 // Left up after dragged?
4610 if ( m_dragStatus
>= 1 )
4613 // End Splitter Dragging
4615 // DO NOT ENABLE FOLLOWING LINE!
4616 // (it is only here as a reminder to not to do it)
4619 // Disable splitter auto-centering
4620 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4622 // This is necessary to return cursor
4623 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4625 m_canvas
->ReleaseMouse();
4626 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4629 // Set back the default cursor, if necessary
4630 if ( splitterHit
== -1 ||
4633 CustomSetCursor( wxCURSOR_ARROW
);
4638 // Control background needs to be cleared
4639 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && m_selected
)
4640 DrawItem( m_selected
);
4644 m_wndEditor
->Show ( true );
4647 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4648 // Fixes button disappearance bug
4650 m_wndEditor2
->Show ( true );
4653 // This clears the focus.
4654 m_editorFocused
= 0;
4660 // -----------------------------------------------------------------------
4662 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4664 int splitterX
= GetSplitterPosition();
4667 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4671 wxWindow
* wnd
= GetEditorControl();
4673 // Hide popup on clicks
4674 if ( event
.GetEventType() != wxEVT_MOTION
)
4675 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4677 ((wxOwnerDrawnComboBox
*)wnd
)->HidePopup();
4683 if ( wnd
== (wxWindow
*) NULL
|| m_dragStatus
||
4685 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4686 ux
>= (r
.x
+r
.width
) ||
4688 event
.m_y
>= (r
.y
+r
.height
)
4698 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4703 // -----------------------------------------------------------------------
4705 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4708 if ( OnMouseCommon( event
, &x
, &y
) )
4710 HandleMouseClick(x
,y
,event
);
4715 // -----------------------------------------------------------------------
4717 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4720 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4721 HandleMouseRightClick(x
,y
,event
);
4725 // -----------------------------------------------------------------------
4727 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4729 // Always run standard mouse-down handler as well
4730 OnMouseClick(event
);
4733 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4734 HandleMouseDoubleClick(x
,y
,event
);
4738 // -----------------------------------------------------------------------
4740 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4743 if ( OnMouseCommon( event
, &x
, &y
) )
4745 HandleMouseMove(x
,y
,event
);
4750 // -----------------------------------------------------------------------
4752 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4754 // Called when mouse moves in the empty space below the properties.
4755 CustomSetCursor( wxCURSOR_ARROW
);
4758 // -----------------------------------------------------------------------
4760 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
4763 if ( OnMouseCommon( event
, &x
, &y
) )
4765 HandleMouseUp(x
,y
,event
);
4770 // -----------------------------------------------------------------------
4772 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
4774 // This may get called from child control as well, so event's
4775 // mouse position cannot be relied on.
4777 if ( event
.Entering() )
4779 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4781 // TODO: Fix this (detect parent and only do
4782 // cursor trick if it is a manager).
4783 wxASSERT( GetParent() );
4784 GetParent()->SetCursor(wxNullCursor
);
4786 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
4789 GetParent()->SetCursor(wxNullCursor
);
4791 else if ( event
.Leaving() )
4793 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4794 m_canvas
->SetCursor( wxNullCursor
);
4796 // Get real cursor position
4797 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
4799 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
4802 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4804 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
4808 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
4816 // -----------------------------------------------------------------------
4818 // Common code used by various OnMouseXXXChild methods.
4819 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
4821 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
4822 wxASSERT( topCtrlWnd
);
4824 event
.GetPosition(&x
,&y
);
4826 int splitterX
= GetSplitterPosition();
4828 wxRect r
= topCtrlWnd
->GetRect();
4829 if ( !m_dragStatus
&&
4830 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
4831 y
>= 0 && y
< r
.height \
4834 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4839 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
4846 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
4849 if ( OnMouseChildCommon(event
,&x
,&y
) )
4851 bool res
= HandleMouseClick(x
,y
,event
);
4852 if ( !res
) event
.Skip();
4856 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
4859 wxASSERT( m_wndEditor
);
4860 // These coords may not be exact (about +-2),
4861 // but that should not matter (right click is about item, not position).
4862 wxPoint pt
= m_wndEditor
->GetPosition();
4863 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
4864 wxASSERT( m_selected
);
4865 m_propHover
= m_selected
;
4866 bool res
= HandleMouseRightClick(x
,y
,event
);
4867 if ( !res
) event
.Skip();
4870 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
4873 if ( OnMouseChildCommon(event
,&x
,&y
) )
4875 bool res
= HandleMouseMove(x
,y
,event
);
4876 if ( !res
) event
.Skip();
4880 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
4883 if ( OnMouseChildCommon(event
,&x
,&y
) )
4885 bool res
= HandleMouseUp(x
,y
,event
);
4886 if ( !res
) event
.Skip();
4890 // -----------------------------------------------------------------------
4891 // wxPropertyGrid keyboard event handling
4892 // -----------------------------------------------------------------------
4894 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
4896 // Translates wxKeyEvent to wxPG_ACTION_XXX
4898 int keycode
= event
.GetKeyCode();
4899 int modifiers
= event
.GetModifiers();
4901 wxASSERT( !(modifiers
&~(0xFFFF)) );
4903 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4905 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
4907 if ( it
== m_actionTriggers
.end() )
4912 int second
= (it
->second
>>16) & 0xFFFF;
4916 return (it
->second
& 0xFFFF);
4919 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
4921 wxASSERT( !(modifiers
&~(0xFFFF)) );
4923 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4925 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
4927 if ( it
!= m_actionTriggers
.end() )
4929 // This key combination is already used
4931 // Can add secondary?
4932 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
4933 wxT("You can only add up to two separate actions per key combination.") );
4935 action
= it
->second
| (action
<<16);
4938 m_actionTriggers
[hashMapKey
] = action
;
4941 void wxPropertyGrid::ClearActionTriggers( int action
)
4943 wxPGHashMapI2I::iterator it
;
4945 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); it
++ )
4947 if ( it
->second
== action
)
4949 m_actionTriggers
.erase(it
);
4954 static void CopyTextToClipboard( const wxString
& text
)
4956 if ( wxTheClipboard
->Open() )
4958 // This data objects are held by the clipboard,
4959 // so do not delete them in the app.
4960 wxTheClipboard
->SetData( new wxTextDataObject(text
) );
4961 wxTheClipboard
->Close();
4965 void wxPropertyGrid::HandleKeyEvent(wxKeyEvent
&event
)
4968 // Handles key event when editor control is not focused.
4971 wxASSERT( !m_frozen
);
4975 // Travelsal between items, collapsing/expanding, etc.
4976 int keycode
= event
.GetKeyCode();
4978 if ( keycode
== WXK_TAB
)
4981 DoSelectProperty( m_selected
, wxPG_SEL_FOCUS
);
4985 // Ignore Alt and Control when they are down alone
4986 if ( keycode
== WXK_ALT
||
4987 keycode
== WXK_CONTROL
)
4994 int action
= KeyEventToActions(event
, &secondAction
);
5000 if ( ButtonTriggerKeyTest(action
, event
) )
5003 wxPGProperty
* p
= m_selected
;
5005 if ( action
== wxPG_ACTION_COPY
)
5007 CopyTextToClipboard(p
->GetDisplayedString());
5011 // Travel and expand/collapse
5014 if ( p
->GetChildCount() &&
5015 !(p
->m_flags
& wxPG_PROP_DISABLED
)
5018 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
5020 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
5023 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
5025 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
5032 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
5036 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5047 if ( selectDir
>= -1 )
5049 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5051 DoSelectProperty(p
);
5057 // If nothing was selected, select the first item now
5058 // (or navigate out of tab).
5059 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5061 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5062 if ( p
) DoSelectProperty(p
);
5067 // -----------------------------------------------------------------------
5069 // Potentially handles a keyboard event for editor controls.
5070 // Returns false if event should *not* be skipped (on true it can
5071 // be optionally skipped).
5072 // Basicly, false means that SelectProperty was called (or was about
5073 // to be called, if canDestroy was false).
5074 bool wxPropertyGrid::HandleChildKey( wxKeyEvent
& event
)
5078 if ( !m_selected
|| !m_wndEditor
)
5083 int action
= KeyEventToAction(event
);
5086 if ( action
== wxPG_ACTION_CANCEL_EDIT
)
5089 // Esc cancels any changes
5090 if ( IsEditorsValueModified() )
5092 EditorsValueWasNotModified();
5094 // Update the control as well
5095 m_selected
->GetEditorClass()->SetControlStringValue( m_selected
,
5097 m_selected
->GetDisplayedString() );
5100 OnValidationFailureReset(m_selected
);
5105 else if ( action
== wxPG_ACTION_COPY
)
5107 // NB: There is some problem with getting native cut-copy-paste keys to go through
5108 // for embedded editor wxTextCtrl. This is why we emulate.
5110 wxTextCtrl
* tc
= GetEditorTextCtrl();
5113 wxString sel
= tc
->GetStringSelection();
5115 CopyTextToClipboard(sel
);
5119 CopyTextToClipboard(m_selected
->GetDisplayedString());
5122 else if ( action
== wxPG_ACTION_CUT
)
5124 wxTextCtrl
* tc
= GetEditorTextCtrl();
5128 tc
->GetSelection(&from
, &to
);
5131 CopyTextToClipboard(tc
->GetStringSelection());
5132 tc
->Remove(from
, to
);
5136 else if ( action
== wxPG_ACTION_PASTE
)
5138 wxTextCtrl
* tc
= GetEditorTextCtrl();
5141 if (wxTheClipboard
->Open())
5143 if (wxTheClipboard
->IsSupported( wxDF_TEXT
))
5145 wxTextDataObject data
;
5146 wxTheClipboard
->GetData( data
);
5148 tc
->GetSelection(&from
, &to
);
5151 tc
->Remove(from
, to
);
5152 tc
->WriteText(data
.GetText());
5156 tc
->WriteText(data
.GetText());
5159 wxTheClipboard
->Close();
5167 // -----------------------------------------------------------------------
5169 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5171 HandleKeyEvent( event
);
5174 // -----------------------------------------------------------------------
5176 void wxPropertyGrid::OnKeyUp(wxKeyEvent
&event
)
5181 // -----------------------------------------------------------------------
5183 bool wxPropertyGrid::ButtonTriggerKeyTest( int action
, wxKeyEvent
& event
)
5188 action
= KeyEventToActions(event
, &secondAction
);
5191 // Does the keycode trigger button?
5192 if ( action
== wxPG_ACTION_PRESS_BUTTON
&&
5195 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
, m_wndEditor2
->GetId());
5196 GetEventHandler()->AddPendingEvent(evt
);
5203 // -----------------------------------------------------------------------
5205 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5207 int keycode
= event
.GetKeyCode();
5209 // Ignore Alt and Control when they are down alone
5210 if ( keycode
== WXK_ALT
||
5211 keycode
== WXK_CONTROL
)
5217 if ( ButtonTriggerKeyTest(-1, event
) )
5220 if ( HandleChildKey(event
) == true )
5223 GetEventHandler()->AddPendingEvent(event
);
5226 void wxPropertyGrid::OnChildKeyUp( wxKeyEvent
&event
)
5228 GetEventHandler()->AddPendingEvent(event
);
5233 // -----------------------------------------------------------------------
5234 // wxPropertyGrid miscellaneous event handling
5235 // -----------------------------------------------------------------------
5237 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5240 // Check if the focus is in this control or one of its children
5241 wxWindow
* newFocused
= wxWindow::FindFocus();
5243 if ( newFocused
!= m_curFocused
)
5244 HandleFocusChange( newFocused
);
5247 // Called by focus event handlers. newFocused is the window that becomes focused.
5248 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5250 unsigned int oldFlags
= m_iFlags
;
5252 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5254 wxWindow
* parent
= newFocused
;
5256 // This must be one of nextFocus' parents.
5259 // Use m_eventObject, which is either wxPropertyGrid or
5260 // wxPropertyGridManager, as appropriate.
5261 if ( parent
== m_eventObject
)
5263 m_iFlags
|= wxPG_FL_FOCUSED
;
5266 parent
= parent
->GetParent();
5269 m_curFocused
= newFocused
;
5271 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5272 (oldFlags
& wxPG_FL_FOCUSED
) )
5274 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5276 // Need to store changed value
5277 CommitChangesFromEditor();
5283 // Preliminary code for tab-order respecting
5284 // tab-traversal (but should be moved to
5287 wxWindow* prevFocus = event.GetWindow();
5288 wxWindow* useThis = this;
5289 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5290 useThis = GetParent();
5293 prevFocus->GetParent() == useThis->GetParent() )
5295 wxList& children = useThis->GetParent()->GetChildren();
5297 wxNode* node = children.Find(prevFocus);
5299 if ( node->GetNext() &&
5300 useThis == node->GetNext()->GetData() )
5301 DoSelectProperty(GetFirst());
5302 else if ( node->GetPrevious () &&
5303 useThis == node->GetPrevious()->GetData() )
5304 DoSelectProperty(GetLastProperty());
5311 if ( m_selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5312 DrawItem( m_selected
);
5316 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5318 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5319 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5320 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5321 //else if ( event.GetWindow() )
5323 HandleFocusChange(event
.GetWindow());
5328 // -----------------------------------------------------------------------
5330 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5332 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5335 // event.Skip() being commented out is aworkaround for bug reported
5336 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5340 // -----------------------------------------------------------------------
5342 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5344 m_iFlags
|= wxPG_FL_SCROLLED
;
5349 // -----------------------------------------------------------------------
5351 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5353 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5355 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5359 // -----------------------------------------------------------------------
5360 // Property editor related functions
5361 // -----------------------------------------------------------------------
5363 // noDefCheck = true prevents infinite recursion.
5364 wxPGEditor
* wxPropertyGrid::RegisterEditorClass( wxPGEditor
* editorClass
,
5367 wxASSERT( editorClass
);
5369 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5370 RegisterDefaultEditors();
5372 wxString name
= editorClass
->GetName();
5374 // Existing editor under this name?
5375 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5377 if ( vt_it
!= wxPGGlobalVars
->m_mapEditorClasses
.end() )
5379 // If this name was already used, try class name.
5380 name
= editorClass
->GetClassInfo()->GetClassName();
5381 vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5384 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5385 (wxPGEditor
*) vt_it
->second
,
5386 "Editor with given name was already registered" );
5388 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5393 // Use this in RegisterDefaultEditors.
5394 #define wxPGRegisterDefaultEditorClass(EDITOR) \
5395 if ( wxPGEditor_##EDITOR == (wxPGEditor*) NULL ) \
5397 wxPGEditor_##EDITOR = wxPropertyGrid::RegisterEditorClass( \
5398 new wxPG##EDITOR##Editor, true ); \
5401 // Registers all default editor classes
5402 void wxPropertyGrid::RegisterDefaultEditors()
5404 wxPGRegisterDefaultEditorClass( TextCtrl
);
5405 wxPGRegisterDefaultEditorClass( Choice
);
5406 wxPGRegisterDefaultEditorClass( ComboBox
);
5407 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5408 #if wxPG_INCLUDE_CHECKBOX
5409 wxPGRegisterDefaultEditorClass( CheckBox
);
5411 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5413 // Register SpinCtrl etc. editors before use
5414 RegisterAdditionalEditors();
5417 // -----------------------------------------------------------------------
5418 // wxPGStringTokenizer
5419 // Needed to handle C-style string lists (e.g. "str1" "str2")
5420 // -----------------------------------------------------------------------
5422 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5423 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5427 wxPGStringTokenizer::~wxPGStringTokenizer()
5431 bool wxPGStringTokenizer::HasMoreTokens()
5433 const wxString
& str
= *m_str
;
5435 wxString::const_iterator i
= m_curPos
;
5437 wxUniChar delim
= m_delimeter
;
5439 wxUniChar prev_a
= wxT('\0');
5441 bool inToken
= false;
5443 while ( i
!= str
.end() )
5452 m_readyToken
.clear();
5457 if ( prev_a
!= wxT('\\') )
5461 if ( a
!= wxT('\\') )
5481 m_curPos
= str
.end();
5489 wxString
wxPGStringTokenizer::GetNextToken()
5491 return m_readyToken
;
5494 // -----------------------------------------------------------------------
5496 // -----------------------------------------------------------------------
5498 wxPGChoiceEntry::wxPGChoiceEntry()
5499 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5503 wxPGChoiceEntry::wxPGChoiceEntry( const wxPGChoiceEntry
& entry
)
5504 : wxPGCell( entry
.GetText(), entry
.GetBitmap(),
5505 entry
.GetFgCol(), entry
.GetBgCol() ), m_value(entry
.GetValue())
5509 // -----------------------------------------------------------------------
5511 // -----------------------------------------------------------------------
5513 wxPGChoicesData::wxPGChoicesData()
5518 wxPGChoicesData::~wxPGChoicesData()
5523 void wxPGChoicesData::Clear()
5527 for ( i
=0; i
<m_items
.size(); i
++ )
5535 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
5537 wxASSERT( m_items
.size() == 0 );
5541 for ( i
=0; i
<data
->GetCount(); i
++ )
5542 m_items
.push_back( new wxPGChoiceEntry(*data
->Item(i
)) );
5545 // -----------------------------------------------------------------------
5547 // -----------------------------------------------------------------------
5549 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
5553 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5554 m_data
->Insert( -1, p
);
5558 // -----------------------------------------------------------------------
5560 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
5564 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5565 p
->SetBitmap(bitmap
);
5566 m_data
->Insert( -1, p
);
5570 // -----------------------------------------------------------------------
5572 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
5576 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(entry
);
5577 m_data
->Insert(index
, p
);
5581 // -----------------------------------------------------------------------
5583 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
5587 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5588 m_data
->Insert( index
, p
);
5592 // -----------------------------------------------------------------------
5594 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
5600 while ( index
< GetCount() )
5602 int cmpRes
= GetLabel(index
).Cmp(label
);
5608 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5609 m_data
->Insert( index
, p
);
5613 // -----------------------------------------------------------------------
5615 void wxPGChoices::Add( const wxChar
** labels
, const ValArrItem
* values
)
5619 unsigned int itemcount
= 0;
5620 const wxChar
** p
= &labels
[0];
5621 while ( *p
) { p
++; itemcount
++; }
5624 for ( i
= 0; i
< itemcount
; i
++ )
5626 int value
= wxPG_INVALID_VALUE
;
5629 m_data
->Insert( -1, new wxPGChoiceEntry(labels
[i
], value
) );
5633 // -----------------------------------------------------------------------
5635 void wxPGChoices::Add( const wxArrayString
& arr
, const ValArrItem
* values
)
5640 unsigned int itemcount
= arr
.size();
5642 for ( i
= 0; i
< itemcount
; i
++ )
5644 int value
= wxPG_INVALID_VALUE
;
5647 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5651 // -----------------------------------------------------------------------
5653 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
5658 unsigned int itemcount
= arr
.size();
5660 for ( i
= 0; i
< itemcount
; i
++ )
5662 int value
= wxPG_INVALID_VALUE
;
5663 if ( &arrint
&& arrint
.size() )
5665 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5669 // -----------------------------------------------------------------------
5671 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
5673 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
5675 for ( i
=nIndex
; i
<(nIndex
+count
); i
++)
5676 delete m_data
->Item(i
);
5677 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
5678 m_data
->m_items
.begin()+nIndex
+count
);
5681 // -----------------------------------------------------------------------
5683 int wxPGChoices::Index( const wxString
& str
) const
5688 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5690 if ( m_data
->Item(i
)->GetText() == str
)
5697 // -----------------------------------------------------------------------
5699 int wxPGChoices::Index( int val
) const
5704 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5706 if ( m_data
->Item(i
)->GetValue() == val
)
5713 // -----------------------------------------------------------------------
5715 wxArrayString
wxPGChoices::GetLabels() const
5720 if ( this && IsOk() )
5721 for ( i
=0; i
<GetCount(); i
++ )
5722 arr
.push_back(GetLabel(i
));
5727 // -----------------------------------------------------------------------
5729 bool wxPGChoices::HasValues() const
5734 // -----------------------------------------------------------------------
5736 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
5743 for ( i
=0; i
< strings
.size(); i
++ )
5745 int index
= Index(strings
[i
]);
5747 arr
.Add(GetValue(index
));
5749 arr
.Add(wxPG_INVALID_VALUE
);
5756 // -----------------------------------------------------------------------
5758 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
5759 wxArrayString
* unmatched
) const
5766 for ( i
=0; i
< strings
.size(); i
++ )
5768 const wxString
& str
= strings
[i
];
5769 int index
= Index(str
);
5772 else if ( unmatched
)
5773 unmatched
->Add(str
);
5780 // -----------------------------------------------------------------------
5782 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
5786 if ( data
!= wxPGChoicesEmptyData
)
5793 // -----------------------------------------------------------------------
5795 void wxPGChoices::Init()
5797 m_data
= wxPGChoicesEmptyData
;
5800 // -----------------------------------------------------------------------
5802 void wxPGChoices::Free()
5804 if ( m_data
!= wxPGChoicesEmptyData
)
5807 m_data
= wxPGChoicesEmptyData
;
5811 // -----------------------------------------------------------------------
5812 // wxPropertyGridEvent
5813 // -----------------------------------------------------------------------
5815 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5818 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED
)
5819 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING
)
5820 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED
)
5821 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED
)
5822 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK
)
5823 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED
)
5824 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED
)
5825 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED
)
5826 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK
)
5829 // -----------------------------------------------------------------------
5831 void wxPropertyGridEvent::Init()
5833 m_validationInfo
= NULL
;
5835 m_wasVetoed
= false;
5838 // -----------------------------------------------------------------------
5840 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5841 : wxCommandEvent(commandType
,id
)
5847 // -----------------------------------------------------------------------
5849 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5850 : wxCommandEvent(event
)
5852 m_eventType
= event
.GetEventType();
5853 m_eventObject
= event
.m_eventObject
;
5855 m_property
= event
.m_property
;
5856 m_validationInfo
= event
.m_validationInfo
;
5857 m_canVeto
= event
.m_canVeto
;
5858 m_wasVetoed
= event
.m_wasVetoed
;
5861 // -----------------------------------------------------------------------
5863 wxPropertyGridEvent::~wxPropertyGridEvent()
5867 // -----------------------------------------------------------------------
5869 wxEvent
* wxPropertyGridEvent::Clone() const
5871 return new wxPropertyGridEvent( *this );
5874 // -----------------------------------------------------------------------
5875 // wxPropertyGridPopulator
5876 // -----------------------------------------------------------------------
5878 wxPropertyGridPopulator::wxPropertyGridPopulator()
5882 wxPGGlobalVars
->m_offline
++;
5885 // -----------------------------------------------------------------------
5887 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
5890 m_propHierarchy
.clear();
5893 // -----------------------------------------------------------------------
5895 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
5901 // -----------------------------------------------------------------------
5903 wxPropertyGridPopulator::~wxPropertyGridPopulator()
5906 // Free unused sets of choices
5907 wxPGHashMapS2P::iterator it
;
5909 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
5911 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
5918 m_pg
->GetPanel()->Refresh();
5920 wxPGGlobalVars
->m_offline
--;
5923 // -----------------------------------------------------------------------
5925 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
5926 const wxString
& propLabel
,
5927 const wxString
& propName
,
5928 const wxString
* propValue
,
5929 wxPGChoices
* pChoices
)
5931 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
5932 wxPGProperty
* parent
= GetCurParent();
5934 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
5936 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
5940 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
5942 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
5946 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
5948 property
->SetLabel(propLabel
);
5949 property
->DoSetName(propName
);
5951 if ( pChoices
&& pChoices
->IsOk() )
5952 property
->SetChoices(*pChoices
);
5954 m_state
->DoInsert(parent
, -1, property
);
5957 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
);
5962 // -----------------------------------------------------------------------
5964 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
5966 m_propHierarchy
.push_back(property
);
5967 DoScanForChildren();
5968 m_propHierarchy
.pop_back();
5971 // -----------------------------------------------------------------------
5973 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
5974 const wxString
& idString
)
5976 wxPGChoices choices
;
5979 if ( choicesString
[0] == wxT('@') )
5981 wxString ids
= choicesString
.substr(1);
5982 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
5983 if ( it
== m_dictIdChoices
.end() )
5984 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
5986 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5991 if ( idString
.length() )
5993 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
5994 if ( it
!= m_dictIdChoices
.end() )
5996 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6003 // Parse choices string
6004 wxString::const_iterator it
= choicesString
.begin();
6008 bool labelValid
= false;
6010 for ( ; it
!= choicesString
.end(); it
++ )
6016 if ( c
== wxT('"') )
6021 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6022 choices
.Add(label
, l
);
6025 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6030 else if ( c
== wxT('=') )
6037 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
6044 if ( c
== wxT('"') )
6057 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6058 choices
.Add(label
, l
);
6061 if ( !choices
.IsOk() )
6063 choices
.EnsureData();
6067 if ( idString
.length() )
6068 m_dictIdChoices
[idString
] = choices
.GetData();
6075 // -----------------------------------------------------------------------
6077 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6079 if ( s
.Last() == wxT('%') )
6081 wxString s2
= s
.substr(0,s
.length()-1);
6083 if ( s2
.ToLong(&val
, 10) )
6085 *pval
= (val
*max
)/100;
6091 return s
.ToLong(pval
, 10);
6094 // -----------------------------------------------------------------------
6096 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6097 const wxString
& type
,
6098 const wxString
& value
)
6100 int l
= m_propHierarchy
.size();
6104 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6105 wxString valuel
= value
.Lower();
6108 if ( type
.length() == 0 )
6113 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6115 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6117 else if ( value
.ToLong(&v
, 0) )
6124 if ( type
== wxT("string") )
6128 else if ( type
== wxT("int") )
6131 value
.ToLong(&v
, 0);
6134 else if ( type
== wxT("bool") )
6136 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6143 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6148 p
->SetAttribute( name
, variant
);
6153 // -----------------------------------------------------------------------
6155 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6157 wxLogError(_("Error in resource: %s"),msg
.c_str());
6160 // -----------------------------------------------------------------------
6162 #endif // wxUSE_PROPGRID