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 OnNavigationKey( wxNavigationKeyEvent
& event
)
419 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
420 pg
->OnNavigationKey( event
);
423 void OnPaint( wxPaintEvent
& event
);
425 // Always be focussable, even with child windows
426 virtual void SetCanFocus(bool WXUNUSED(canFocus
))
427 { wxPanel::SetCanFocus(true); }
431 DECLARE_EVENT_TABLE()
432 DECLARE_ABSTRACT_CLASS(wxPGCanvas
)
436 IMPLEMENT_ABSTRACT_CLASS(wxPGCanvas
,wxPanel
)
438 BEGIN_EVENT_TABLE(wxPGCanvas
, wxPanel
)
439 EVT_MOTION(wxPGCanvas::OnMouseMove
)
440 EVT_PAINT(wxPGCanvas::OnPaint
)
441 EVT_LEFT_DOWN(wxPGCanvas::OnMouseClick
)
442 EVT_LEFT_UP(wxPGCanvas::OnMouseUp
)
443 EVT_RIGHT_UP(wxPGCanvas::OnMouseRightClick
)
444 EVT_LEFT_DCLICK(wxPGCanvas::OnMouseDoubleClick
)
445 EVT_KEY_DOWN(wxPGCanvas::OnKey
)
446 EVT_KEY_UP(wxPGCanvas::OnKeyUp
)
447 EVT_CHAR(wxPGCanvas::OnKey
)
448 EVT_NAVIGATION_KEY(wxPGCanvas::OnNavigationKey
)
452 void wxPGCanvas::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
454 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
455 wxASSERT( pg
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
459 // Don't paint after destruction has begun
460 if ( !(pg
->GetInternalFlags() & wxPG_FL_INITIALIZED
) )
463 // Update everything inside the box
464 wxRect r
= GetUpdateRegion().GetBox();
466 // Repaint this rectangle
467 pg
->DrawItems( dc
, r
.y
, r
.y
+ r
.height
, &r
);
469 // We assume that the size set when grid is shown
470 // is what is desired.
471 pg
->SetInternalFlag(wxPG_FL_GOOD_SIZE_SET
);
474 // -----------------------------------------------------------------------
476 // -----------------------------------------------------------------------
478 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid
, wxScrolledWindow
)
480 BEGIN_EVENT_TABLE(wxPropertyGrid
, wxScrolledWindow
)
481 EVT_IDLE(wxPropertyGrid::OnIdle
)
482 EVT_MOTION(wxPropertyGrid::OnMouseMoveBottom
)
483 EVT_PAINT(wxPropertyGrid::OnPaint
)
484 EVT_SIZE(wxPropertyGrid::OnResize
)
485 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry
)
486 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry
)
487 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange
)
488 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent
)
489 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent
)
490 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent
)
491 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent
)
492 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged
)
496 // -----------------------------------------------------------------------
498 wxPropertyGrid::wxPropertyGrid()
504 // -----------------------------------------------------------------------
506 wxPropertyGrid::wxPropertyGrid( wxWindow
*parent
,
515 Create(parent
,id
,pos
,size
,style
,name
);
518 // -----------------------------------------------------------------------
520 bool wxPropertyGrid::Create( wxWindow
*parent
,
528 if ( !(style
&wxBORDER_MASK
) )
529 style
|= wxSIMPLE_BORDER
;
534 // This prevents crash under Win2K, but still
535 // enables keyboard navigation
536 if ( style
& wxTAB_TRAVERSAL
)
538 style
&= ~(wxTAB_TRAVERSAL
);
539 style
|= wxWANTS_CHARS
;
542 if ( style
& wxTAB_TRAVERSAL
)
543 style
|= wxWANTS_CHARS
;
546 wxScrolledWindow::Create(parent
,id
,pos
,size
,style
,name
);
553 // -----------------------------------------------------------------------
556 // Initialize values to defaults
558 void wxPropertyGrid::Init1()
560 // Register editor classes, if necessary.
561 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
562 wxPropertyGrid::RegisterDefaultEditors();
565 m_pState
= (wxPropertyGridPageState
*) NULL
;
566 m_wndEditor
= m_wndEditor2
= (wxWindow
*) NULL
;
567 m_selected
= (wxPGProperty
*) NULL
;
569 m_propHover
= (wxPGProperty
*) NULL
;
570 m_eventObject
= this;
571 m_curFocused
= (wxWindow
*) NULL
;
573 m_inDoPropertyChanged
= 0;
574 m_inCommitChangesFromEditor
= 0;
575 m_inDoSelectProperty
= 0;
576 m_permanentValidationFailureBehavior
= wxPG_VFB_DEFAULT
;
582 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_RIGHT
);
583 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_DOWN
);
584 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_LEFT
);
585 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_UP
);
586 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY
, WXK_RIGHT
);
587 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY
, WXK_LEFT
);
588 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT
, WXK_ESCAPE
);
589 AddActionTrigger( wxPG_ACTION_CUT
, 'X', wxMOD_CONTROL
);
590 AddActionTrigger( wxPG_ACTION_CUT
, WXK_DELETE
, wxMOD_SHIFT
);
591 AddActionTrigger( wxPG_ACTION_COPY
, 'C', wxMOD_CONTROL
);
592 AddActionTrigger( wxPG_ACTION_COPY
, WXK_INSERT
, wxMOD_CONTROL
);
593 AddActionTrigger( wxPG_ACTION_PASTE
, 'V', wxMOD_CONTROL
);
594 AddActionTrigger( wxPG_ACTION_PASTE
, WXK_INSERT
, wxMOD_SHIFT
);
596 m_coloursCustomized
= 0;
601 #if wxPG_DOUBLE_BUFFER
602 m_doubleBuffer
= (wxBitmap
*) NULL
;
605 #ifndef wxPG_ICON_WIDTH
611 m_iconWidth
= wxPG_ICON_WIDTH
;
616 m_gutterWidth
= wxPG_GUTTER_MIN
;
617 m_subgroup_extramargin
= 10;
621 m_width
= m_height
= 0;
623 SetButtonShortcut(0);
625 m_keyComboConsumed
= 0;
627 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
630 m_chgInfo_changedProperty
= NULL
;
633 // -----------------------------------------------------------------------
636 // Initialize after parent etc. set
638 void wxPropertyGrid::Init2()
640 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
643 // Smaller controls on Mac
644 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
647 // Now create state, if one didn't exist already
648 // (wxPropertyGridManager might have created it for us).
651 m_pState
= CreateState();
652 m_pState
->m_pPropGrid
= this;
653 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
656 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
657 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
659 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
661 m_pState
->InitNonCatMode();
663 m_pState
->m_properties
= m_pState
->m_abcArray
;
666 GetClientSize(&m_width
,&m_height
);
668 #ifndef wxPG_ICON_WIDTH
669 // create two bitmap nodes for drawing
670 m_expandbmp
= new wxBitmap(expand_xpm
);
671 m_collbmp
= new wxBitmap(collapse_xpm
);
673 // calculate average font height for bitmap centering
675 m_iconWidth
= m_expandbmp
->GetWidth();
676 m_iconHeight
= m_expandbmp
->GetHeight();
679 m_curcursor
= wxCURSOR_ARROW
;
680 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
682 // adjust bitmap icon y position so they are centered
683 m_vspacing
= wxPG_DEFAULT_VSPACING
;
687 wxFont useFont
= wxScrolledWindow::GetFont();
688 wxScrolledWindow::SetOwnFont( useFont
);
691 // This should be otherwise called by SetOwnFont
692 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
694 // Add base brush item
695 m_arrBgBrushes
.Add((void*)new wxPGBrush());
697 // Add base colour items
698 m_arrFgCols
.Add((void*)new wxPGColour());
699 m_arrFgCols
.Add((void*)new wxPGColour());
703 // This helps with flicker
704 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
707 wxPGTLWHandler
* handler
= new wxPGTLWHandler(this);
708 m_tlp
= ::wxGetTopLevelParent(this);
709 m_tlwHandler
= handler
;
710 m_tlp
->PushEventHandler(handler
);
712 // set virtual size to this window size
713 wxSize wndsize
= GetSize();
714 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
716 m_timeCreated
= ::wxGetLocalTimeMillis();
718 m_canvas
= new wxPGCanvas();
719 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
720 (GetWindowStyle() & wxTAB_TRAVERSAL
) | wxWANTS_CHARS
| wxCLIP_CHILDREN
);
721 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
723 m_iFlags
|= wxPG_FL_INITIALIZED
;
725 m_ncWidth
= wndsize
.GetWidth();
727 // Need to call OnResize handler or size given in constructor/Create
729 wxSizeEvent
sizeEvent(wndsize
,0);
733 // -----------------------------------------------------------------------
735 wxPropertyGrid::~wxPropertyGrid()
739 DoSelectProperty(NULL
);
741 // This should do prevent things from going too badly wrong
742 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
744 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
745 m_canvas
->ReleaseMouse();
747 wxPGTLWHandler
* handler
= (wxPGTLWHandler
*) m_tlwHandler
;
748 m_tlp
->RemoveEventHandler(handler
);
752 if ( IsEditorsValueModified() )
753 ::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).)"),
754 wxS("wxPropertyGrid Debug Warning") );
757 #if wxPG_DOUBLE_BUFFER
758 if ( m_doubleBuffer
)
759 delete m_doubleBuffer
;
762 //m_selected = (wxPGProperty*) NULL;
764 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
767 delete m_cursorSizeWE
;
769 #ifndef wxPG_ICON_WIDTH
774 // Delete cached text colours.
775 for ( i
=0; i
<m_arrFgCols
.size(); i
++ )
777 delete (wxPGColour
*)m_arrFgCols
.Item(i
);
780 // Delete cached brushes.
781 for ( i
=0; i
<m_arrBgBrushes
.size(); i
++ )
783 delete (wxPGBrush
*)m_arrBgBrushes
.Item(i
);
786 // Delete common value records
787 for ( i
=0; i
<m_commonValues
.size(); i
++ )
789 delete GetCommonValue(i
);
793 // -----------------------------------------------------------------------
795 bool wxPropertyGrid::Destroy()
797 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
798 m_canvas
->ReleaseMouse();
800 return wxScrolledWindow::Destroy();
803 // -----------------------------------------------------------------------
805 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
807 return new wxPropertyGridPageState();
810 // -----------------------------------------------------------------------
811 // wxPropertyGrid overridden wxWindow methods
812 // -----------------------------------------------------------------------
814 void wxPropertyGrid::SetWindowStyleFlag( long style
)
816 long old_style
= m_windowStyle
;
818 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
820 wxASSERT( m_pState
);
822 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
825 EnableCategories( true );
827 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
829 // Disable categories
830 EnableCategories( false );
832 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
838 PrepareAfterItemsAdded();
840 m_pState
->m_itemsAdded
= 1;
842 #if wxPG_SUPPORT_TOOLTIPS
843 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
849 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
850 SetToolTip ( tooltip );
851 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
854 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
859 m_canvas
->SetToolTip( (wxToolTip
*) NULL
);
864 wxScrolledWindow::SetWindowStyleFlag ( style
);
866 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
868 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
870 CalculateFontAndBitmapStuff( m_vspacing
);
876 // -----------------------------------------------------------------------
878 void wxPropertyGrid::Freeze()
882 wxScrolledWindow::Freeze();
887 // -----------------------------------------------------------------------
889 void wxPropertyGrid::Thaw()
895 wxScrolledWindow::Thaw();
896 RecalculateVirtualSize();
897 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
901 // Force property re-selection
903 DoSelectProperty(m_selected
, wxPG_SEL_FORCE
);
907 // -----------------------------------------------------------------------
909 void wxPropertyGrid::SetExtraStyle( long exStyle
)
911 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
913 #if defined(__WXMSW__)
916 // Don't use WS_EX_COMPOSITED just now.
919 if ( m_iFlags & wxPG_FL_IN_MANAGER )
920 hWnd = (HWND)GetParent()->GetHWND();
922 hWnd = (HWND)GetHWND();
924 ::SetWindowLong( hWnd, GWL_EXSTYLE,
925 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
928 //#elif defined(__WXGTK20__)
930 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
931 // truly was double-buffered.
932 if ( !this->IsDoubleBuffered() )
934 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
938 #if wxPG_DOUBLE_BUFFER
939 delete m_doubleBuffer
;
940 m_doubleBuffer
= NULL
;
945 wxScrolledWindow::SetExtraStyle( exStyle
);
947 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
948 m_pState
->InitNonCatMode();
950 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
951 m_windowStyle
|= wxPG_TOOLTIPS
;
954 wxPGGlobalVars
->m_extraStyle
= exStyle
;
957 // -----------------------------------------------------------------------
959 // returns the best acceptable minimal size
960 wxSize
wxPropertyGrid::DoGetBestSize() const
963 if ( m_lineHeight
> hei
)
965 wxSize sz
= wxSize( 60, hei
+40 );
971 // -----------------------------------------------------------------------
972 // wxPropertyGrid Font and Colour Methods
973 // -----------------------------------------------------------------------
975 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
979 m_captionFont
= wxScrolledWindow::GetFont();
981 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
982 m_subgroup_extramargin
= x
+ (x
/2);
985 #if wxPG_USE_RENDERER_NATIVE
986 m_iconWidth
= wxPG_ICON_WIDTH
;
987 #elif wxPG_ICON_WIDTH
989 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
990 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
991 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
995 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
996 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
997 m_gutterWidth
= wxPG_GUTTER_MIN
;
1000 if ( vspacing
<= 1 ) vdiv
= 12;
1001 else if ( vspacing
>= 3 ) vdiv
= 3;
1003 m_spacingy
= m_fontHeight
/ vdiv
;
1004 if ( m_spacingy
< wxPG_YSPACING_MIN
)
1005 m_spacingy
= wxPG_YSPACING_MIN
;
1008 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
1009 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1011 m_captionFont
.SetWeight(wxBOLD
);
1012 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1014 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1017 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1018 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1021 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1023 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1024 RecalculateVirtualSize();
1026 InvalidateBestSize();
1029 // -----------------------------------------------------------------------
1031 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1037 // -----------------------------------------------------------------------
1039 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1040 int ga
= 1000, int ba
= 1000,
1041 bool forceDifferent
= false)
1048 // Recursion guard (allow 2 max)
1049 static int isinside
= 0;
1051 wxCHECK_MSG( isinside
< 3,
1053 wxT("wxPGAdjustColour should not be recursively called more than once") );
1058 int g
= src
.Green();
1061 if ( r2
>255 ) r2
= 255;
1062 else if ( r2
<0) r2
= 0;
1064 if ( g2
>255 ) g2
= 255;
1065 else if ( g2
<0) g2
= 0;
1067 if ( b2
>255 ) b2
= 255;
1068 else if ( b2
<0) b2
= 0;
1070 // Make sure they are somewhat different
1071 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1072 dst
= wxPGAdjustColour(src
,-(ra
*2));
1074 dst
= wxColour(r2
,g2
,b2
);
1076 // Recursion guard (allow 2 max)
1083 static int wxPGGetColAvg( const wxColour
& col
)
1085 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1089 void wxPropertyGrid::RegainColours()
1091 wxColour def_bgcol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1093 if ( !(m_coloursCustomized
& 0x0002) )
1095 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1097 // Make sure colour is dark enough
1099 int colDec
= wxPGGetColAvg(col
) - 230;
1101 int colDec
= wxPGGetColAvg(col
) - 200;
1104 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1109 if ( !(m_coloursCustomized
& 0x0001) )
1110 m_colMargin
= m_colCapBack
;
1112 if ( !(m_coloursCustomized
& 0x0004) )
1119 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1120 m_colCapFore
= capForeCol
;
1122 // Set the cached colour as well.
1123 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(capForeCol
);
1126 if ( !(m_coloursCustomized
& 0x0008) )
1128 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1129 m_colPropBack
= bgCol
;
1131 // Set the cached brush as well.
1132 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(bgCol
);
1135 if ( !(m_coloursCustomized
& 0x0010) )
1137 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1138 m_colPropFore
= fgCol
;
1140 // Set the cached colour as well.
1141 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(fgCol
);
1144 if ( !(m_coloursCustomized
& 0x0020) )
1145 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1147 if ( !(m_coloursCustomized
& 0x0040) )
1148 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1150 if ( !(m_coloursCustomized
& 0x0080) )
1151 m_colLine
= m_colCapBack
;
1153 if ( !(m_coloursCustomized
& 0x0100) )
1154 m_colDisPropFore
= m_colCapFore
;
1156 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1159 // -----------------------------------------------------------------------
1161 void wxPropertyGrid::ResetColours()
1163 m_coloursCustomized
= 0;
1170 // -----------------------------------------------------------------------
1172 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1174 // Must disable active editor.
1177 bool selRes
= ClearSelection();
1178 wxPG_CHECK_MSG_DBG( selRes
,
1180 wxT("failed to deselect a property (editor probably had invalid value)") );
1183 // TODO: Following code is disabled with wxMac because
1184 // it is reported to fail. I (JMS) cannot debug it
1185 // personally right now.
1186 #if !defined(__WXMAC__)
1187 bool res
= wxScrolledWindow::SetFont( font
);
1190 CalculateFontAndBitmapStuff( m_vspacing
);
1193 m_pState
->CalculateFontAndBitmapStuff(m_vspacing
);
1201 // TODO: Remove after SetFont crash fixed.
1202 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1204 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."));
1210 // -----------------------------------------------------------------------
1212 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1215 m_coloursCustomized
|= 0x80;
1219 // -----------------------------------------------------------------------
1221 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1224 m_coloursCustomized
|= 0x01;
1228 // -----------------------------------------------------------------------
1230 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1232 m_colPropBack
= col
;
1233 m_coloursCustomized
|= 0x08;
1235 // Set the cached brush as well.
1236 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(col
);
1241 // -----------------------------------------------------------------------
1243 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1245 m_colPropFore
= col
;
1246 m_coloursCustomized
|= 0x10;
1248 // Set the cached colour as well.
1249 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(col
);
1254 // -----------------------------------------------------------------------
1256 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1258 m_colEmptySpace
= col
;
1263 // -----------------------------------------------------------------------
1265 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1267 m_colDisPropFore
= col
;
1268 m_coloursCustomized
|= 0x100;
1272 // -----------------------------------------------------------------------
1274 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1277 m_coloursCustomized
|= 0x20;
1281 // -----------------------------------------------------------------------
1283 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1286 m_coloursCustomized
|= 0x40;
1290 // -----------------------------------------------------------------------
1292 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1295 m_coloursCustomized
|= 0x02;
1299 // -----------------------------------------------------------------------
1301 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1304 m_coloursCustomized
|= 0x04;
1306 // Set the cached colour as well.
1307 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(col
);
1312 // -----------------------------------------------------------------------
1314 void wxPropertyGrid::SetBackgroundColourIndex( wxPGProperty
* p
, int index
)
1316 unsigned char ind
= index
;
1318 p
->m_bgColIndex
= ind
;
1321 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1322 SetBackgroundColourIndex(p
->Item(i
),index
);
1325 // -----------------------------------------------------------------------
1327 void wxPropertyGrid::SetPropertyBackgroundColour( wxPGPropArg id
, const wxColour
& colour
)
1329 wxPG_PROP_ARG_CALL_PROLOG()
1334 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1336 // As it is most likely that the previous colour is used, start comparison
1338 for ( i
=(m_arrBgBrushes
.size()-1); i
>0; i
-- )
1340 if ( ((wxPGBrush
*)m_arrBgBrushes
.Item(i
))->GetColourAsLong() == colAsLong
)
1349 colInd
= m_arrBgBrushes
.size();
1350 wxCHECK_RET( colInd
< 256, wxT("wxPropertyGrid: Warning - Only 255 different property background colours allowed.") );
1351 m_arrBgBrushes
.Add( (void*)new wxPGBrush(colour
) );
1355 SetBackgroundColourIndex(p
,colInd
);
1357 // If this was on a visible grid, then draw it.
1358 DrawItemAndChildren(p
);
1361 // -----------------------------------------------------------------------
1363 wxColour
wxPropertyGrid::GetPropertyBackgroundColour( wxPGPropArg id
) const
1365 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1367 return ((wxPGBrush
*)m_arrBgBrushes
.Item(p
->m_bgColIndex
))->GetColour();
1370 // -----------------------------------------------------------------------
1372 void wxPropertyGrid::SetTextColourIndex( wxPGProperty
* p
, int index
, int flags
)
1374 unsigned char ind
= index
;
1376 p
->m_fgColIndex
= ind
;
1378 if ( p
->GetChildCount() && (flags
& wxPG_RECURSE
) )
1381 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1382 SetTextColourIndex( p
->Item(i
), index
, flags
);
1386 // -----------------------------------------------------------------------
1388 int wxPropertyGrid::CacheColour( const wxColour
& colour
)
1393 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1395 // As it is most likely that the previous colour is used, start comparison
1397 for ( i
=(m_arrFgCols
.size()-1); i
>0; i
-- )
1399 if ( ((wxPGColour
*)m_arrFgCols
.Item(i
))->GetColourAsLong() == colAsLong
)
1408 colInd
= m_arrFgCols
.size();
1409 wxCHECK_MSG( colInd
< 256, 0, wxT("wxPropertyGrid: Warning - Only 255 different property foreground colours allowed.") );
1410 m_arrFgCols
.Add( (void*)new wxPGColour(colour
) );
1416 // -----------------------------------------------------------------------
1418 void wxPropertyGrid::SetPropertyTextColour( wxPGPropArg id
, const wxColour
& colour
,
1421 wxPG_PROP_ARG_CALL_PROLOG()
1423 if ( p
->IsCategory() )
1425 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1426 cat
->SetTextColIndex(CacheColour(colour
));
1432 flags
|= wxPG_RECURSE
;
1433 SetTextColourIndex(p
, CacheColour(colour
), flags
);
1435 DrawItemAndChildren(p
);
1438 // -----------------------------------------------------------------------
1440 wxColour
wxPropertyGrid::GetPropertyTextColour( wxPGPropArg id
) const
1442 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1444 return wxColour(*((wxPGColour
*)m_arrFgCols
.Item(p
->m_fgColIndex
)));
1447 void wxPropertyGrid::SetPropertyColoursToDefault( wxPGPropArg id
)
1449 wxPG_PROP_ARG_CALL_PROLOG()
1451 SetBackgroundColourIndex( p
, 0 );
1452 SetTextColourIndex( p
, 0, wxPG_RECURSE
);
1454 if ( p
->IsCategory() )
1456 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1457 cat
->SetTextColIndex(1);
1461 // -----------------------------------------------------------------------
1462 // wxPropertyGrid property adding and removal
1463 // -----------------------------------------------------------------------
1465 void wxPropertyGrid::PrepareAfterItemsAdded()
1467 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1469 m_pState
->m_itemsAdded
= 0;
1471 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1474 RecalculateVirtualSize();
1477 // -----------------------------------------------------------------------
1478 // wxPropertyGrid property value setting and getting
1479 // -----------------------------------------------------------------------
1481 void wxPropertyGrid::DoSetPropertyValueUnspecified( wxPGProperty
* p
)
1483 m_pState
->DoSetPropertyValueUnspecified(p
);
1484 DrawItemAndChildren(p
);
1486 wxPGProperty
* parent
= p
->GetParent();
1487 while ( (parent
->GetFlags() & wxPG_PROP_PARENTAL_FLAGS
) == wxPG_PROP_MISC_PARENT
)
1490 parent
= parent
->GetParent();
1494 // -----------------------------------------------------------------------
1495 // wxPropertyGrid property operations
1496 // -----------------------------------------------------------------------
1498 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1500 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1504 bool changed
= false;
1506 // Is it inside collapsed section?
1507 if ( !p
->IsVisible() )
1510 wxPGProperty
* parent
= p
->GetParent();
1511 wxPGProperty
* grandparent
= parent
->GetParent();
1513 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1514 Expand( grandparent
);
1522 GetViewStart(&vx
,&vy
);
1523 vy
*=wxPG_PIXELS_PER_UNIT
;
1529 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1530 m_iFlags
|= wxPG_FL_SCROLLED
;
1533 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1535 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1536 m_iFlags
|= wxPG_FL_SCROLLED
;
1546 // -----------------------------------------------------------------------
1547 // wxPropertyGrid helper methods called by properties
1548 // -----------------------------------------------------------------------
1550 // Control font changer helper.
1551 void wxPropertyGrid::SetCurControlBoldFont()
1553 wxASSERT( m_wndEditor
);
1554 m_wndEditor
->SetFont( m_captionFont
);
1557 // -----------------------------------------------------------------------
1559 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1562 #if wxPG_SMALL_SCREEN
1563 // On small-screen devices, always show dialogs with default position and size.
1564 return wxDefaultPosition
;
1566 int splitterX
= GetSplitterPosition();
1570 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1572 ImprovedClientToScreen( &x
, &y
);
1574 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1575 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1582 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1592 new_y
= y
+ m_lineHeight
;
1594 return wxPoint(new_x
,new_y
);
1598 // -----------------------------------------------------------------------
1600 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1602 if ( src_str
.length() == 0 )
1608 bool prev_is_slash
= false;
1610 wxString::const_iterator i
= src_str
.begin();
1614 for ( ; i
!= src_str
.end(); i
++ )
1618 if ( a
!= wxS('\\') )
1620 if ( !prev_is_slash
)
1626 if ( a
== wxS('n') )
1629 dst_str
<< wxS('\n');
1631 dst_str
<< wxS('\n');
1634 else if ( a
== wxS('t') )
1635 dst_str
<< wxS('\t');
1639 prev_is_slash
= false;
1643 if ( prev_is_slash
)
1645 dst_str
<< wxS('\\');
1646 prev_is_slash
= false;
1650 prev_is_slash
= true;
1657 // -----------------------------------------------------------------------
1659 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1661 if ( src_str
.length() == 0 )
1667 wxString::const_iterator i
= src_str
.begin();
1668 wxUniChar prev_a
= wxS('\0');
1672 for ( ; i
!= src_str
.end(); i
++ )
1676 if ( a
>= wxS(' ') )
1678 // This surely is not something that requires an escape sequence.
1683 // This might need...
1684 if ( a
== wxS('\r') )
1686 // DOS style line end.
1687 // Already taken care below
1689 else if ( a
== wxS('\n') )
1690 // UNIX style line end.
1691 dst_str
<< wxS("\\n");
1692 else if ( a
== wxS('\t') )
1694 dst_str
<< wxS('\t');
1697 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1707 // -----------------------------------------------------------------------
1709 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1713 return (wxPGProperty
*) NULL
;
1716 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1719 // -----------------------------------------------------------------------
1720 // wxPropertyGrid graphics related methods
1721 // -----------------------------------------------------------------------
1723 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1727 // Update everything inside the box
1728 wxRect r
= GetUpdateRegion().GetBox();
1730 dc
.SetPen(m_colEmptySpace
);
1731 dc
.SetBrush(m_colEmptySpace
);
1732 dc
.DrawRectangle(r
);
1735 // -----------------------------------------------------------------------
1737 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1738 wxPGProperty
* property
) const
1740 // Prepare rectangle to be used
1742 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1743 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1745 #if (wxPG_USE_RENDERER_NATIVE)
1747 #elif wxPG_ICON_WIDTH
1748 // Drawing expand/collapse button manually
1749 dc
.SetPen(m_colPropFore
);
1750 if ( property
->IsCategory() )
1751 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1753 dc
.SetBrush(m_colPropBack
);
1755 dc
.DrawRectangle( r
);
1756 int _y
= r
.y
+(m_iconWidth
/2);
1757 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1762 if ( property
->IsExpanded() )
1764 // wxRenderer functions are non-mutating in nature, so it
1765 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1766 // Hopefully this does not cause problems.
1767 #if (wxPG_USE_RENDERER_NATIVE)
1768 wxRendererNative::Get().DrawTreeItemButton(
1774 #elif wxPG_ICON_WIDTH
1783 #if (wxPG_USE_RENDERER_NATIVE)
1784 wxRendererNative::Get().DrawTreeItemButton(
1790 #elif wxPG_ICON_WIDTH
1791 int _x
= r
.x
+(m_iconWidth
/2);
1792 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1798 #if (wxPG_USE_RENDERER_NATIVE)
1800 #elif wxPG_ICON_WIDTH
1803 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1807 // -----------------------------------------------------------------------
1810 // This is the one called by OnPaint event handler and others.
1811 // topy and bottomy are already unscrolled (ie. physical)
1813 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1815 unsigned int bottomy
,
1816 const wxRect
* clipRect
)
1818 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1820 m_pState
->EnsureVirtualHeight();
1822 wxRect tempClipRect
;
1825 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1826 clipRect
= &tempClipRect
;
1829 // items added check
1830 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1832 int paintFinishY
= 0;
1834 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1837 bool isBuffered
= false;
1839 #if wxPG_DOUBLE_BUFFER
1840 wxMemoryDC
* bufferDC
= NULL
;
1842 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1844 if ( !m_doubleBuffer
)
1846 paintFinishY
= clipRect
->y
;
1851 bufferDC
= new wxMemoryDC();
1853 // If nothing was changed, then just copy from double-buffer
1854 bufferDC
->SelectObject( *m_doubleBuffer
);
1864 dc
.SetClippingRegion( *clipRect
);
1865 paintFinishY
= DoDrawItems( *dcPtr
, NULL
, NULL
, clipRect
, isBuffered
);
1868 #if wxPG_DOUBLE_BUFFER
1871 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1872 bufferDC
, 0, 0, wxCOPY
);
1873 dc
.DestroyClippingRegion(); // Is this really necessary?
1879 // Clear area beyond bottomY?
1880 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1882 dc
.SetPen(m_colEmptySpace
);
1883 dc
.SetBrush(m_colEmptySpace
);
1884 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1888 // -----------------------------------------------------------------------
1890 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1891 const wxPGProperty
* firstItem
,
1892 const wxPGProperty
* lastItem
,
1893 const wxRect
* clipRect
,
1894 bool isBuffered
) const
1896 // TODO: This should somehow be eliminated.
1897 wxRect tempClipRect
;
1900 wxASSERT(firstItem
);
1902 tempClipRect
= GetPropertyRect(firstItem
, lastItem
);
1903 clipRect
= &tempClipRect
;
1907 firstItem
= DoGetItemAtY(clipRect
->y
);
1911 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1913 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1916 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1919 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1920 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1922 int lh
= m_lineHeight
;
1925 int lastItemBottomY
;
1927 firstItemTopY
= clipRect
->y
;
1928 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1930 // Align y coordinates to item boundaries
1931 firstItemTopY
-= firstItemTopY
% lh
;
1932 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1933 lastItemBottomY
-= 1;
1935 // Entire range outside scrolled, visible area?
1936 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1939 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1943 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
1944 firstItem->GetLabel().c_str(),
1945 lastItem->GetLabel().c_str(),
1946 (int)(lastItemBottomY - firstItemTopY),
1948 (unsigned long)clipRect );
1953 long windowStyle
= m_windowStyle
;
1959 // With wxPG_DOUBLE_BUFFER, do double buffering
1960 // - buffer's y = 0, so align cliprect and coordinates to that
1962 #if wxPG_DOUBLE_BUFFER
1968 xRelMod
= clipRect
->x
;
1969 yRelMod
= clipRect
->y
;
1972 // clipRect conversion
1980 firstItemTopY
-= yRelMod
;
1981 lastItemBottomY
-= yRelMod
;
1984 wxUnusedVar(isBuffered
);
1987 int x
= m_marginWidth
- xRelMod
;
1989 const wxFont
& normalfont
= m_font
;
1991 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) ? true : false;
1993 bool isEnabled
= IsEnabled();
1996 // Prepare some pens and brushes that are often changed to.
1999 wxBrush
marginBrush(m_colMargin
);
2000 wxPen
marginPen(m_colMargin
);
2001 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
2002 wxPen
linepen(m_colLine
,1,wxSOLID
);
2004 // pen that has same colour as text
2005 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
2008 // Clear margin with background colour
2010 dc
.SetBrush( marginBrush
);
2011 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2013 dc
.SetPen( *wxTRANSPARENT_PEN
);
2014 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2017 const wxPGProperty
* selected
= m_selected
;
2018 const wxPropertyGridPageState
* state
= m_pState
;
2020 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2021 bool wasSelectedPainted
= false;
2024 // TODO: Only render columns that are within clipping region.
2026 dc
.SetFont(normalfont
);
2028 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2029 int endScanBottomY
= lastItemBottomY
+ lh
;
2030 int y
= firstItemTopY
;
2033 // Pregenerate list of visible properties.
2034 wxArrayPGProperty visPropArray
;
2035 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2037 for ( ; !it
.AtEnd(); it
.Next() )
2039 const wxPGProperty
* p
= *it
;
2041 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2043 visPropArray
.push_back((wxPGProperty
*)p
);
2045 if ( y
> endScanBottomY
)
2052 visPropArray
.push_back(NULL
);
2054 wxPGProperty
* nextP
= visPropArray
[0];
2056 int gridWidth
= state
->m_width
;
2059 for ( unsigned int arrInd
=1;
2060 nextP
&& y
<= lastItemBottomY
;
2063 wxPGProperty
* p
= nextP
;
2064 nextP
= visPropArray
[arrInd
];
2066 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2067 int textMarginHere
= x
;
2068 int renderFlags
= wxPGCellRenderer::Control
;
2070 int greyDepth
= m_marginWidth
;
2071 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2072 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2074 int greyDepthX
= greyDepth
- xRelMod
;
2076 // Use basic depth if in non-categoric mode and parent is base array.
2077 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2079 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2082 // Paint margin area
2083 dc
.SetBrush(marginBrush
);
2084 dc
.SetPen(marginPen
);
2085 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2087 dc
.SetPen( linepen
);
2092 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2098 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
2100 sx
+= state
->m_colWidths
[si
];
2101 dc
.DrawLine( sx
, y
, sx
, y2
);
2104 // Horizontal Line, below
2105 // (not if both this and next is category caption)
2106 if ( p
->IsCategory() &&
2107 nextP
&& nextP
->IsCategory() )
2108 dc
.SetPen(m_colCapBack
);
2110 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2112 if ( p
== selected
)
2114 renderFlags
|= wxPGCellRenderer::Selected
;
2115 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2116 wasSelectedPainted
= true;
2124 if ( p
->IsCategory() )
2126 if ( p
->m_fgColIndex
== 0 )
2127 rowFgCol
= m_colCapFore
;
2129 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2130 rowBgBrush
= wxBrush(m_colCapBack
);
2132 else if ( p
!= selected
)
2134 // Disabled may get different colour.
2135 if ( !p
->IsEnabled() )
2136 rowFgCol
= m_colDisPropFore
;
2138 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2140 rowBgBrush
= *(wxPGBrush
*)m_arrBgBrushes
[p
->m_bgColIndex
];
2144 // Selected gets different colour.
2145 if ( reallyFocused
)
2147 rowFgCol
= m_colSelFore
;
2148 rowBgBrush
= wxBrush(m_colSelBack
);
2150 else if ( isEnabled
)
2152 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2153 rowBgBrush
= marginBrush
;
2157 rowFgCol
= m_colDisPropFore
;
2158 rowBgBrush
= wxBrush(m_colSelBack
);
2162 bool fontChanged
= false;
2164 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2169 if ( p
->IsCategory() )
2171 // Captions are all cells merged as one
2172 dc
.SetFont(m_captionFont
);
2174 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2176 dc
.SetBrush(rowBgBrush
);
2177 dc
.SetPen(rowBgBrush
.GetColour());
2178 dc
.SetTextForeground(rowFgCol
);
2180 dc
.DrawRectangle(cellRect
);
2183 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
2184 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
2187 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2188 DrawExpanderButton( dc
, butRect
, p
);
2192 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
2194 dc
.SetFont(m_captionFont
);
2200 int nextCellWidth
= state
->m_colWidths
[0];
2201 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
2202 int textXAdd
= textMarginHere
- greyDepthX
;
2204 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
2206 cellRect
.width
= nextCellWidth
- 1;
2208 bool ctrlCell
= false;
2211 if ( p
== selected
&& m_wndEditor
&& ci
== 1 )
2213 wxColour editorBgCol
= GetEditorControl()->GetBackgroundColour();
2214 dc
.SetBrush(editorBgCol
);
2215 dc
.SetPen(editorBgCol
);
2216 dc
.SetTextForeground(m_colPropFore
);
2218 if ( m_dragStatus
== 0 && !(m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2223 dc
.SetBrush(rowBgBrush
);
2224 dc
.SetPen(rowBgBrush
.GetColour());
2225 dc
.SetTextForeground(rowFgCol
);
2228 dc
.DrawRectangle(cellRect
);
2231 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2232 DrawExpanderButton( dc
, butRect
, p
);
2234 dc
.SetClippingRegion(cellRect
);
2236 cellRect
.x
+= textXAdd
;
2237 cellRect
.width
-= textXAdd
;
2242 wxPGCellRenderer
* renderer
;
2243 int cmnVal
= p
->GetCommonValue();
2244 if ( cmnVal
== -1 || ci
!= 1 )
2246 renderer
= p
->GetCellRenderer(ci
);
2247 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2251 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2252 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2256 cellX
+= state
->m_colWidths
[ci
];
2257 if ( ci
< (state
->m_colWidths
.size()-1) )
2258 nextCellWidth
= state
->m_colWidths
[ci
+1];
2260 dc
.DestroyClippingRegion(); // Is this really necessary?
2266 dc
.SetFont(normalfont
);
2271 // Refresh editor controls (seems not needed on msw)
2272 // NOTE: This code is mandatory for GTK!
2273 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2274 if ( wasSelectedPainted
)
2277 m_wndEditor
->Refresh();
2279 m_wndEditor2
->Refresh();
2286 // -----------------------------------------------------------------------
2288 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2292 if ( m_width
< 10 || m_height
< 10 ||
2293 !m_pState
->m_properties
->GetChildCount() ||
2294 p1
== (wxPGProperty
*) NULL
)
2295 return wxRect(0,0,0,0);
2300 // Return rect which encloses the given property range
2302 int visTop
= p1
->GetY();
2305 visBottom
= p2
->GetY() + m_lineHeight
;
2307 visBottom
= m_height
+ visTop
;
2309 // If seleced property is inside the range, we'll extend the range to include
2311 wxPGProperty
* selected
= m_selected
;
2314 int selectedY
= selected
->GetY();
2315 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2317 wxWindow
* editor
= GetEditorControl();
2320 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2321 if ( visBottom2
> visBottom
)
2322 visBottom
= visBottom2
;
2327 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2330 // -----------------------------------------------------------------------
2332 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2337 if ( m_pState
->m_itemsAdded
)
2338 PrepareAfterItemsAdded();
2340 wxRect r
= GetPropertyRect(p1
, p2
);
2343 m_canvas
->RefreshRect(r
);
2347 // -----------------------------------------------------------------------
2349 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2351 if ( p
== m_selected
)
2352 DoSelectProperty(p
, wxPG_SEL_FORCE
);
2354 DrawItemAndChildren(p
);
2357 // -----------------------------------------------------------------------
2359 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2364 // Draw item, children, and parent too, if it is not category
2365 wxPGProperty
* parent
= p
->GetParent();
2368 !parent
->IsCategory() &&
2369 parent
->GetParent() )
2372 parent
= parent
->GetParent();
2375 DrawItemAndChildren(p
);
2378 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2380 wxCHECK_RET( p
, wxT("invalid property id") );
2382 // Do not draw if in non-visible page
2383 if ( p
->GetParentState() != m_pState
)
2386 // do not draw a single item if multiple pending
2387 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2390 wxWindow
* wndPrimary
= GetEditorControl();
2392 // Update child control.
2393 if ( m_selected
&& m_selected
->GetParent() == p
)
2394 m_selected
->UpdateControl(wndPrimary
);
2396 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2398 DrawItems(p
, lastDrawn
);
2401 // -----------------------------------------------------------------------
2403 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2404 const wxRect
*rect
)
2406 PrepareAfterItemsAdded();
2408 wxWindow::Refresh(false);
2410 // TODO: Coordinate translation
2411 m_canvas
->Refresh(false, rect
);
2413 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2414 // I think this really helps only GTK+1.2
2415 if ( m_wndEditor
) m_wndEditor
->Refresh();
2416 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2420 // -----------------------------------------------------------------------
2421 // wxPropertyGrid global operations
2422 // -----------------------------------------------------------------------
2424 void wxPropertyGrid::Clear()
2428 bool selRes
= DoSelectProperty(NULL
, wxPG_SEL_DELETING
); // This must be before state clear
2429 wxPG_CHECK_RET_DBG( selRes
,
2430 wxT("failed to deselect a property (editor probably had invalid value)") );
2433 m_pState
->DoClear();
2439 RecalculateVirtualSize();
2441 // Need to clear some area at the end
2443 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2446 // -----------------------------------------------------------------------
2448 bool wxPropertyGrid::EnableCategories( bool enable
)
2450 if ( !ClearSelection() )
2456 // Enable categories
2459 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2464 // Disable categories
2466 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2469 if ( !m_pState
->EnableCategories(enable
) )
2474 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2476 m_pState
->m_itemsAdded
= 1; // force
2477 PrepareAfterItemsAdded();
2481 m_pState
->m_itemsAdded
= 1;
2483 // No need for RecalculateVirtualSize() here - it is already called in
2484 // wxPropertyGridPageState method above.
2491 // -----------------------------------------------------------------------
2493 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2495 wxASSERT( pNewState
);
2496 wxASSERT( pNewState
->GetGrid() );
2498 if ( pNewState
== m_pState
)
2501 wxPGProperty
* oldSelection
= m_selected
;
2506 bool selRes
= ClearSelection();
2507 wxPG_CHECK_RET_DBG( selRes
,
2508 wxT("failed to deselect a property (editor probably had invalid value)") );
2511 m_pState
->m_selected
= oldSelection
;
2513 bool orig_mode
= m_pState
->IsInNonCatMode();
2514 bool new_state_mode
= pNewState
->IsInNonCatMode();
2516 m_pState
= pNewState
;
2519 int pgWidth
= GetClientSize().x
;
2520 if ( HasVirtualWidth() )
2522 int minWidth
= pgWidth
;
2523 if ( pNewState
->m_width
< minWidth
)
2525 pNewState
->m_width
= minWidth
;
2526 pNewState
->CheckColumnWidths();
2532 // Just in case, fully re-center splitter
2533 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2534 pNewState
->m_fSplitterX
= -1.0;
2536 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2539 m_propHover
= (wxPGProperty
*) NULL
;
2541 // If necessary, convert state to correct mode.
2542 if ( orig_mode
!= new_state_mode
)
2544 // This should refresh as well.
2545 EnableCategories( orig_mode
?false:true );
2547 else if ( !m_frozen
)
2549 // Refresh, if not frozen.
2550 if ( m_pState
->m_itemsAdded
)
2551 PrepareAfterItemsAdded();
2554 if ( m_pState
->m_selected
)
2555 DoSelectProperty( m_pState
->m_selected
);
2557 RecalculateVirtualSize(0);
2561 m_pState
->m_itemsAdded
= 1;
2564 // -----------------------------------------------------------------------
2566 void wxPropertyGrid::SortChildren( wxPGPropArg id
)
2568 wxPG_PROP_ARG_CALL_PROLOG()
2570 m_pState
->SortChildren( p
);
2573 // -----------------------------------------------------------------------
2575 void wxPropertyGrid::Sort()
2577 bool selRes
= ClearSelection(); // This must be before state clear
2578 wxPG_CHECK_RET_DBG( selRes
,
2579 wxT("failed to deselect a property (editor probably had invalid value)") );
2584 // -----------------------------------------------------------------------
2586 // Call to SetSplitterPosition will always disable splitter auto-centering
2587 // if parent window is shown.
2588 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2590 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2593 wxPropertyGridPageState
* state
= m_pState
;
2595 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2600 CorrectEditorWidgetSizeX();
2606 // -----------------------------------------------------------------------
2608 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2610 SetSplitterPosition( m_width
/2, true );
2611 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2612 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2615 // -----------------------------------------------------------------------
2616 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2617 // -----------------------------------------------------------------------
2619 // Returns nearest paint visible property (such that will be painted unless
2620 // window is scrolled or resized). If given property is paint visible, then
2621 // it itself will be returned
2622 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2624 int vx
,vy1
;// Top left corner of client
2625 GetViewStart(&vx
,&vy1
);
2626 vy1
*= wxPG_PIXELS_PER_UNIT
;
2628 int vy2
= vy1
+ m_height
;
2629 int propY
= p
->GetY2(m_lineHeight
);
2631 if ( (propY
+ m_lineHeight
) < vy1
)
2634 return DoGetItemAtY( vy1
);
2636 else if ( propY
> vy2
)
2639 return DoGetItemAtY( vy2
);
2642 // Itself paint visible
2647 // -----------------------------------------------------------------------
2649 void wxPropertyGrid::SetButtonShortcut( int keycode
, bool ctrlDown
, bool altDown
)
2653 m_pushButKeyCode
= keycode
;
2654 m_pushButKeyCodeNeedsCtrl
= ctrlDown
? 1 : 0;
2655 m_pushButKeyCodeNeedsAlt
= altDown
? 1 : 0;
2659 m_pushButKeyCode
= WXK_DOWN
;
2660 m_pushButKeyCodeNeedsCtrl
= 0;
2661 m_pushButKeyCodeNeedsAlt
= 1;
2665 // -----------------------------------------------------------------------
2666 // Methods related to change in value, value modification and sending events
2667 // -----------------------------------------------------------------------
2669 // commits any changes in editor of selected property
2670 // return true if validation did not fail
2671 // flags are same as with DoSelectProperty
2672 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2674 // Committing already?
2675 if ( m_inCommitChangesFromEditor
)
2678 // Don't do this if already processing editor event. It might
2679 // induce recursive dialogs and crap like that.
2680 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2682 if ( m_inDoPropertyChanged
)
2689 IsEditorsValueModified() &&
2690 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2693 m_inCommitChangesFromEditor
= 1;
2695 wxVariant
variant(m_selected
->GetValueRef());
2696 bool valueIsPending
= false;
2698 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2699 // due to another window getting focus
2700 wxWindow
* oldFocus
= m_curFocused
;
2702 bool validationFailure
= false;
2703 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2705 m_chgInfo_changedProperty
= NULL
;
2707 // If truly modified, schedule value as pending.
2708 if ( m_selected
->GetEditorClass()->GetValueFromControl( variant
, m_selected
, GetEditorControl() ) )
2710 if ( DoEditorValidate() &&
2711 PerformValidation(m_selected
, variant
) )
2713 valueIsPending
= true;
2717 validationFailure
= true;
2722 EditorsValueWasNotModified();
2727 m_inCommitChangesFromEditor
= 0;
2729 if ( validationFailure
&& !forceSuccess
)
2733 oldFocus
->SetFocus();
2734 m_curFocused
= oldFocus
;
2737 res
= OnValidationFailure(m_selected
, variant
);
2739 // Now prevent further validation failure messages
2742 EditorsValueWasNotModified();
2743 OnValidationFailureReset(m_selected
);
2746 else if ( valueIsPending
)
2748 DoPropertyChanged( m_selected
, flags
);
2749 EditorsValueWasNotModified();
2758 // -----------------------------------------------------------------------
2760 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
)
2763 // Runs all validation functionality.
2764 // Returns true if value passes all tests.
2767 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2769 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2771 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2776 // Adapt list to child values, if necessary
2777 wxVariant listValue
= pendingValue
;
2778 wxVariant
* pPendingValue
= &pendingValue
;
2779 wxVariant
* pList
= NULL
;
2781 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2782 // string value, then we need treat as it was changed instead
2783 // (or, in addition, as is the case with composite string parent).
2784 // This includes creating list variant for child values.
2786 wxPGProperty
* pwc
= p
->GetParent();
2787 wxPGProperty
* changedProperty
= p
;
2788 wxPGProperty
* baseChangedProperty
= changedProperty
;
2789 wxVariant bcpPendingList
;
2791 listValue
= pendingValue
;
2792 listValue
.SetName(p
->GetBaseName());
2795 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2797 wxVariantList tempList
;
2798 wxVariant
lv(tempList
, pwc
->GetBaseName());
2799 lv
.Append(listValue
);
2801 pPendingValue
= &listValue
;
2803 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2805 baseChangedProperty
= pwc
;
2806 bcpPendingList
= lv
;
2809 changedProperty
= pwc
;
2810 pwc
= pwc
->GetParent();
2814 wxPGProperty
* evtChangingProperty
= changedProperty
;
2816 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2818 value
= *pPendingValue
;
2822 // Convert list to child values
2823 pList
= pPendingValue
;
2824 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2827 wxVariant evtChangingValue
= value
;
2829 // FIXME: After proper ValueToString()s added, remove
2830 // this. It is just a temporary fix, as evt_changing
2831 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2832 // (unless it is selected, and textctrl editor is open).
2833 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2835 evtChangingProperty
= baseChangedProperty
;
2836 if ( evtChangingProperty
!= p
)
2838 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2842 evtChangingValue
= pendingValue
;
2846 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2848 if ( changedProperty
== m_selected
)
2850 wxWindow
* editor
= GetEditorControl();
2851 wxASSERT( editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2852 evtChangingValue
= wxStaticCast(editor
, wxTextCtrl
)->GetValue();
2856 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2860 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2861 m_chgInfo_changedProperty
= changedProperty
;
2862 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2863 m_chgInfo_pendingValue
= value
;
2866 m_chgInfo_valueList
= *pList
;
2868 m_chgInfo_valueList
.MakeNull();
2870 // If changedProperty is not property which value was edited,
2871 // then call wxPGProperty::ValidateValue() for that as well.
2872 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2874 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2878 // SendEvent returns true if event was vetoed
2879 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
, &evtChangingValue
, 0 ) )
2885 // -----------------------------------------------------------------------
2887 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2889 if ( !msg
.length() )
2893 if ( !wxPGGlobalVars
->m_offline
)
2895 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2898 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2901 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
2904 pStatusBar
->SetStatusText(msg
);
2912 ::wxMessageBox(msg
, _T("Property Error"));
2915 // -----------------------------------------------------------------------
2917 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
2919 int vfb
= m_validationInfo
.m_failureBehavior
;
2921 if ( vfb
& wxPG_VFB_BEEP
)
2924 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
2925 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
2927 wxASSERT_MSG( !property
->GetCell(0) && !property
->GetCell(1),
2928 wxT("Currently wxPG_VFB_MARK_CELL only works with properties with standard first two cells") );
2930 if ( !property
->GetCell(0) && !property
->GetCell(1) )
2932 wxColour vfbFg
= *wxWHITE
;
2933 wxColour vfbBg
= *wxRED
;
2934 property
->SetCell(0, new wxPGCell(property
->GetLabel(), wxNullBitmap
, vfbFg
, vfbBg
));
2935 property
->SetCell(1, new wxPGCell(property
->GetDisplayedString(), wxNullBitmap
, vfbFg
, vfbBg
));
2937 DrawItemAndChildren(property
);
2939 if ( property
== m_selected
)
2941 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2943 wxWindow
* editor
= GetEditorControl();
2946 editor
->SetForegroundColour(vfbFg
);
2947 editor
->SetBackgroundColour(vfbBg
);
2953 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
2955 wxString msg
= m_validationInfo
.m_failureMessage
;
2957 if ( !msg
.length() )
2958 msg
= _T("You have entered invalid value. Press ESC to cancel editing.");
2960 DoShowPropertyError(property
, msg
);
2963 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
2966 // -----------------------------------------------------------------------
2968 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
2970 int vfb
= m_validationInfo
.m_failureBehavior
;
2972 if ( vfb
& wxPG_VFB_MARK_CELL
)
2974 property
->SetCell(0, NULL
);
2975 property
->SetCell(1, NULL
);
2977 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2979 if ( property
== m_selected
&& GetEditorControl() )
2981 // Calling this will recreate the control, thus resetting its colour
2982 RefreshProperty(property
);
2986 DrawItemAndChildren(property
);
2991 // -----------------------------------------------------------------------
2993 // flags are same as with DoSelectProperty
2994 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
2996 if ( m_inDoPropertyChanged
)
2999 wxWindow
* editor
= GetEditorControl();
3001 m_pState
->m_anyModified
= 1;
3003 m_inDoPropertyChanged
= 1;
3005 // Maybe need to update control
3006 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
3008 // These values were calculated in PerformValidation()
3009 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
3010 wxVariant value
= m_chgInfo_pendingValue
;
3012 wxPGProperty
* topPaintedProperty
= changedProperty
;
3014 while ( !topPaintedProperty
->IsCategory() &&
3015 !topPaintedProperty
->IsRoot() )
3017 topPaintedProperty
= topPaintedProperty
->GetParent();
3020 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
3022 // Set as Modified (not if dragging just began)
3023 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
3025 p
->m_flags
|= wxPG_PROP_MODIFIED
;
3026 if ( p
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3029 SetCurControlBoldFont();
3035 // Propagate updates to parent(s)
3037 wxPGProperty
* prevPwc
= NULL
;
3039 while ( prevPwc
!= topPaintedProperty
)
3041 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3043 if ( pwc
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3046 SetCurControlBoldFont();
3050 pwc
= pwc
->GetParent();
3053 // Draw the actual property
3054 DrawItemAndChildren( topPaintedProperty
);
3057 // If value was set by wxPGProperty::OnEvent, then update the editor
3059 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3062 p
->GetEditorClass()->UpdateControl(p
, editor
);
3066 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3067 if ( m_wndEditor
) m_wndEditor
->Refresh();
3068 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3073 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3075 // If top parent has composite string value, then send to child parents,
3076 // starting from baseChangedProperty.
3077 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3079 pwc
= m_chgInfo_baseChangedProperty
;
3081 while ( pwc
!= changedProperty
)
3083 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
, selFlags
);
3084 pwc
= pwc
->GetParent();
3088 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
, selFlags
);
3090 m_inDoPropertyChanged
= 0;
3095 // -----------------------------------------------------------------------
3097 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3099 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3101 m_chgInfo_changedProperty
= NULL
;
3103 if ( PerformValidation(p
, newValue
) )
3105 DoPropertyChanged(p
);
3110 OnValidationFailure(p
, newValue
);
3116 // -----------------------------------------------------------------------
3118 // Runs wxValidator for the selected property
3119 bool wxPropertyGrid::DoEditorValidate()
3124 // -----------------------------------------------------------------------
3126 bool wxPropertyGrid::ProcessEvent(wxEvent
& event
)
3128 wxWindow
* wnd
= (wxWindow
*) event
.GetEventObject();
3129 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxWindow
)) )
3131 wxWindow
* parent
= wnd
->GetParent();
3134 (parent
== m_canvas
||
3135 parent
->GetParent() == m_canvas
) )
3137 OnCustomEditorEvent((wxCommandEvent
&)event
);
3141 return wxPanel::ProcessEvent(event
);
3144 // -----------------------------------------------------------------------
3146 // NB: It may really not be wxCommandEvent - must check if necessary
3148 void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent
&event
)
3150 wxPGProperty
* selected
= m_selected
;
3153 // Somehow, event is handled after property has been deselected.
3154 // Possibly, but very rare.
3158 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
3161 wxVariant
pendingValue(selected
->GetValueRef());
3162 wxWindow
* wnd
= GetEditorControl();
3164 bool wasUnspecified
= selected
->IsValueUnspecified();
3165 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3167 bool valueIsPending
= false;
3169 m_chgInfo_changedProperty
= NULL
;
3171 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
3174 // Filter out excess wxTextCtrl modified events
3175 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
3177 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3179 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3181 wxString newTcValue
= tc
->GetValue();
3182 if ( m_prevTcValue
== newTcValue
)
3185 m_prevTcValue
= newTcValue
;
3188 SetInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3190 bool validationFailure
= false;
3191 bool buttonWasHandled
= false;
3194 // Try common button handling
3195 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3197 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3201 buttonWasHandled
= true;
3202 // Store as res2, as previously (and still currently alternatively)
3203 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3204 // in wxPGProperty::OnEvent().
3205 adapter
->ShowDialog( this, selected
);
3210 if ( !buttonWasHandled
)
3214 // First call editor class' event handler.
3215 const wxPGEditor
* editor
= selected
->GetEditorClass();
3217 if ( editor
->OnEvent( this, selected
, wnd
, event
) )
3219 // If changes, validate them
3220 if ( DoEditorValidate() )
3222 if ( editor
->GetValueFromControl( pendingValue
, m_selected
, wnd
) )
3223 valueIsPending
= true;
3227 validationFailure
= true;
3232 // Then the property's custom handler (must be always called, unless
3233 // validation failed).
3234 if ( !validationFailure
)
3235 buttonWasHandled
= selected
->OnEvent( this, wnd
, event
);
3238 // SetValueInEvent(), as called in one of the functions referred above
3239 // overrides editor's value.
3240 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3242 valueIsPending
= true;
3243 pendingValue
= m_changeInEventValue
;
3244 selFlags
|= wxPG_SEL_DIALOGVAL
;
3247 if ( !validationFailure
&& valueIsPending
)
3248 if ( !PerformValidation(m_selected
, pendingValue
) )
3249 validationFailure
= true;
3251 if ( validationFailure
)
3253 OnValidationFailure(selected
, pendingValue
);
3255 else if ( valueIsPending
)
3257 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3259 DoPropertyChanged(selected
, selFlags
);
3260 EditorsValueWasNotModified();
3263 // Regardless of editor type, unfocus editor on
3264 // text-editing related enter press.
3265 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3272 // No value after all
3274 // Let unhandled button click events go to the parent
3275 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3277 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3278 GetEventHandler()->AddPendingEvent(evt
);
3282 ClearInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3285 // -----------------------------------------------------------------------
3286 // wxPropertyGrid editor control helper methods
3287 // -----------------------------------------------------------------------
3289 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3291 int itemy
= p
->GetY2(m_lineHeight
);
3293 int cust_img_space
= 0;
3294 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3295 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3297 // TODO: If custom image detection changes from current, change this.
3298 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
/*p->m_flags & wxPG_PROP_CUSTOMIMAGE*/ )
3300 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3301 int imwid
= p
->OnMeasureImage().x
;
3302 if ( imwid
< 1 ) imwid
= wxPG_CUSTOM_IMAGE_WIDTH
;
3303 cust_img_space
= imwid
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
3308 splitterX
+cust_img_space
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3310 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-cust_img_space
-1,
3315 // -----------------------------------------------------------------------
3317 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3319 wxSize sz
= GetImageSize(p
, item
);
3320 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3321 wxPG_CUSTOM_IMAGE_SPACINGY
,
3326 // return size of custom paint image
3327 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3329 // If called with NULL property, then return default image
3330 // size for properties that use image.
3332 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3334 wxSize cis
= p
->OnMeasureImage(item
);
3336 int choiceCount
= p
->m_choices
.GetCount();
3337 int comVals
= p
->GetDisplayedCommonValueCount();
3338 if ( item
>= choiceCount
&& comVals
> 0 )
3340 unsigned int cvi
= item
-choiceCount
;
3341 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3343 else if ( item
>= 0 && choiceCount
== 0 )
3344 return wxSize(0, 0);
3349 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3354 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3361 // -----------------------------------------------------------------------
3363 // takes scrolling into account
3364 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3367 GetViewStart(&vx
,&vy
);
3368 vy
*=wxPG_PIXELS_PER_UNIT
;
3369 vx
*=wxPG_PIXELS_PER_UNIT
;
3372 ClientToScreen( px
, py
);
3375 // -----------------------------------------------------------------------
3377 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3380 GetViewStart(&pt2
.x
,&pt2
.y
);
3381 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3382 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3386 return m_pState
->HitTest(pt2
);
3389 // -----------------------------------------------------------------------
3391 // custom set cursor
3392 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3394 if ( type
== m_curcursor
&& !override
) return;
3396 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3398 if ( type
== wxCURSOR_SIZEWE
)
3399 cursor
= m_cursorSizeWE
;
3401 m_canvas
->SetCursor( *cursor
);
3406 // -----------------------------------------------------------------------
3407 // wxPropertyGrid property selection
3408 // -----------------------------------------------------------------------
3410 // Setups event handling for child control
3411 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3413 wxWindowID id
= argWnd
->GetId();
3415 if ( argWnd
== m_wndEditor
)
3417 argWnd
->Connect(id
, wxEVT_MOTION
,
3418 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3420 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3421 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3423 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3424 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3426 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3427 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3429 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3430 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3432 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3433 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3438 argWnd
->Connect(id
, wxEVT_NAVIGATION_KEY
,
3439 wxNavigationKeyEventHandler(wxPropertyGrid::OnNavigationKey
));
3442 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3443 wxKeyEventHandler(wxPropertyGrid::OnChildKeyDown
),
3445 argWnd
->Connect(id
, wxEVT_KEY_UP
,
3446 wxKeyEventHandler(wxPropertyGrid::OnChildKeyUp
),
3448 argWnd
->Connect(id
, wxEVT_KILL_FOCUS
,
3449 wxFocusEventHandler(wxPropertyGrid::OnFocusEvent
),
3453 void wxPropertyGrid::FreeEditors()
3455 // Do not free editors immediately if processing events
3458 m_windowsToDelete
.push_back(m_wndEditor2
);
3459 m_wndEditor2
->Hide();
3460 m_wndEditor2
= (wxWindow
*) NULL
;
3465 m_windowsToDelete
.push_back(m_wndEditor
);
3466 m_wndEditor
->Hide();
3467 m_wndEditor
= (wxWindow
*) NULL
;
3471 // Call with NULL to de-select property
3472 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3474 wxPanel
* canvas
= GetPanel();
3478 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3479 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3481 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3484 if ( m_inDoSelectProperty
)
3487 m_inDoSelectProperty
= 1;
3489 wxPGProperty
* prev
= m_selected
;
3492 // Delete windows pending for deletion
3493 if ( !m_inDoPropertyChanged
&& m_windowsToDelete
.size() )
3497 for ( i
=0; i
<m_windowsToDelete
.size(); i
++ )
3498 delete m_windowsToDelete
[i
];
3500 m_windowsToDelete
.clear();
3505 m_inDoSelectProperty
= 0;
3510 // If we are frozen, then just set the values.
3513 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3514 m_editorFocused
= 0;
3517 m_pState
->m_selected
= p
;
3519 // If frozen, always free controls. But don't worry, as Thaw will
3520 // recall SelectProperty to recreate them.
3523 // Prevent any further selection measures in this call
3524 p
= (wxPGProperty
*) NULL
;
3529 if ( m_selected
== p
&& !(flags
& wxPG_SEL_FORCE
) )
3531 // Only set focus if not deselecting
3534 if ( flags
& wxPG_SEL_FOCUS
)
3538 m_wndEditor
->SetFocus();
3539 m_editorFocused
= 1;
3548 m_inDoSelectProperty
= 0;
3553 // First, deactivate previous
3557 OnValidationFailureReset(m_selected
);
3559 // Must double-check if this is an selected in case of forceswitch
3562 if ( !CommitChangesFromEditor(flags
) )
3564 // Validation has failed, so we can't exit the previous editor
3565 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3566 // _("Invalid Value"),wxOK|wxICON_ERROR);
3567 m_inDoSelectProperty
= 0;
3575 m_selected
= (wxPGProperty
*) NULL
;
3576 m_pState
->m_selected
= (wxPGProperty
*) NULL
;
3578 // We need to always fully refresh the grid here
3581 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3582 EditorsValueWasNotModified();
3585 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3588 // Then, activate the one given.
3591 int propY
= p
->GetY2(m_lineHeight
);
3593 int splitterX
= GetSplitterPosition();
3594 m_editorFocused
= 0;
3596 m_pState
->m_selected
= p
;
3597 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3599 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3601 wxASSERT( m_wndEditor
== (wxWindow
*) NULL
);
3603 // Do we need OnMeasureCalls?
3604 wxSize imsz
= p
->OnMeasureImage();
3607 // Only create editor for non-disabled non-caption
3608 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3610 // do this for non-caption items
3614 // Do we need to paint the custom image, if any?
3615 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3616 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3617 !p
->GetEditorClass()->CanContainCustomImage()
3619 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3621 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3622 wxPoint goodPos
= grect
.GetPosition();
3623 #if wxPG_CREATE_CONTROLS_HIDDEN
3624 int coord_adjust
= m_height
- goodPos
.y
;
3625 goodPos
.y
+= coord_adjust
;
3628 const wxPGEditor
* editor
= p
->GetEditorClass();
3629 wxCHECK_MSG(editor
, false,
3630 wxT("NULL editor class not allowed"));
3632 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3634 wxPGWindowList wndList
= editor
->CreateControls(this,
3639 m_wndEditor
= wndList
.m_primary
;
3640 m_wndEditor2
= wndList
.m_secondary
;
3641 wxWindow
* primaryCtrl
= GetEditorControl();
3643 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3644 // value is drawn as normal, and m_wndEditor2 is assumed
3645 // to be a right-aligned button that triggers a separate editorCtrl
3650 wxASSERT_MSG( m_wndEditor
->GetParent() == canvas
,
3651 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3653 // Set validator, if any
3654 #if wxUSE_VALIDATORS
3655 wxValidator
* validator
= p
->GetValidator();
3657 primaryCtrl
->SetValidator(*validator
);
3660 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3661 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3663 // If it has modified status, use bold font
3664 // (must be done before capturing m_ctrlXAdjust)
3665 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3666 SetCurControlBoldFont();
3669 // Fix TextCtrl indentation
3670 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3671 wxTextCtrl
* tc
= NULL
;
3672 if ( primaryCtrl
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3673 tc
= ((wxOwnerDrawnComboBox
*)primaryCtrl
)->GetTextCtrl();
3675 tc
= wxDynamicCast(primaryCtrl
, wxTextCtrl
);
3677 ::SendMessage(GetHwndOf(tc
), EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0, 0));
3680 // Store x relative to splitter (we'll need it).
3681 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3683 // Check if background clear is not necessary
3684 wxPoint pos
= m_wndEditor
->GetPosition();
3685 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3687 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3690 m_wndEditor
->SetSizeHints(3, 3);
3691 if ( m_wndEditor
!= primaryCtrl
)
3692 primaryCtrl
->SetSizeHints(3, 3);
3694 #if wxPG_CREATE_CONTROLS_HIDDEN
3695 m_wndEditor
->Show(false);
3696 m_wndEditor
->Freeze();
3698 goodPos
= m_wndEditor
->GetPosition();
3699 goodPos
.y
-= coord_adjust
;
3700 m_wndEditor
->Move( goodPos
);
3703 SetupChildEventHandling(primaryCtrl
);
3705 // Focus and select all (wxTextCtrl, wxComboBox etc)
3706 if ( flags
& wxPG_SEL_FOCUS
)
3708 primaryCtrl
->SetFocus();
3710 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3716 wxASSERT_MSG( m_wndEditor2
->GetParent() == canvas
,
3717 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3719 // Get proper id for wndSecondary
3720 m_wndSecId
= m_wndEditor2
->GetId();
3721 wxWindowList children
= m_wndEditor2
->GetChildren();
3722 wxWindowList::iterator node
= children
.begin();
3723 if ( node
!= children
.end() )
3724 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3726 m_wndEditor2
->SetSizeHints(3,3);
3728 #if wxPG_CREATE_CONTROLS_HIDDEN
3729 wxRect sec_rect
= m_wndEditor2
->GetRect();
3730 sec_rect
.y
-= coord_adjust
;
3732 // Fine tuning required to fix "oversized"
3733 // button disappearance bug.
3734 if ( sec_rect
.y
< 0 )
3736 sec_rect
.height
+= sec_rect
.y
;
3739 m_wndEditor2
->SetSize( sec_rect
);
3741 m_wndEditor2
->Show();
3743 SetupChildEventHandling(m_wndEditor2
);
3745 // If no primary editor, focus to button to allow
3746 // it to interprete ENTER etc.
3747 // NOTE: Due to problems focusing away from it, this
3748 // has been disabled.
3750 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3751 m_wndEditor2->SetFocus();
3755 if ( flags
& wxPG_SEL_FOCUS
)
3756 m_editorFocused
= 1;
3761 // Make sure focus is in grid canvas (important for wxGTK, at least)
3765 EditorsValueWasNotModified();
3767 // If it's inside collapsed section, expand parent, scroll, etc.
3768 // Also, if it was partially visible, scroll it into view.
3769 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3774 #if wxPG_CREATE_CONTROLS_HIDDEN
3775 m_wndEditor
->Thaw();
3777 m_wndEditor
->Show(true);
3784 // Make sure focus is in grid canvas
3788 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3794 // Show help text in status bar.
3795 // (if found and grid not embedded in manager with help box and
3796 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3799 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3801 wxStatusBar
* statusbar
= (wxStatusBar
*) NULL
;
3802 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3804 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3806 statusbar
= frame
->GetStatusBar();
3811 const wxString
* pHelpString
= (const wxString
*) NULL
;
3815 pHelpString
= &p
->GetHelpString();
3816 if ( pHelpString
->length() )
3818 // Set help box text.
3819 statusbar
->SetStatusText( *pHelpString
);
3820 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3824 if ( (!pHelpString
|| !pHelpString
->length()) &&
3825 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3827 // Clear help box - but only if it was written
3828 // by us at previous time.
3829 statusbar
->SetStatusText( m_emptyString
);
3830 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3836 m_inDoSelectProperty
= 0;
3838 // call wx event handler (here so that it also occurs on deselection)
3839 SendEvent( wxEVT_PG_SELECTED
, m_selected
, NULL
, flags
);
3844 // -----------------------------------------------------------------------
3846 bool wxPropertyGrid::UnfocusEditor()
3848 if ( !m_selected
|| !m_wndEditor
|| m_frozen
)
3851 if ( !CommitChangesFromEditor(0) )
3855 DrawItem(m_selected
);
3860 // -----------------------------------------------------------------------
3862 // This method is not inline because it called dozens of times
3863 // (i.e. two-arg function calls create smaller code size).
3864 bool wxPropertyGrid::DoClearSelection()
3866 return DoSelectProperty((wxPGProperty
*)NULL
);
3869 // -----------------------------------------------------------------------
3870 // wxPropertyGrid expand/collapse state
3871 // -----------------------------------------------------------------------
3873 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
3875 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
3877 // If active editor was inside collapsed section, then disable it
3878 if ( m_selected
&& m_selected
->IsSomeParent (p
) )
3880 if ( !ClearSelection() )
3884 // Store dont-center-splitter flag 'cause we need to temporarily set it
3885 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3886 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3888 bool res
= m_pState
->DoCollapse(pwc
);
3893 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
3895 RecalculateVirtualSize();
3897 // Redraw etc. only if collapsed was visible.
3898 if (pwc
->IsVisible() &&
3900 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
3902 // When item is collapsed so that scrollbar would move,
3903 // graphics mess is about (unless we redraw everything).
3908 // Clear dont-center-splitter flag if it wasn't set
3909 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3914 // -----------------------------------------------------------------------
3916 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
3918 wxCHECK_MSG( p
, false, wxT("invalid property id") );
3920 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
3922 // Store dont-center-splitter flag 'cause we need to temporarily set it
3923 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3924 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3926 bool res
= m_pState
->DoExpand(pwc
);
3931 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
3933 RecalculateVirtualSize();
3935 // Redraw etc. only if expanded was visible.
3936 if ( pwc
->IsVisible() && !m_frozen
&&
3937 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
3941 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3944 DrawItems(pwc
, NULL
);
3949 // Clear dont-center-splitter flag if it wasn't set
3950 m_iFlags
= m_iFlags
& ~(wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3955 // -----------------------------------------------------------------------
3957 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
3960 return m_pState
->DoHideProperty(p
, hide
, flags
);
3963 ( m_selected
== p
|| m_selected
->IsSomeParent(p
) )
3966 if ( !ClearSelection() )
3970 m_pState
->DoHideProperty(p
, hide
, flags
);
3972 RecalculateVirtualSize();
3979 // -----------------------------------------------------------------------
3980 // wxPropertyGrid size related methods
3981 // -----------------------------------------------------------------------
3983 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
3985 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
3989 // If virtual height was changed, then recalculate editor control position(s)
3990 if ( m_pState
->m_vhCalcPending
)
3991 CorrectEditorWidgetPosY();
3993 m_pState
->EnsureVirtualHeight();
3996 int by1
= m_pState
->GetVirtualHeight();
3997 int by2
= m_pState
->GetActualVirtualHeight();
4000 wxString s
= wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1
, by2
);
4001 wxASSERT_MSG( false,
4007 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4009 int x
= m_pState
->m_width
;
4010 int y
= m_pState
->m_virtualHeight
;
4013 GetClientSize(&width
,&height
);
4015 // Now adjust virtual size.
4016 SetVirtualSize(x
, y
);
4022 // Adjust scrollbars
4023 if ( HasVirtualWidth() )
4025 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
4026 xPos
= GetScrollPos( wxHORIZONTAL
);
4029 if ( forceXPos
!= -1 )
4032 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4035 int yAmount
= (y
+wxPG_PIXELS_PER_UNIT
+2)/wxPG_PIXELS_PER_UNIT
;
4036 int yPos
= GetScrollPos( wxVERTICAL
);
4038 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4039 xAmount
, yAmount
, xPos
, yPos
, true );
4041 // Must re-get size now
4042 GetClientSize(&width
,&height
);
4044 if ( !HasVirtualWidth() )
4046 m_pState
->SetVirtualWidth(width
);
4053 m_canvas
->SetSize( x
, y
);
4055 m_pState
->CheckColumnWidths();
4058 CorrectEditorWidgetSizeX();
4060 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4063 // -----------------------------------------------------------------------
4065 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4067 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4071 GetClientSize(&width
,&height
);
4076 #if wxPG_DOUBLE_BUFFER
4077 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4079 int dblh
= (m_lineHeight
*2);
4080 if ( !m_doubleBuffer
)
4082 // Create double buffer bitmap to draw on, if none
4083 int w
= (width
>250)?width
:250;
4084 int h
= height
+ dblh
;
4086 m_doubleBuffer
= new wxBitmap( w
, h
);
4090 int w
= m_doubleBuffer
->GetWidth();
4091 int h
= m_doubleBuffer
->GetHeight();
4093 // Double buffer must be large enough
4094 if ( w
< width
|| h
< (height
+dblh
) )
4096 if ( w
< width
) w
= width
;
4097 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4098 delete m_doubleBuffer
;
4099 m_doubleBuffer
= new wxBitmap( w
, h
);
4106 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4107 m_ncWidth
= event
.GetSize().x
;
4111 if ( m_pState
->m_itemsAdded
)
4112 PrepareAfterItemsAdded();
4114 // Without this, virtual size (atleast under wxGTK) will be skewed
4115 RecalculateVirtualSize();
4121 // -----------------------------------------------------------------------
4123 void wxPropertyGrid::SetVirtualWidth( int width
)
4127 // Disable virtual width
4128 width
= GetClientSize().x
;
4129 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4133 // Enable virtual width
4134 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4136 m_pState
->SetVirtualWidth( width
);
4139 void wxPropertyGrid::SetFocusOnCanvas()
4141 m_canvas
->SetFocusIgnoringChildren();
4142 m_editorFocused
= 0;
4145 // -----------------------------------------------------------------------
4146 // wxPropertyGrid mouse event handling
4147 // -----------------------------------------------------------------------
4149 // selFlags uses same values DoSelectProperty's flags
4150 // Returns true if event was vetoed.
4151 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
, wxVariant
* pValue
, unsigned int WXUNUSED(selFlags
) )
4153 // Send property grid event of specific type and with specific property
4154 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4155 evt
.SetPropertyGrid(this);
4156 evt
.SetEventObject(m_eventObject
);
4160 evt
.SetCanVeto(true);
4161 evt
.SetupValidationInfo();
4162 m_validationInfo
.m_pValue
= pValue
;
4164 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
4166 evtHandler
->ProcessEvent(evt
);
4168 return evt
.WasVetoed();
4171 // -----------------------------------------------------------------------
4173 // Return false if should be skipped
4174 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4178 // Need to set focus?
4179 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4184 wxPropertyGridPageState
* state
= m_pState
;
4186 int splitterHitOffset
;
4187 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4189 wxPGProperty
* p
= DoGetItemAtY(y
);
4193 int depth
= (int)p
->GetDepth() - 1;
4195 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4197 if ( x
>= marginEnds
)
4201 if ( p
->IsCategory() )
4203 // This is category.
4204 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4206 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4208 // Expand, collapse, activate etc. if click on text or left of splitter.
4211 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4216 if ( !DoSelectProperty( p
) )
4219 // On double-click, expand/collapse.
4220 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4222 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4223 else DoExpand( p
, true );
4227 else if ( splitterHit
== -1 )
4230 unsigned int selFlag
= 0;
4231 if ( columnHit
== 1 )
4233 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4234 selFlag
= wxPG_SEL_FOCUS
;
4236 if ( !DoSelectProperty( p
, selFlag
) )
4239 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4241 if ( p
->GetChildCount() && !p
->IsCategory() )
4242 // On double-click, expand/collapse.
4243 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4245 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4246 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4247 else DoExpand( p
, true );
4254 // click on splitter
4255 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4257 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4259 // Double-clicking the splitter causes auto-centering
4260 CenterSplitter( true );
4262 else if ( m_dragStatus
== 0 )
4265 // Begin draggin the splitter
4269 // Changes must be committed here or the
4270 // value won't be drawn correctly
4271 if ( !CommitChangesFromEditor() )
4274 m_wndEditor
->Show ( false );
4277 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4279 m_canvas
->CaptureMouse();
4280 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4284 m_draggedSplitter
= splitterHit
;
4285 m_dragOffset
= splitterHitOffset
;
4287 wxClientDC
dc(m_canvas
);
4289 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4290 // Fixes button disappearance bug
4292 m_wndEditor2
->Show ( false );
4295 m_startingSplitterX
= x
- splitterHitOffset
;
4303 if ( p
->GetChildCount() )
4305 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4307 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4309 int y2
= y
% m_lineHeight
;
4310 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4312 // On click on expander button, expand/collapse
4313 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4314 DoCollapse( p
, true );
4316 DoExpand( p
, true );
4325 // -----------------------------------------------------------------------
4327 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4328 wxMouseEvent
& WXUNUSED(event
) )
4332 // Select property here as well
4333 wxPGProperty
* p
= m_propHover
;
4334 if ( p
!= m_selected
)
4335 DoSelectProperty( p
);
4337 // Send right click event.
4338 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4345 // -----------------------------------------------------------------------
4347 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4348 wxMouseEvent
& WXUNUSED(event
) )
4352 // Select property here as well
4353 wxPGProperty
* p
= m_propHover
;
4355 if ( p
!= m_selected
)
4356 DoSelectProperty( p
);
4358 // Send double-click event.
4359 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4366 // -----------------------------------------------------------------------
4368 #if wxPG_SUPPORT_TOOLTIPS
4370 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4372 if ( tipString
.length() )
4374 m_canvas
->SetToolTip(tipString
);
4378 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4379 m_canvas
->SetToolTip( m_emptyString
);
4381 m_canvas
->SetToolTip( NULL
);
4386 #endif // #if wxPG_SUPPORT_TOOLTIPS
4388 // -----------------------------------------------------------------------
4390 // Return false if should be skipped
4391 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4393 // Safety check (needed because mouse capturing may
4394 // otherwise freeze the control)
4395 if ( m_dragStatus
> 0 && !event
.Dragging() )
4397 HandleMouseUp(x
,y
,event
);
4400 wxPropertyGridPageState
* state
= m_pState
;
4402 int splitterHitOffset
;
4403 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4404 int splitterX
= x
- splitterHitOffset
;
4406 if ( m_dragStatus
> 0 )
4408 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4409 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4412 int newSplitterX
= x
- m_dragOffset
;
4413 int splitterX
= x
- splitterHitOffset
;
4415 // Splitter redraw required?
4416 if ( newSplitterX
!= splitterX
)
4419 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4420 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4421 state
->m_fSplitterX
= (float) newSplitterX
;
4424 CorrectEditorWidgetSizeX();
4438 int ih
= m_lineHeight
;
4441 #if wxPG_SUPPORT_TOOLTIPS
4442 wxPGProperty
* prevHover
= m_propHover
;
4443 unsigned char prevSide
= m_mouseSide
;
4445 int curPropHoverY
= y
- (y
% ih
);
4447 // On which item it hovers
4448 if ( ( !m_propHover
)
4450 ( m_propHover
&& ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) ) )
4453 // Mouse moves on another property
4455 m_propHover
= DoGetItemAtY(y
);
4456 m_propHoverY
= curPropHoverY
;
4459 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4462 #if wxPG_SUPPORT_TOOLTIPS
4463 // Store which side we are on
4465 if ( columnHit
== 1 )
4467 else if ( columnHit
== 0 )
4471 // If tooltips are enabled, show label or value as a tip
4472 // in case it doesn't otherwise show in full length.
4474 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4476 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4478 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4480 if ( m_propHover
&& !m_propHover
->IsCategory() )
4483 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4485 // Show help string as a tooltip
4486 wxString tipString
= m_propHover
->GetHelpString();
4488 SetToolTip(tipString
);
4492 // Show cropped value string as a tooltip
4496 if ( m_mouseSide
== 1 )
4498 tipString
= m_propHover
->m_label
;
4499 space
= splitterX
-m_marginWidth
-3;
4501 else if ( m_mouseSide
== 2 )
4503 tipString
= m_propHover
->GetDisplayedString();
4505 space
= m_width
- splitterX
;
4506 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4507 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4513 GetTextExtent( tipString
, &tw
, &th
, 0, 0, &m_font
);
4516 SetToolTip( tipString
);
4523 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4524 m_canvas
->SetToolTip( m_emptyString
);
4526 m_canvas
->SetToolTip( NULL
);
4537 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4538 m_canvas
->SetToolTip( m_emptyString
);
4540 m_canvas
->SetToolTip( NULL
);
4548 if ( splitterHit
== -1 ||
4550 HasFlag(wxPG_STATIC_SPLITTER
) )
4552 // hovering on something else
4553 if ( m_curcursor
!= wxCURSOR_ARROW
)
4554 CustomSetCursor( wxCURSOR_ARROW
);
4558 // Do not allow splitter cursor on caption items.
4559 // (also not if we were dragging and its started
4560 // outside the splitter region)
4563 !m_propHover
->IsCategory() &&
4567 // hovering on splitter
4569 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4570 // reliably detected.
4571 //if ( m_curcursor != wxCURSOR_SIZEWE )
4572 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4578 // hovering on something else
4579 if ( m_curcursor
!= wxCURSOR_ARROW
)
4580 CustomSetCursor( wxCURSOR_ARROW
);
4587 // -----------------------------------------------------------------------
4589 // Also handles Leaving event
4590 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4591 wxMouseEvent
&WXUNUSED(event
) )
4593 wxPropertyGridPageState
* state
= m_pState
;
4597 int splitterHitOffset
;
4598 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4600 // No event type check - basicly calling this method should
4601 // just stop dragging.
4602 // Left up after dragged?
4603 if ( m_dragStatus
>= 1 )
4606 // End Splitter Dragging
4608 // DO NOT ENABLE FOLLOWING LINE!
4609 // (it is only here as a reminder to not to do it)
4612 // Disable splitter auto-centering
4613 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4615 // This is necessary to return cursor
4616 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4618 m_canvas
->ReleaseMouse();
4619 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4622 // Set back the default cursor, if necessary
4623 if ( splitterHit
== -1 ||
4626 CustomSetCursor( wxCURSOR_ARROW
);
4631 // Control background needs to be cleared
4632 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && m_selected
)
4633 DrawItem( m_selected
);
4637 m_wndEditor
->Show ( true );
4640 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4641 // Fixes button disappearance bug
4643 m_wndEditor2
->Show ( true );
4646 // This clears the focus.
4647 m_editorFocused
= 0;
4653 // -----------------------------------------------------------------------
4655 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4657 int splitterX
= GetSplitterPosition();
4660 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4664 wxWindow
* wnd
= GetEditorControl();
4666 // Hide popup on clicks
4667 if ( event
.GetEventType() != wxEVT_MOTION
)
4668 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4670 ((wxOwnerDrawnComboBox
*)wnd
)->HidePopup();
4676 if ( wnd
== (wxWindow
*) NULL
|| m_dragStatus
||
4678 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4679 ux
>= (r
.x
+r
.width
) ||
4681 event
.m_y
>= (r
.y
+r
.height
)
4691 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4696 // -----------------------------------------------------------------------
4698 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4701 if ( OnMouseCommon( event
, &x
, &y
) )
4703 HandleMouseClick(x
,y
,event
);
4708 // -----------------------------------------------------------------------
4710 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4713 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4714 HandleMouseRightClick(x
,y
,event
);
4718 // -----------------------------------------------------------------------
4720 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4722 // Always run standard mouse-down handler as well
4723 OnMouseClick(event
);
4726 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4727 HandleMouseDoubleClick(x
,y
,event
);
4731 // -----------------------------------------------------------------------
4733 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4736 if ( OnMouseCommon( event
, &x
, &y
) )
4738 HandleMouseMove(x
,y
,event
);
4743 // -----------------------------------------------------------------------
4745 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4747 // Called when mouse moves in the empty space below the properties.
4748 CustomSetCursor( wxCURSOR_ARROW
);
4751 // -----------------------------------------------------------------------
4753 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
4756 if ( OnMouseCommon( event
, &x
, &y
) )
4758 HandleMouseUp(x
,y
,event
);
4763 // -----------------------------------------------------------------------
4765 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
4767 // This may get called from child control as well, so event's
4768 // mouse position cannot be relied on.
4770 if ( event
.Entering() )
4772 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4774 // TODO: Fix this (detect parent and only do
4775 // cursor trick if it is a manager).
4776 wxASSERT( GetParent() );
4777 GetParent()->SetCursor(wxNullCursor
);
4779 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
4782 GetParent()->SetCursor(wxNullCursor
);
4784 else if ( event
.Leaving() )
4786 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4787 m_canvas
->SetCursor( wxNullCursor
);
4789 // Get real cursor position
4790 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
4792 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
4795 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4797 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
4801 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
4809 // -----------------------------------------------------------------------
4811 // Common code used by various OnMouseXXXChild methods.
4812 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
4814 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
4815 wxASSERT( topCtrlWnd
);
4817 event
.GetPosition(&x
,&y
);
4819 AdjustPosForClipperWindow( topCtrlWnd
, &x
, &y
);
4821 int splitterX
= GetSplitterPosition();
4823 wxRect r
= topCtrlWnd
->GetRect();
4824 if ( !m_dragStatus
&&
4825 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
4826 y
>= 0 && y
< r
.height \
4829 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4834 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
4841 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
4844 if ( OnMouseChildCommon(event
,&x
,&y
) )
4846 bool res
= HandleMouseClick(x
,y
,event
);
4847 if ( !res
) event
.Skip();
4851 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
4854 wxASSERT( m_wndEditor
);
4855 // These coords may not be exact (about +-2),
4856 // but that should not matter (right click is about item, not position).
4857 wxPoint pt
= m_wndEditor
->GetPosition();
4858 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
4859 wxASSERT( m_selected
);
4860 m_propHover
= m_selected
;
4861 bool res
= HandleMouseRightClick(x
,y
,event
);
4862 if ( !res
) event
.Skip();
4865 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
4868 if ( OnMouseChildCommon(event
,&x
,&y
) )
4870 bool res
= HandleMouseMove(x
,y
,event
);
4871 if ( !res
) event
.Skip();
4875 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
4878 if ( OnMouseChildCommon(event
,&x
,&y
) )
4880 bool res
= HandleMouseUp(x
,y
,event
);
4881 if ( !res
) event
.Skip();
4885 // -----------------------------------------------------------------------
4886 // wxPropertyGrid keyboard event handling
4887 // -----------------------------------------------------------------------
4889 void wxPropertyGrid::SendNavigationKeyEvent( int dir
)
4891 wxNavigationKeyEvent evt
;
4892 evt
.SetFlags(wxNavigationKeyEvent::FromTab
|
4893 (dir
?wxNavigationKeyEvent::IsForward
:
4894 wxNavigationKeyEvent::IsBackward
));
4895 evt
.SetEventObject(this);
4896 m_canvas
->GetEventHandler()->AddPendingEvent(evt
);
4900 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
4902 // Translates wxKeyEvent to wxPG_ACTION_XXX
4904 int keycode
= event
.GetKeyCode();
4905 int modifiers
= event
.GetModifiers();
4907 wxASSERT( !(modifiers
&~(0xFFFF)) );
4909 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4911 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
4913 if ( it
== m_actionTriggers
.end() )
4918 int second
= (it
->second
>>16) & 0xFFFF;
4922 return (it
->second
& 0xFFFF);
4925 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
4927 wxASSERT( !(modifiers
&~(0xFFFF)) );
4929 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4931 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
4933 if ( it
!= m_actionTriggers
.end() )
4935 // This key combination is already used
4937 // Can add secondary?
4938 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
4939 wxT("You can only add up to two separate actions per key combination.") );
4941 action
= it
->second
| (action
<<16);
4944 m_actionTriggers
[hashMapKey
] = action
;
4947 void wxPropertyGrid::ClearActionTriggers( int action
)
4949 wxPGHashMapI2I::iterator it
;
4951 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); it
++ )
4953 if ( it
->second
== action
)
4955 m_actionTriggers
.erase(it
);
4960 static void CopyTextToClipboard( const wxString
& text
)
4962 if ( wxTheClipboard
->Open() )
4964 // This data objects are held by the clipboard,
4965 // so do not delete them in the app.
4966 wxTheClipboard
->SetData( new wxTextDataObject(text
) );
4967 wxTheClipboard
->Close();
4971 void wxPropertyGrid::HandleKeyEvent(wxKeyEvent
&event
)
4974 // Handles key event when editor control is not focused.
4977 wxASSERT( !m_frozen
);
4981 // Travelsal between items, collapsing/expanding, etc.
4982 int keycode
= event
.GetKeyCode();
4984 if ( keycode
== WXK_TAB
)
4986 SendNavigationKeyEvent( event
.ShiftDown()?0:1 );
4990 // Ignore Alt and Control when they are down alone
4991 if ( keycode
== WXK_ALT
||
4992 keycode
== WXK_CONTROL
)
4999 int action
= KeyEventToActions(event
, &secondAction
);
5005 if ( ButtonTriggerKeyTest(event
) )
5008 wxPGProperty
* p
= m_selected
;
5010 if ( action
== wxPG_ACTION_COPY
)
5012 CopyTextToClipboard(p
->GetDisplayedString());
5016 // Travel and expand/collapse
5019 if ( p
->GetChildCount() &&
5020 !(p
->m_flags
& wxPG_PROP_DISABLED
)
5023 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
5025 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
5028 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
5030 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
5037 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
5041 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5052 if ( selectDir
>= -1 )
5054 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5056 DoSelectProperty(p
);
5062 // If nothing was selected, select the first item now
5063 // (or navigate out of tab).
5064 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5066 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5067 if ( p
) DoSelectProperty(p
);
5072 // -----------------------------------------------------------------------
5074 // Potentially handles a keyboard event for editor controls.
5075 // Returns false if event should *not* be skipped (on true it can
5076 // be optionally skipped).
5077 // Basicly, false means that SelectProperty was called (or was about
5078 // to be called, if canDestroy was false).
5079 bool wxPropertyGrid::HandleChildKey( wxKeyEvent
& event
)
5083 if ( !m_selected
|| !m_wndEditor
)
5088 int action
= KeyEventToAction(event
);
5091 if ( action
== wxPG_ACTION_CANCEL_EDIT
)
5094 // Esc cancels any changes
5095 if ( IsEditorsValueModified() )
5097 EditorsValueWasNotModified();
5099 // Update the control as well
5100 m_selected
->GetEditorClass()->SetControlStringValue( m_selected
,
5102 m_selected
->GetDisplayedString() );
5105 OnValidationFailureReset(m_selected
);
5111 else if ( action
== wxPG_ACTION_COPY
)
5113 // NB: There is some problem with getting native cut-copy-paste keys to go through
5114 // for embedded editor wxTextCtrl. This is why we emulate.
5116 wxTextCtrl
* tc
= GetEditorTextCtrl();
5119 wxString sel
= tc
->GetStringSelection();
5121 CopyTextToClipboard(sel
);
5125 CopyTextToClipboard(m_selected
->GetDisplayedString());
5128 else if ( action
== wxPG_ACTION_CUT
)
5130 wxTextCtrl
* tc
= GetEditorTextCtrl();
5134 tc
->GetSelection(&from
, &to
);
5137 CopyTextToClipboard(tc
->GetStringSelection());
5138 tc
->Remove(from
, to
);
5142 else if ( action
== wxPG_ACTION_PASTE
)
5144 wxTextCtrl
* tc
= GetEditorTextCtrl();
5147 if (wxTheClipboard
->Open())
5149 if (wxTheClipboard
->IsSupported( wxDF_TEXT
))
5151 wxTextDataObject data
;
5152 wxTheClipboard
->GetData( data
);
5154 tc
->GetSelection(&from
, &to
);
5157 tc
->Remove(from
, to
);
5158 tc
->WriteText(data
.GetText());
5162 tc
->WriteText(data
.GetText());
5165 wxTheClipboard
->Close();
5173 // -----------------------------------------------------------------------
5175 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5179 // Events to editor controls should get relayed here.
5181 wxWindow
* focused
= wxWindow::FindFocus();
5183 wxWindow
* primaryCtrl
= GetEditorControl();
5186 (focused
==primaryCtrl
5187 || m_editorFocused
) )
5189 // Child key must be processed here, since it can
5190 // destroy the control which is referred by its own
5192 HandleChildKey( event
);
5195 HandleKeyEvent( event
);
5198 // -----------------------------------------------------------------------
5200 void wxPropertyGrid::OnKeyUp(wxKeyEvent
&event
)
5202 m_keyComboConsumed
= 0;
5207 // -----------------------------------------------------------------------
5209 void wxPropertyGrid::OnNavigationKey( wxNavigationKeyEvent
& event
)
5211 // Ignore events that occur very close to focus set
5212 if ( m_iFlags
& wxPG_FL_IGNORE_NEXT_NAVKEY
)
5214 m_iFlags
&= ~(wxPG_FL_IGNORE_NEXT_NAVKEY
);
5219 wxPGProperty
* next
= (wxPGProperty
*) NULL
;
5221 int dir
= event
.GetDirection()?1:-1;
5225 if ( dir
== 1 && (m_wndEditor
|| m_wndEditor2
) )
5227 wxWindow
* focused
= wxWindow::FindFocus();
5229 wxWindow
* wndToCheck
= GetEditorControl();
5231 // ODComboBox focus goes to its text ctrl, so we need to use it instead
5232 if ( wndToCheck
&& wndToCheck
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
5234 wxTextCtrl
* comboTextCtrl
= ((wxOwnerDrawnComboBox
*)wndToCheck
)->GetTextCtrl();
5235 if ( comboTextCtrl
)
5236 wndToCheck
= comboTextCtrl
;
5240 // Because of problems navigating from wxButton, do not go to it.
5243 // No primary, use secondary
5244 wndToCheck = m_wndEditor2;
5246 // If it has editor button, focus to it after the primary editor.
5247 // NB: Doesn't work since wxButton on wxMSW doesn't seem to propagate
5248 // key events (yes, I'm using wxWANTS_CHARS with it, and yes I
5249 // have somewhat debugged in window.cpp itself).
5250 else if ( focused == wndToCheck &&
5252 !(GetExtraStyle() & wxPG_EX_NO_TAB_TO_BUTTON) )
5254 wndToCheck = m_wndEditor2;
5255 wxLogDebug(wxT("Exp1"));
5259 if ( focused
!= wndToCheck
&&
5262 wndToCheck
->SetFocus();
5264 // Select all text in wxTextCtrl etc.
5265 if ( m_wndEditor
&& wndToCheck
== m_wndEditor
)
5266 m_selected
->GetEditorClass()->OnFocus(m_selected
,wndToCheck
);
5268 m_editorFocused
= 1;
5275 next
= wxPropertyGridIterator::OneStep(m_pState
, wxPG_ITERATE_VISIBLE
, m_selected
, dir
);
5279 // This allows preventing NavigateOut to occur
5280 DoSelectProperty( next
, wxPG_SEL_FOCUS
);
5289 // -----------------------------------------------------------------------
5291 bool wxPropertyGrid::ButtonTriggerKeyTest( wxKeyEvent
&event
)
5293 int keycode
= event
.GetKeyCode();
5295 // Does the keycode trigger button?
5296 if ( keycode
== m_pushButKeyCode
&&
5298 (!m_pushButKeyCodeNeedsAlt
|| event
.AltDown()) &&
5299 (!m_pushButKeyCodeNeedsCtrl
|| event
.ControlDown()) )
5301 m_keyComboConsumed
= 1;
5303 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,m_wndEditor2
->GetId());
5304 GetEventHandler()->AddPendingEvent(evt
);
5311 // -----------------------------------------------------------------------
5313 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5315 int keycode
= event
.GetKeyCode();
5317 // Ignore Alt and Control when they are down alone
5318 if ( keycode
== WXK_ALT
||
5319 keycode
== WXK_CONTROL
)
5325 if ( ButtonTriggerKeyTest(event
) )
5328 if ( HandleChildKey(event
) == true )
5331 GetEventHandler()->AddPendingEvent(event
);
5334 void wxPropertyGrid::OnChildKeyUp( wxKeyEvent
&event
)
5336 m_keyComboConsumed
= 0;
5338 GetEventHandler()->AddPendingEvent(event
);
5343 // -----------------------------------------------------------------------
5344 // wxPropertyGrid miscellaneous event handling
5345 // -----------------------------------------------------------------------
5347 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5350 // Check if the focus is in this control or one of its children
5351 wxWindow
* newFocused
= wxWindow::FindFocus();
5353 if ( newFocused
!= m_curFocused
)
5354 HandleFocusChange( newFocused
);
5357 // Called by focus event handlers. newFocused is the window that becomes focused.
5358 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5360 unsigned int oldFlags
= m_iFlags
;
5362 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5364 wxWindow
* parent
= newFocused
;
5366 // This must be one of nextFocus' parents.
5369 // Use m_eventObject, which is either wxPropertyGrid or
5370 // wxPropertyGridManager, as appropriate.
5371 if ( parent
== m_eventObject
)
5373 m_iFlags
|= wxPG_FL_FOCUSED
;
5376 parent
= parent
->GetParent();
5379 m_curFocused
= newFocused
;
5381 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5382 (oldFlags
& wxPG_FL_FOCUSED
) )
5384 // On each focus kill, mark the next nav key event
5385 // to be ignored (can't do on set focus since the
5386 // event would occur before it).
5387 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5389 m_iFlags
|= wxPG_FL_IGNORE_NEXT_NAVKEY
;
5391 // Need to store changed value
5392 CommitChangesFromEditor();
5398 // Preliminary code for tab-order respecting
5399 // tab-traversal (but should be moved to
5402 wxWindow* prevFocus = event.GetWindow();
5403 wxWindow* useThis = this;
5404 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5405 useThis = GetParent();
5408 prevFocus->GetParent() == useThis->GetParent() )
5410 wxList& children = useThis->GetParent()->GetChildren();
5412 wxNode* node = children.Find(prevFocus);
5414 if ( node->GetNext() &&
5415 useThis == node->GetNext()->GetData() )
5416 DoSelectProperty(GetFirst());
5417 else if ( node->GetPrevious () &&
5418 useThis == node->GetPrevious()->GetData() )
5419 DoSelectProperty(GetLastProperty());
5424 m_iFlags
&= ~(wxPG_FL_IGNORE_NEXT_NAVKEY
);
5428 if ( m_selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5429 DrawItem( m_selected
);
5433 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5435 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5436 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5437 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5438 //else if ( event.GetWindow() )
5440 HandleFocusChange(event
.GetWindow());
5445 // -----------------------------------------------------------------------
5447 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5449 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5452 // event.Skip() being commented out is aworkaround for bug reported
5453 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5457 // -----------------------------------------------------------------------
5459 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5461 m_iFlags
|= wxPG_FL_SCROLLED
;
5466 // -----------------------------------------------------------------------
5468 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5470 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5472 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5476 // -----------------------------------------------------------------------
5477 // Property editor related functions
5478 // -----------------------------------------------------------------------
5480 // noDefCheck = true prevents infinite recursion.
5481 wxPGEditor
* wxPropertyGrid::RegisterEditorClass( wxPGEditor
* editorClass
,
5484 wxASSERT( editorClass
);
5486 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5487 RegisterDefaultEditors();
5489 wxString name
= editorClass
->GetName();
5491 // Existing editor under this name?
5492 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5494 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5495 (wxPGEditor
*) vt_it
->second
,
5496 "Editor with given name was already registered" );
5498 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5503 // Registers all default editor classes
5504 void wxPropertyGrid::RegisterDefaultEditors()
5506 wxPGRegisterDefaultEditorClass( TextCtrl
);
5507 wxPGRegisterDefaultEditorClass( Choice
);
5508 wxPGRegisterDefaultEditorClass( ComboBox
);
5509 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5510 #if wxPG_INCLUDE_CHECKBOX
5511 wxPGRegisterDefaultEditorClass( CheckBox
);
5513 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5515 // Register SpinCtrl etc. editors before use
5516 RegisterAdditionalEditors();
5519 // -----------------------------------------------------------------------
5520 // wxPGStringTokenizer
5521 // Needed to handle C-style string lists (e.g. "str1" "str2")
5522 // -----------------------------------------------------------------------
5524 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5525 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5529 wxPGStringTokenizer::~wxPGStringTokenizer()
5533 bool wxPGStringTokenizer::HasMoreTokens()
5535 const wxString
& str
= *m_str
;
5537 wxString::const_iterator i
= m_curPos
;
5539 wxUniChar delim
= m_delimeter
;
5541 wxUniChar prev_a
= wxT('\0');
5543 bool inToken
= false;
5545 while ( i
!= str
.end() )
5554 m_readyToken
.clear();
5559 if ( prev_a
!= wxT('\\') )
5563 if ( a
!= wxT('\\') )
5583 m_curPos
= str
.end();
5591 wxString
wxPGStringTokenizer::GetNextToken()
5593 return m_readyToken
;
5596 // -----------------------------------------------------------------------
5598 // -----------------------------------------------------------------------
5600 wxPGChoiceEntry::wxPGChoiceEntry()
5601 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5605 wxPGChoiceEntry::wxPGChoiceEntry( const wxPGChoiceEntry
& entry
)
5606 : wxPGCell( entry
.GetText(), entry
.GetBitmap(),
5607 entry
.GetFgCol(), entry
.GetBgCol() ), m_value(entry
.GetValue())
5611 // -----------------------------------------------------------------------
5613 // -----------------------------------------------------------------------
5615 wxPGChoicesData::wxPGChoicesData()
5620 wxPGChoicesData::~wxPGChoicesData()
5625 void wxPGChoicesData::Clear()
5629 for ( i
=0; i
<m_items
.size(); i
++ )
5637 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
5639 wxASSERT( m_items
.size() == 0 );
5643 for ( i
=0; i
<data
->GetCount(); i
++ )
5644 m_items
.push_back( new wxPGChoiceEntry(*data
->Item(i
)) );
5647 // -----------------------------------------------------------------------
5649 // -----------------------------------------------------------------------
5651 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
5655 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5656 m_data
->Insert( -1, p
);
5660 // -----------------------------------------------------------------------
5662 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
5666 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5667 p
->SetBitmap(bitmap
);
5668 m_data
->Insert( -1, p
);
5672 // -----------------------------------------------------------------------
5674 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
5678 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(entry
);
5679 m_data
->Insert(index
, p
);
5683 // -----------------------------------------------------------------------
5685 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
5689 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5690 m_data
->Insert( index
, p
);
5694 // -----------------------------------------------------------------------
5696 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
5702 while ( index
< GetCount() )
5704 int cmpRes
= GetLabel(index
).Cmp(label
);
5710 wxPGChoiceEntry
* p
= new wxPGChoiceEntry(label
, value
);
5711 m_data
->Insert( index
, p
);
5715 // -----------------------------------------------------------------------
5717 void wxPGChoices::Add( const wxChar
** labels
, const ValArrItem
* values
)
5721 unsigned int itemcount
= 0;
5722 const wxChar
** p
= &labels
[0];
5723 while ( *p
) { p
++; itemcount
++; }
5726 for ( i
= 0; i
< itemcount
; i
++ )
5728 int value
= wxPG_INVALID_VALUE
;
5731 m_data
->Insert( -1, new wxPGChoiceEntry(labels
[i
], value
) );
5735 // -----------------------------------------------------------------------
5737 void wxPGChoices::Add( const wxArrayString
& arr
, const ValArrItem
* values
)
5742 unsigned int itemcount
= arr
.size();
5744 for ( i
= 0; i
< itemcount
; i
++ )
5746 int value
= wxPG_INVALID_VALUE
;
5749 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5753 // -----------------------------------------------------------------------
5755 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
5760 unsigned int itemcount
= arr
.size();
5762 for ( i
= 0; i
< itemcount
; i
++ )
5764 int value
= wxPG_INVALID_VALUE
;
5765 if ( &arrint
&& arrint
.size() )
5767 m_data
->Insert( -1, new wxPGChoiceEntry(arr
[i
], value
) );
5771 // -----------------------------------------------------------------------
5773 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
5775 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
5777 for ( i
=nIndex
; i
<(nIndex
+count
); i
++)
5778 delete m_data
->Item(i
);
5779 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
5780 m_data
->m_items
.begin()+nIndex
+count
-1);
5783 // -----------------------------------------------------------------------
5785 int wxPGChoices::Index( const wxString
& str
) const
5790 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5792 if ( m_data
->Item(i
)->GetText() == str
)
5799 // -----------------------------------------------------------------------
5801 int wxPGChoices::Index( int val
) const
5806 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5808 if ( m_data
->Item(i
)->GetValue() == val
)
5815 // -----------------------------------------------------------------------
5817 wxArrayString
wxPGChoices::GetLabels() const
5822 if ( this && IsOk() )
5823 for ( i
=0; i
<GetCount(); i
++ )
5824 arr
.push_back(GetLabel(i
));
5829 // -----------------------------------------------------------------------
5831 bool wxPGChoices::HasValues() const
5836 // -----------------------------------------------------------------------
5838 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
5845 for ( i
=0; i
< strings
.size(); i
++ )
5847 int index
= Index(strings
[i
]);
5849 arr
.Add(GetValue(index
));
5851 arr
.Add(wxPG_INVALID_VALUE
);
5858 // -----------------------------------------------------------------------
5860 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
5861 wxArrayString
* unmatched
) const
5868 for ( i
=0; i
< strings
.size(); i
++ )
5870 const wxString
& str
= strings
[i
];
5871 int index
= Index(str
);
5874 else if ( unmatched
)
5875 unmatched
->Add(str
);
5882 // -----------------------------------------------------------------------
5884 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
5888 if ( data
!= wxPGChoicesEmptyData
)
5895 // -----------------------------------------------------------------------
5897 void wxPGChoices::Init()
5899 m_data
= wxPGChoicesEmptyData
;
5902 // -----------------------------------------------------------------------
5904 void wxPGChoices::Free()
5906 if ( m_data
!= wxPGChoicesEmptyData
)
5909 m_data
= wxPGChoicesEmptyData
;
5913 // -----------------------------------------------------------------------
5914 // wxPropertyGridEvent
5915 // -----------------------------------------------------------------------
5917 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5920 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED
)
5921 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING
)
5922 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED
)
5923 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED
)
5924 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK
)
5925 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED
)
5926 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED
)
5927 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED
)
5928 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK
)
5931 // -----------------------------------------------------------------------
5933 void wxPropertyGridEvent::Init()
5935 m_validationInfo
= NULL
;
5937 m_wasVetoed
= false;
5940 // -----------------------------------------------------------------------
5942 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5943 : wxCommandEvent(commandType
,id
)
5949 // -----------------------------------------------------------------------
5951 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5952 : wxCommandEvent(event
)
5954 m_eventType
= event
.GetEventType();
5955 m_eventObject
= event
.m_eventObject
;
5957 m_property
= event
.m_property
;
5958 m_validationInfo
= event
.m_validationInfo
;
5959 m_canVeto
= event
.m_canVeto
;
5960 m_wasVetoed
= event
.m_wasVetoed
;
5963 // -----------------------------------------------------------------------
5965 wxPropertyGridEvent::~wxPropertyGridEvent()
5969 // -----------------------------------------------------------------------
5971 wxEvent
* wxPropertyGridEvent::Clone() const
5973 return new wxPropertyGridEvent( *this );
5976 // -----------------------------------------------------------------------
5977 // wxPropertyGridPopulator
5978 // -----------------------------------------------------------------------
5980 wxPropertyGridPopulator::wxPropertyGridPopulator()
5984 wxPGGlobalVars
->m_offline
++;
5987 // -----------------------------------------------------------------------
5989 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
5992 m_propHierarchy
.clear();
5995 // -----------------------------------------------------------------------
5997 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
6003 // -----------------------------------------------------------------------
6005 wxPropertyGridPopulator::~wxPropertyGridPopulator()
6008 // Free unused sets of choices
6009 wxPGHashMapS2P::iterator it
;
6011 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
6013 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
6020 m_pg
->GetPanel()->Refresh();
6022 wxPGGlobalVars
->m_offline
--;
6025 // -----------------------------------------------------------------------
6027 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
6028 const wxString
& propLabel
,
6029 const wxString
& propName
,
6030 const wxString
* propValue
,
6031 wxPGChoices
* pChoices
)
6033 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
6034 wxPGProperty
* parent
= GetCurParent();
6036 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
6038 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
6042 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
6044 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
6048 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
6050 property
->SetLabel(propLabel
);
6051 property
->DoSetName(propName
);
6053 if ( pChoices
&& pChoices
->IsOk() )
6054 property
->SetChoices(*pChoices
);
6056 m_state
->DoInsert(parent
, -1, property
);
6059 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
);
6064 // -----------------------------------------------------------------------
6066 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
6068 m_propHierarchy
.push_back(property
);
6069 DoScanForChildren();
6070 m_propHierarchy
.pop_back();
6073 // -----------------------------------------------------------------------
6075 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
6076 const wxString
& idString
)
6078 wxPGChoices choices
;
6081 if ( choicesString
[0] == wxT('@') )
6083 wxString ids
= choicesString
.substr(1);
6084 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
6085 if ( it
== m_dictIdChoices
.end() )
6086 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
6088 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6093 if ( idString
.length() )
6095 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
6096 if ( it
!= m_dictIdChoices
.end() )
6098 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6105 // Parse choices string
6106 wxString::const_iterator it
= choicesString
.begin();
6110 bool labelValid
= false;
6112 for ( ; it
!= choicesString
.end(); it
++ )
6118 if ( c
== wxT('"') )
6123 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6124 choices
.Add(label
, l
);
6127 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6132 else if ( c
== wxT('=') )
6139 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
6146 if ( c
== wxT('"') )
6159 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6160 choices
.Add(label
, l
);
6163 if ( !choices
.IsOk() )
6165 choices
.EnsureData();
6169 if ( idString
.length() )
6170 m_dictIdChoices
[idString
] = choices
.GetData();
6177 // -----------------------------------------------------------------------
6179 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6181 if ( s
.Last() == wxT('%') )
6183 wxString s2
= s
.substr(0,s
.length()-1);
6185 if ( s2
.ToLong(&val
, 10) )
6187 *pval
= (val
*max
)/100;
6193 return s
.ToLong(pval
, 10);
6196 // -----------------------------------------------------------------------
6198 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6199 const wxString
& type
,
6200 const wxString
& value
)
6202 int l
= m_propHierarchy
.size();
6206 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6207 wxString valuel
= value
.Lower();
6210 if ( type
.length() == 0 )
6215 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6217 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6219 else if ( value
.ToLong(&v
, 0) )
6226 if ( type
== wxT("string") )
6230 else if ( type
== wxT("int") )
6233 value
.ToLong(&v
, 0);
6236 else if ( type
== wxT("bool") )
6238 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6245 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6250 p
->SetAttribute( name
, variant
);
6255 // -----------------------------------------------------------------------
6257 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6259 wxLogError(_("Error in resource: %s"),msg
.c_str());
6262 // -----------------------------------------------------------------------
6264 #endif // wxUSE_PROPGRID