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 m_windowsToDelete
= NULL
;
607 #ifndef wxPG_ICON_WIDTH
613 m_iconWidth
= wxPG_ICON_WIDTH
;
618 m_gutterWidth
= wxPG_GUTTER_MIN
;
619 m_subgroup_extramargin
= 10;
623 m_width
= m_height
= 0;
625 SetButtonShortcut(0);
627 m_keyComboConsumed
= 0;
629 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
632 m_chgInfo_changedProperty
= NULL
;
635 // -----------------------------------------------------------------------
638 // Initialize after parent etc. set
640 void wxPropertyGrid::Init2()
642 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
645 // Smaller controls on Mac
646 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
649 // Now create state, if one didn't exist already
650 // (wxPropertyGridManager might have created it for us).
653 m_pState
= CreateState();
654 m_pState
->m_pPropGrid
= this;
655 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
658 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
659 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
661 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
663 m_pState
->InitNonCatMode();
665 m_pState
->m_properties
= m_pState
->m_abcArray
;
668 GetClientSize(&m_width
,&m_height
);
670 #ifndef wxPG_ICON_WIDTH
671 // create two bitmap nodes for drawing
672 m_expandbmp
= new wxBitmap(expand_xpm
);
673 m_collbmp
= new wxBitmap(collapse_xpm
);
675 // calculate average font height for bitmap centering
677 m_iconWidth
= m_expandbmp
->GetWidth();
678 m_iconHeight
= m_expandbmp
->GetHeight();
681 m_curcursor
= wxCURSOR_ARROW
;
682 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
684 // adjust bitmap icon y position so they are centered
685 m_vspacing
= wxPG_DEFAULT_VSPACING
;
689 wxFont useFont
= wxScrolledWindow::GetFont();
690 wxScrolledWindow::SetOwnFont( useFont
);
693 // This should be otherwise called by SetOwnFont
694 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
696 // Add base brush item
697 m_arrBgBrushes
.Add((void*)new wxPGBrush());
699 // Add base colour items
700 m_arrFgCols
.Add((void*)new wxPGColour());
701 m_arrFgCols
.Add((void*)new wxPGColour());
705 // This helps with flicker
706 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
709 wxPGTLWHandler
* handler
= new wxPGTLWHandler(this);
710 m_tlp
= ::wxGetTopLevelParent(this);
711 m_tlwHandler
= handler
;
712 m_tlp
->PushEventHandler(handler
);
714 // set virtual size to this window size
715 wxSize wndsize
= GetSize();
716 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
718 m_timeCreated
= ::wxGetLocalTimeMillis();
720 m_canvas
= new wxPGCanvas();
721 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
722 (GetWindowStyle() & wxTAB_TRAVERSAL
) | wxWANTS_CHARS
| wxCLIP_CHILDREN
);
723 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
725 m_iFlags
|= wxPG_FL_INITIALIZED
;
727 m_ncWidth
= wndsize
.GetWidth();
729 // Need to call OnResize handler or size given in constructor/Create
731 wxSizeEvent
sizeEvent(wndsize
,0);
735 // -----------------------------------------------------------------------
737 wxPropertyGrid::~wxPropertyGrid()
741 DoSelectProperty(NULL
);
743 // This should do prevent things from going too badly wrong
744 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
746 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
747 m_canvas
->ReleaseMouse();
749 wxPGTLWHandler
* handler
= (wxPGTLWHandler
*) m_tlwHandler
;
750 m_tlp
->RemoveEventHandler(handler
);
754 if ( IsEditorsValueModified() )
755 ::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).)"),
756 wxS("wxPropertyGrid Debug Warning") );
759 #if wxPG_DOUBLE_BUFFER
760 if ( m_doubleBuffer
)
761 delete m_doubleBuffer
;
764 delete m_windowsToDelete
;
766 //m_selected = (wxPGProperty*) NULL;
768 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
771 delete m_cursorSizeWE
;
773 #ifndef wxPG_ICON_WIDTH
778 // Delete cached text colours.
779 for ( i
=0; i
<m_arrFgCols
.size(); i
++ )
781 delete (wxPGColour
*)m_arrFgCols
.Item(i
);
784 // Delete cached brushes.
785 for ( i
=0; i
<m_arrBgBrushes
.size(); i
++ )
787 delete (wxPGBrush
*)m_arrBgBrushes
.Item(i
);
790 // Delete common value records
791 for ( i
=0; i
<m_commonValues
.size(); i
++ )
793 delete GetCommonValue(i
);
797 // -----------------------------------------------------------------------
799 bool wxPropertyGrid::Destroy()
801 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
802 m_canvas
->ReleaseMouse();
804 return wxScrolledWindow::Destroy();
807 // -----------------------------------------------------------------------
809 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
811 return new wxPropertyGridPageState();
814 // -----------------------------------------------------------------------
815 // wxPropertyGrid overridden wxWindow methods
816 // -----------------------------------------------------------------------
818 void wxPropertyGrid::SetWindowStyleFlag( long style
)
820 long old_style
= m_windowStyle
;
822 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
824 wxASSERT( m_pState
);
826 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
829 EnableCategories( true );
831 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
833 // Disable categories
834 EnableCategories( false );
836 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
842 PrepareAfterItemsAdded();
844 m_pState
->m_itemsAdded
= 1;
846 #if wxPG_SUPPORT_TOOLTIPS
847 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
853 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
854 SetToolTip ( tooltip );
855 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
858 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
863 m_canvas
->SetToolTip( (wxToolTip
*) NULL
);
868 wxScrolledWindow::SetWindowStyleFlag ( style
);
870 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
872 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
874 CalculateFontAndBitmapStuff( m_vspacing
);
880 // -----------------------------------------------------------------------
882 void wxPropertyGrid::Freeze()
886 wxScrolledWindow::Freeze();
891 // -----------------------------------------------------------------------
893 void wxPropertyGrid::Thaw()
899 wxScrolledWindow::Thaw();
900 RecalculateVirtualSize();
901 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
905 // Force property re-selection
907 DoSelectProperty(m_selected
, wxPG_SEL_FORCE
);
911 // -----------------------------------------------------------------------
913 void wxPropertyGrid::SetExtraStyle( long exStyle
)
915 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
917 #if defined(__WXMSW__)
920 // Don't use WS_EX_COMPOSITED just now.
923 if ( m_iFlags & wxPG_FL_IN_MANAGER )
924 hWnd = (HWND)GetParent()->GetHWND();
926 hWnd = (HWND)GetHWND();
928 ::SetWindowLong( hWnd, GWL_EXSTYLE,
929 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
932 //#elif defined(__WXGTK20__)
934 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
935 // truly was double-buffered.
936 if ( !this->IsDoubleBuffered() )
938 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
942 #if wxPG_DOUBLE_BUFFER
943 delete m_doubleBuffer
;
944 m_doubleBuffer
= NULL
;
949 wxScrolledWindow::SetExtraStyle( exStyle
);
951 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
952 m_pState
->InitNonCatMode();
954 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
955 m_windowStyle
|= wxPG_TOOLTIPS
;
958 wxPGGlobalVars
->m_extraStyle
= exStyle
;
961 // -----------------------------------------------------------------------
963 // returns the best acceptable minimal size
964 wxSize
wxPropertyGrid::DoGetBestSize() const
967 if ( m_lineHeight
> hei
)
969 wxSize sz
= wxSize( 60, hei
+40 );
975 // -----------------------------------------------------------------------
976 // wxPropertyGrid Font and Colour Methods
977 // -----------------------------------------------------------------------
979 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
983 m_captionFont
= wxScrolledWindow::GetFont();
985 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
986 m_subgroup_extramargin
= x
+ (x
/2);
989 #if wxPG_USE_RENDERER_NATIVE
990 m_iconWidth
= wxPG_ICON_WIDTH
;
991 #elif wxPG_ICON_WIDTH
993 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
994 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
995 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
999 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
1000 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
1001 m_gutterWidth
= wxPG_GUTTER_MIN
;
1004 if ( vspacing
<= 1 ) vdiv
= 12;
1005 else if ( vspacing
>= 3 ) vdiv
= 3;
1007 m_spacingy
= m_fontHeight
/ vdiv
;
1008 if ( m_spacingy
< wxPG_YSPACING_MIN
)
1009 m_spacingy
= wxPG_YSPACING_MIN
;
1012 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
1013 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
1015 m_captionFont
.SetWeight(wxBOLD
);
1016 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
1018 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
1021 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
1022 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
1025 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
1027 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1028 RecalculateVirtualSize();
1030 InvalidateBestSize();
1033 // -----------------------------------------------------------------------
1035 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
1041 // -----------------------------------------------------------------------
1043 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
1044 int ga
= 1000, int ba
= 1000,
1045 bool forceDifferent
= false)
1052 // Recursion guard (allow 2 max)
1053 static int isinside
= 0;
1055 wxCHECK_MSG( isinside
< 3,
1057 wxT("wxPGAdjustColour should not be recursively called more than once") );
1062 int g
= src
.Green();
1065 if ( r2
>255 ) r2
= 255;
1066 else if ( r2
<0) r2
= 0;
1068 if ( g2
>255 ) g2
= 255;
1069 else if ( g2
<0) g2
= 0;
1071 if ( b2
>255 ) b2
= 255;
1072 else if ( b2
<0) b2
= 0;
1074 // Make sure they are somewhat different
1075 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
1076 dst
= wxPGAdjustColour(src
,-(ra
*2));
1078 dst
= wxColour(r2
,g2
,b2
);
1080 // Recursion guard (allow 2 max)
1087 static int wxPGGetColAvg( const wxColour
& col
)
1089 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
1093 void wxPropertyGrid::RegainColours()
1095 wxColour def_bgcol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1097 if ( !(m_coloursCustomized
& 0x0002) )
1099 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1101 // Make sure colour is dark enough
1103 int colDec
= wxPGGetColAvg(col
) - 230;
1105 int colDec
= wxPGGetColAvg(col
) - 200;
1108 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
1113 if ( !(m_coloursCustomized
& 0x0001) )
1114 m_colMargin
= m_colCapBack
;
1116 if ( !(m_coloursCustomized
& 0x0004) )
1123 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
1124 m_colCapFore
= capForeCol
;
1126 // Set the cached colour as well.
1127 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(capForeCol
);
1130 if ( !(m_coloursCustomized
& 0x0008) )
1132 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1133 m_colPropBack
= bgCol
;
1135 // Set the cached brush as well.
1136 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(bgCol
);
1139 if ( !(m_coloursCustomized
& 0x0010) )
1141 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1142 m_colPropFore
= fgCol
;
1144 // Set the cached colour as well.
1145 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(fgCol
);
1148 if ( !(m_coloursCustomized
& 0x0020) )
1149 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1151 if ( !(m_coloursCustomized
& 0x0040) )
1152 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1154 if ( !(m_coloursCustomized
& 0x0080) )
1155 m_colLine
= m_colCapBack
;
1157 if ( !(m_coloursCustomized
& 0x0100) )
1158 m_colDisPropFore
= m_colCapFore
;
1160 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1163 // -----------------------------------------------------------------------
1165 void wxPropertyGrid::ResetColours()
1167 m_coloursCustomized
= 0;
1174 // -----------------------------------------------------------------------
1176 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1178 // Must disable active editor.
1181 bool selRes
= ClearSelection();
1182 wxPG_CHECK_MSG_DBG( selRes
,
1184 wxT("failed to deselect a property (editor probably had invalid value)") );
1187 // TODO: Following code is disabled with wxMac because
1188 // it is reported to fail. I (JMS) cannot debug it
1189 // personally right now.
1190 #if !defined(__WXMAC__)
1191 bool res
= wxScrolledWindow::SetFont( font
);
1194 CalculateFontAndBitmapStuff( m_vspacing
);
1197 m_pState
->CalculateFontAndBitmapStuff(m_vspacing
);
1205 // TODO: Remove after SetFont crash fixed.
1206 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1208 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."));
1214 // -----------------------------------------------------------------------
1216 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1219 m_coloursCustomized
|= 0x80;
1223 // -----------------------------------------------------------------------
1225 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1228 m_coloursCustomized
|= 0x01;
1232 // -----------------------------------------------------------------------
1234 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1236 m_colPropBack
= col
;
1237 m_coloursCustomized
|= 0x08;
1239 // Set the cached brush as well.
1240 ((wxPGBrush
*)m_arrBgBrushes
.Item(0))->SetColour2(col
);
1245 // -----------------------------------------------------------------------
1247 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1249 m_colPropFore
= col
;
1250 m_coloursCustomized
|= 0x10;
1252 // Set the cached colour as well.
1253 ((wxPGColour
*)m_arrFgCols
.Item(0))->SetColour2(col
);
1258 // -----------------------------------------------------------------------
1260 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1262 m_colEmptySpace
= col
;
1267 // -----------------------------------------------------------------------
1269 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1271 m_colDisPropFore
= col
;
1272 m_coloursCustomized
|= 0x100;
1276 // -----------------------------------------------------------------------
1278 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1281 m_coloursCustomized
|= 0x20;
1285 // -----------------------------------------------------------------------
1287 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1290 m_coloursCustomized
|= 0x40;
1294 // -----------------------------------------------------------------------
1296 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1299 m_coloursCustomized
|= 0x02;
1303 // -----------------------------------------------------------------------
1305 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1308 m_coloursCustomized
|= 0x04;
1310 // Set the cached colour as well.
1311 ((wxPGColour
*)m_arrFgCols
.Item(1))->SetColour2(col
);
1316 // -----------------------------------------------------------------------
1318 void wxPropertyGrid::SetBackgroundColourIndex( wxPGProperty
* p
, int index
)
1320 unsigned char ind
= index
;
1322 p
->m_bgColIndex
= ind
;
1325 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1326 SetBackgroundColourIndex(p
->Item(i
),index
);
1329 // -----------------------------------------------------------------------
1331 void wxPropertyGrid::SetPropertyBackgroundColour( wxPGPropArg id
, const wxColour
& colour
)
1333 wxPG_PROP_ARG_CALL_PROLOG()
1338 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1340 // As it is most likely that the previous colour is used, start comparison
1342 for ( i
=(m_arrBgBrushes
.size()-1); i
>0; i
-- )
1344 if ( ((wxPGBrush
*)m_arrBgBrushes
.Item(i
))->GetColourAsLong() == colAsLong
)
1353 colInd
= m_arrBgBrushes
.size();
1354 wxCHECK_RET( colInd
< 256, wxT("wxPropertyGrid: Warning - Only 255 different property background colours allowed.") );
1355 m_arrBgBrushes
.Add( (void*)new wxPGBrush(colour
) );
1359 SetBackgroundColourIndex(p
,colInd
);
1361 // If this was on a visible grid, then draw it.
1362 DrawItemAndChildren(p
);
1365 // -----------------------------------------------------------------------
1367 wxColour
wxPropertyGrid::GetPropertyBackgroundColour( wxPGPropArg id
) const
1369 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1371 return ((wxPGBrush
*)m_arrBgBrushes
.Item(p
->m_bgColIndex
))->GetColour();
1374 // -----------------------------------------------------------------------
1376 void wxPropertyGrid::SetTextColourIndex( wxPGProperty
* p
, int index
, int flags
)
1378 unsigned char ind
= index
;
1380 p
->m_fgColIndex
= ind
;
1382 if ( p
->GetChildCount() && (flags
& wxPG_RECURSE
) )
1385 for ( i
=0; i
<p
->GetChildCount(); i
++ )
1386 SetTextColourIndex( p
->Item(i
), index
, flags
);
1390 // -----------------------------------------------------------------------
1392 int wxPropertyGrid::CacheColour( const wxColour
& colour
)
1397 long colAsLong
= wxPG_COLOUR(colour
.Red(),colour
.Green(),colour
.Blue());
1399 // As it is most likely that the previous colour is used, start comparison
1401 for ( i
=(m_arrFgCols
.size()-1); i
>0; i
-- )
1403 if ( ((wxPGColour
*)m_arrFgCols
.Item(i
))->GetColourAsLong() == colAsLong
)
1412 colInd
= m_arrFgCols
.size();
1413 wxCHECK_MSG( colInd
< 256, 0, wxT("wxPropertyGrid: Warning - Only 255 different property foreground colours allowed.") );
1414 m_arrFgCols
.Add( (void*)new wxPGColour(colour
) );
1420 // -----------------------------------------------------------------------
1422 void wxPropertyGrid::SetPropertyTextColour( wxPGPropArg id
, const wxColour
& colour
,
1425 wxPG_PROP_ARG_CALL_PROLOG()
1427 if ( p
->IsCategory() )
1429 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1430 cat
->SetTextColIndex(CacheColour(colour
));
1436 flags
|= wxPG_RECURSE
;
1437 SetTextColourIndex(p
, CacheColour(colour
), flags
);
1439 DrawItemAndChildren(p
);
1442 // -----------------------------------------------------------------------
1444 wxColour
wxPropertyGrid::GetPropertyTextColour( wxPGPropArg id
) const
1446 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
1448 return wxColour(*((wxPGColour
*)m_arrFgCols
.Item(p
->m_fgColIndex
)));
1451 void wxPropertyGrid::SetPropertyColoursToDefault( wxPGPropArg id
)
1453 wxPG_PROP_ARG_CALL_PROLOG()
1455 SetBackgroundColourIndex( p
, 0 );
1456 SetTextColourIndex( p
, 0, wxPG_RECURSE
);
1458 if ( p
->IsCategory() )
1460 wxPropertyCategory
* cat
= (wxPropertyCategory
*) p
;
1461 cat
->SetTextColIndex(1);
1465 // -----------------------------------------------------------------------
1466 // wxPropertyGrid property adding and removal
1467 // -----------------------------------------------------------------------
1469 void wxPropertyGrid::PrepareAfterItemsAdded()
1471 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1473 m_pState
->m_itemsAdded
= 0;
1475 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1478 RecalculateVirtualSize();
1481 // -----------------------------------------------------------------------
1482 // wxPropertyGrid property value setting and getting
1483 // -----------------------------------------------------------------------
1485 void wxPropertyGrid::DoSetPropertyValueUnspecified( wxPGProperty
* p
)
1487 m_pState
->DoSetPropertyValueUnspecified(p
);
1488 DrawItemAndChildren(p
);
1490 wxPGProperty
* parent
= p
->GetParent();
1491 while ( (parent
->GetFlags() & wxPG_PROP_PARENTAL_FLAGS
) == wxPG_PROP_MISC_PARENT
)
1494 parent
= parent
->GetParent();
1498 // -----------------------------------------------------------------------
1499 // wxPropertyGrid property operations
1500 // -----------------------------------------------------------------------
1502 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1504 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1508 bool changed
= false;
1510 // Is it inside collapsed section?
1511 if ( !p
->IsVisible() )
1514 wxPGProperty
* parent
= p
->GetParent();
1515 wxPGProperty
* grandparent
= parent
->GetParent();
1517 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1518 Expand( grandparent
);
1526 GetViewStart(&vx
,&vy
);
1527 vy
*=wxPG_PIXELS_PER_UNIT
;
1533 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1534 m_iFlags
|= wxPG_FL_SCROLLED
;
1537 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1539 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1540 m_iFlags
|= wxPG_FL_SCROLLED
;
1550 // -----------------------------------------------------------------------
1551 // wxPropertyGrid helper methods called by properties
1552 // -----------------------------------------------------------------------
1554 // Control font changer helper.
1555 void wxPropertyGrid::SetCurControlBoldFont()
1557 wxASSERT( m_wndEditor
);
1558 m_wndEditor
->SetFont( m_captionFont
);
1561 // -----------------------------------------------------------------------
1563 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1566 #if wxPG_SMALL_SCREEN
1567 // On small-screen devices, always show dialogs with default position and size.
1568 return wxDefaultPosition
;
1570 int splitterX
= GetSplitterPosition();
1574 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1576 ImprovedClientToScreen( &x
, &y
);
1578 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1579 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1586 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1596 new_y
= y
+ m_lineHeight
;
1598 return wxPoint(new_x
,new_y
);
1602 // -----------------------------------------------------------------------
1604 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1606 if ( src_str
.length() == 0 )
1612 bool prev_is_slash
= false;
1614 wxString::const_iterator i
= src_str
.begin();
1618 for ( ; i
!= src_str
.end(); i
++ )
1622 if ( a
!= wxS('\\') )
1624 if ( !prev_is_slash
)
1630 if ( a
== wxS('n') )
1633 dst_str
<< wxS('\n');
1635 dst_str
<< wxS('\n');
1638 else if ( a
== wxS('t') )
1639 dst_str
<< wxS('\t');
1643 prev_is_slash
= false;
1647 if ( prev_is_slash
)
1649 dst_str
<< wxS('\\');
1650 prev_is_slash
= false;
1654 prev_is_slash
= true;
1661 // -----------------------------------------------------------------------
1663 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1665 if ( src_str
.length() == 0 )
1671 wxString::const_iterator i
= src_str
.begin();
1672 wxUniChar prev_a
= wxS('\0');
1676 for ( ; i
!= src_str
.end(); i
++ )
1680 if ( a
>= wxS(' ') )
1682 // This surely is not something that requires an escape sequence.
1687 // This might need...
1688 if ( a
== wxS('\r') )
1690 // DOS style line end.
1691 // Already taken care below
1693 else if ( a
== wxS('\n') )
1694 // UNIX style line end.
1695 dst_str
<< wxS("\\n");
1696 else if ( a
== wxS('\t') )
1698 dst_str
<< wxS('\t');
1701 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1711 // -----------------------------------------------------------------------
1713 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1717 return (wxPGProperty
*) NULL
;
1720 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1723 // -----------------------------------------------------------------------
1724 // wxPropertyGrid graphics related methods
1725 // -----------------------------------------------------------------------
1727 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1731 // Update everything inside the box
1732 wxRect r
= GetUpdateRegion().GetBox();
1734 dc
.SetPen(m_colEmptySpace
);
1735 dc
.SetBrush(m_colEmptySpace
);
1736 dc
.DrawRectangle(r
);
1739 // -----------------------------------------------------------------------
1741 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1742 wxPGProperty
* property
) const
1744 // Prepare rectangle to be used
1746 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1747 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1749 #if (wxPG_USE_RENDERER_NATIVE)
1751 #elif wxPG_ICON_WIDTH
1752 // Drawing expand/collapse button manually
1753 dc
.SetPen(m_colPropFore
);
1754 if ( property
->IsCategory() )
1755 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1757 dc
.SetBrush(m_colPropBack
);
1759 dc
.DrawRectangle( r
);
1760 int _y
= r
.y
+(m_iconWidth
/2);
1761 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1766 if ( property
->IsExpanded() )
1768 // wxRenderer functions are non-mutating in nature, so it
1769 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1770 // Hopefully this does not cause problems.
1771 #if (wxPG_USE_RENDERER_NATIVE)
1772 wxRendererNative::Get().DrawTreeItemButton(
1778 #elif wxPG_ICON_WIDTH
1787 #if (wxPG_USE_RENDERER_NATIVE)
1788 wxRendererNative::Get().DrawTreeItemButton(
1794 #elif wxPG_ICON_WIDTH
1795 int _x
= r
.x
+(m_iconWidth
/2);
1796 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1802 #if (wxPG_USE_RENDERER_NATIVE)
1804 #elif wxPG_ICON_WIDTH
1807 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1811 // -----------------------------------------------------------------------
1814 // This is the one called by OnPaint event handler and others.
1815 // topy and bottomy are already unscrolled (ie. physical)
1817 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1819 unsigned int bottomy
,
1820 const wxRect
* clipRect
)
1822 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1824 m_pState
->EnsureVirtualHeight();
1826 wxRect tempClipRect
;
1829 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1830 clipRect
= &tempClipRect
;
1833 // items added check
1834 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1836 int paintFinishY
= 0;
1838 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1841 bool isBuffered
= false;
1843 #if wxPG_DOUBLE_BUFFER
1844 wxMemoryDC
* bufferDC
= NULL
;
1846 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1848 if ( !m_doubleBuffer
)
1850 paintFinishY
= clipRect
->y
;
1855 bufferDC
= new wxMemoryDC();
1857 // If nothing was changed, then just copy from double-buffer
1858 bufferDC
->SelectObject( *m_doubleBuffer
);
1868 dc
.SetClippingRegion( *clipRect
);
1869 paintFinishY
= DoDrawItems( *dcPtr
, NULL
, NULL
, clipRect
, isBuffered
);
1872 #if wxPG_DOUBLE_BUFFER
1875 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1876 bufferDC
, 0, 0, wxCOPY
);
1877 dc
.DestroyClippingRegion(); // Is this really necessary?
1883 // Clear area beyond bottomY?
1884 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1886 dc
.SetPen(m_colEmptySpace
);
1887 dc
.SetBrush(m_colEmptySpace
);
1888 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1892 // -----------------------------------------------------------------------
1894 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1895 const wxPGProperty
* firstItem
,
1896 const wxPGProperty
* lastItem
,
1897 const wxRect
* clipRect
,
1898 bool isBuffered
) const
1900 // TODO: This should somehow be eliminated.
1901 wxRect tempClipRect
;
1904 wxASSERT(firstItem
);
1906 tempClipRect
= GetPropertyRect(firstItem
, lastItem
);
1907 clipRect
= &tempClipRect
;
1911 firstItem
= DoGetItemAtY(clipRect
->y
);
1915 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1917 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1920 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1923 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1924 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1926 int lh
= m_lineHeight
;
1929 int lastItemBottomY
;
1931 firstItemTopY
= clipRect
->y
;
1932 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1934 // Align y coordinates to item boundaries
1935 firstItemTopY
-= firstItemTopY
% lh
;
1936 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1937 lastItemBottomY
-= 1;
1939 // Entire range outside scrolled, visible area?
1940 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1943 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1947 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
1948 firstItem->GetLabel().c_str(),
1949 lastItem->GetLabel().c_str(),
1950 (int)(lastItemBottomY - firstItemTopY),
1952 (unsigned long)clipRect );
1957 long windowStyle
= m_windowStyle
;
1963 // With wxPG_DOUBLE_BUFFER, do double buffering
1964 // - buffer's y = 0, so align cliprect and coordinates to that
1966 #if wxPG_DOUBLE_BUFFER
1972 xRelMod
= clipRect
->x
;
1973 yRelMod
= clipRect
->y
;
1976 // clipRect conversion
1984 firstItemTopY
-= yRelMod
;
1985 lastItemBottomY
-= yRelMod
;
1988 wxUnusedVar(isBuffered
);
1991 int x
= m_marginWidth
- xRelMod
;
1993 const wxFont
& normalfont
= m_font
;
1995 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) ? true : false;
1997 bool isEnabled
= IsEnabled();
2000 // Prepare some pens and brushes that are often changed to.
2003 wxBrush
marginBrush(m_colMargin
);
2004 wxPen
marginPen(m_colMargin
);
2005 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
2006 wxPen
linepen(m_colLine
,1,wxSOLID
);
2008 // pen that has same colour as text
2009 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
2012 // Clear margin with background colour
2014 dc
.SetBrush( marginBrush
);
2015 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
2017 dc
.SetPen( *wxTRANSPARENT_PEN
);
2018 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
2021 const wxPGProperty
* selected
= m_selected
;
2022 const wxPropertyGridPageState
* state
= m_pState
;
2024 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2025 bool wasSelectedPainted
= false;
2028 // TODO: Only render columns that are within clipping region.
2030 dc
.SetFont(normalfont
);
2032 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
2033 int endScanBottomY
= lastItemBottomY
+ lh
;
2034 int y
= firstItemTopY
;
2037 // Pregenerate list of visible properties.
2038 wxArrayPGProperty visPropArray
;
2039 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
2041 for ( ; !it
.AtEnd(); it
.Next() )
2043 const wxPGProperty
* p
= *it
;
2045 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
2047 visPropArray
.push_back((wxPGProperty
*)p
);
2049 if ( y
> endScanBottomY
)
2056 visPropArray
.push_back(NULL
);
2058 wxPGProperty
* nextP
= visPropArray
[0];
2060 int gridWidth
= state
->m_width
;
2063 for ( unsigned int arrInd
=1;
2064 nextP
&& y
<= lastItemBottomY
;
2067 wxPGProperty
* p
= nextP
;
2068 nextP
= visPropArray
[arrInd
];
2070 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
2071 int textMarginHere
= x
;
2072 int renderFlags
= wxPGCellRenderer::Control
;
2074 int greyDepth
= m_marginWidth
;
2075 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
2076 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
2078 int greyDepthX
= greyDepth
- xRelMod
;
2080 // Use basic depth if in non-categoric mode and parent is base array.
2081 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
2083 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
2086 // Paint margin area
2087 dc
.SetBrush(marginBrush
);
2088 dc
.SetPen(marginPen
);
2089 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
2091 dc
.SetPen( linepen
);
2096 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
2102 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
2104 sx
+= state
->m_colWidths
[si
];
2105 dc
.DrawLine( sx
, y
, sx
, y2
);
2108 // Horizontal Line, below
2109 // (not if both this and next is category caption)
2110 if ( p
->IsCategory() &&
2111 nextP
&& nextP
->IsCategory() )
2112 dc
.SetPen(m_colCapBack
);
2114 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
2116 if ( p
== selected
)
2118 renderFlags
|= wxPGCellRenderer::Selected
;
2119 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2120 wasSelectedPainted
= true;
2128 if ( p
->IsCategory() )
2130 if ( p
->m_fgColIndex
== 0 )
2131 rowFgCol
= m_colCapFore
;
2133 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2134 rowBgBrush
= wxBrush(m_colCapBack
);
2136 else if ( p
!= selected
)
2138 // Disabled may get different colour.
2139 if ( !p
->IsEnabled() )
2140 rowFgCol
= m_colDisPropFore
;
2142 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2144 rowBgBrush
= *(wxPGBrush
*)m_arrBgBrushes
[p
->m_bgColIndex
];
2148 // Selected gets different colour.
2149 if ( reallyFocused
)
2151 rowFgCol
= m_colSelFore
;
2152 rowBgBrush
= wxBrush(m_colSelBack
);
2154 else if ( isEnabled
)
2156 rowFgCol
= *(wxPGColour
*)m_arrFgCols
[p
->m_fgColIndex
];
2157 rowBgBrush
= marginBrush
;
2161 rowFgCol
= m_colDisPropFore
;
2162 rowBgBrush
= wxBrush(m_colSelBack
);
2166 bool fontChanged
= false;
2168 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
2173 if ( p
->IsCategory() )
2175 // Captions are all cells merged as one
2176 dc
.SetFont(m_captionFont
);
2178 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
2180 dc
.SetBrush(rowBgBrush
);
2181 dc
.SetPen(rowBgBrush
.GetColour());
2182 dc
.SetTextForeground(rowFgCol
);
2184 dc
.DrawRectangle(cellRect
);
2187 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
2188 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
2191 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2192 DrawExpanderButton( dc
, butRect
, p
);
2196 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
2198 dc
.SetFont(m_captionFont
);
2204 int nextCellWidth
= state
->m_colWidths
[0];
2205 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
2206 int textXAdd
= textMarginHere
- greyDepthX
;
2208 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
2210 cellRect
.width
= nextCellWidth
- 1;
2212 bool ctrlCell
= false;
2215 if ( p
== selected
&& m_wndEditor
&& ci
== 1 )
2217 wxColour editorBgCol
= GetEditorControl()->GetBackgroundColour();
2218 dc
.SetBrush(editorBgCol
);
2219 dc
.SetPen(editorBgCol
);
2220 dc
.SetTextForeground(m_colPropFore
);
2222 if ( m_dragStatus
== 0 && !(m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
2227 dc
.SetBrush(rowBgBrush
);
2228 dc
.SetPen(rowBgBrush
.GetColour());
2229 dc
.SetTextForeground(rowFgCol
);
2232 dc
.DrawRectangle(cellRect
);
2235 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
2236 DrawExpanderButton( dc
, butRect
, p
);
2238 dc
.SetClippingRegion(cellRect
);
2240 cellRect
.x
+= textXAdd
;
2241 cellRect
.width
-= textXAdd
;
2246 wxPGCellRenderer
* renderer
;
2247 int cmnVal
= p
->GetCommonValue();
2248 if ( cmnVal
== -1 || ci
!= 1 )
2250 renderer
= p
->GetCellRenderer(ci
);
2251 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2255 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
2256 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1, renderFlags
);
2260 cellX
+= state
->m_colWidths
[ci
];
2261 if ( ci
< (state
->m_colWidths
.size()-1) )
2262 nextCellWidth
= state
->m_colWidths
[ci
+1];
2264 dc
.DestroyClippingRegion(); // Is this really necessary?
2270 dc
.SetFont(normalfont
);
2275 // Refresh editor controls (seems not needed on msw)
2276 // NOTE: This code is mandatory for GTK!
2277 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2278 if ( wasSelectedPainted
)
2281 m_wndEditor
->Refresh();
2283 m_wndEditor2
->Refresh();
2290 // -----------------------------------------------------------------------
2292 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2296 if ( m_width
< 10 || m_height
< 10 ||
2297 !m_pState
->m_properties
->GetChildCount() ||
2298 p1
== (wxPGProperty
*) NULL
)
2299 return wxRect(0,0,0,0);
2304 // Return rect which encloses the given property range
2306 int visTop
= p1
->GetY();
2309 visBottom
= p2
->GetY() + m_lineHeight
;
2311 visBottom
= m_height
+ visTop
;
2313 // If seleced property is inside the range, we'll extend the range to include
2315 wxPGProperty
* selected
= m_selected
;
2318 int selectedY
= selected
->GetY();
2319 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2321 wxWindow
* editor
= GetEditorControl();
2324 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2325 if ( visBottom2
> visBottom
)
2326 visBottom
= visBottom2
;
2331 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2334 // -----------------------------------------------------------------------
2336 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2341 if ( m_pState
->m_itemsAdded
)
2342 PrepareAfterItemsAdded();
2344 wxRect r
= GetPropertyRect(p1
, p2
);
2347 m_canvas
->RefreshRect(r
);
2351 // -----------------------------------------------------------------------
2353 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2355 if ( p
== m_selected
)
2356 DoSelectProperty(p
, wxPG_SEL_FORCE
);
2358 DrawItemAndChildren(p
);
2361 // -----------------------------------------------------------------------
2363 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2368 // Draw item, children, and parent too, if it is not category
2369 wxPGProperty
* parent
= p
->GetParent();
2372 !parent
->IsCategory() &&
2373 parent
->GetParent() )
2376 parent
= parent
->GetParent();
2379 DrawItemAndChildren(p
);
2382 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2384 wxCHECK_RET( p
, wxT("invalid property id") );
2386 // Do not draw if in non-visible page
2387 if ( p
->GetParentState() != m_pState
)
2390 // do not draw a single item if multiple pending
2391 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2394 wxWindow
* wndPrimary
= GetEditorControl();
2396 // Update child control.
2397 if ( m_selected
&& m_selected
->GetParent() == p
)
2398 m_selected
->UpdateControl(wndPrimary
);
2400 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2402 DrawItems(p
, lastDrawn
);
2405 // -----------------------------------------------------------------------
2407 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2408 const wxRect
*rect
)
2410 PrepareAfterItemsAdded();
2412 wxWindow::Refresh(false);
2414 // TODO: Coordinate translation
2415 m_canvas
->Refresh(false, rect
);
2417 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2418 // I think this really helps only GTK+1.2
2419 if ( m_wndEditor
) m_wndEditor
->Refresh();
2420 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2424 // -----------------------------------------------------------------------
2425 // wxPropertyGrid global operations
2426 // -----------------------------------------------------------------------
2428 void wxPropertyGrid::Clear()
2432 bool selRes
= DoSelectProperty(NULL
, wxPG_SEL_DELETING
); // This must be before state clear
2433 wxPG_CHECK_RET_DBG( selRes
,
2434 wxT("failed to deselect a property (editor probably had invalid value)") );
2437 m_pState
->DoClear();
2443 RecalculateVirtualSize();
2445 // Need to clear some area at the end
2447 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2450 // -----------------------------------------------------------------------
2452 bool wxPropertyGrid::EnableCategories( bool enable
)
2454 if ( !ClearSelection() )
2460 // Enable categories
2463 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2468 // Disable categories
2470 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2473 if ( !m_pState
->EnableCategories(enable
) )
2478 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2480 m_pState
->m_itemsAdded
= 1; // force
2481 PrepareAfterItemsAdded();
2485 m_pState
->m_itemsAdded
= 1;
2487 // No need for RecalculateVirtualSize() here - it is already called in
2488 // wxPropertyGridPageState method above.
2495 // -----------------------------------------------------------------------
2497 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2499 wxASSERT( pNewState
);
2500 wxASSERT( pNewState
->GetGrid() );
2502 if ( pNewState
== m_pState
)
2505 wxPGProperty
* oldSelection
= m_selected
;
2510 bool selRes
= ClearSelection();
2511 wxPG_CHECK_RET_DBG( selRes
,
2512 wxT("failed to deselect a property (editor probably had invalid value)") );
2515 m_pState
->m_selected
= oldSelection
;
2517 bool orig_mode
= m_pState
->IsInNonCatMode();
2518 bool new_state_mode
= pNewState
->IsInNonCatMode();
2520 m_pState
= pNewState
;
2523 int pgWidth
= GetClientSize().x
;
2524 if ( HasVirtualWidth() )
2526 int minWidth
= pgWidth
;
2527 if ( pNewState
->m_width
< minWidth
)
2529 pNewState
->m_width
= minWidth
;
2530 pNewState
->CheckColumnWidths();
2536 // Just in case, fully re-center splitter
2537 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2538 pNewState
->m_fSplitterX
= -1.0;
2540 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2543 m_propHover
= (wxPGProperty
*) NULL
;
2545 // If necessary, convert state to correct mode.
2546 if ( orig_mode
!= new_state_mode
)
2548 // This should refresh as well.
2549 EnableCategories( orig_mode
?false:true );
2551 else if ( !m_frozen
)
2553 // Refresh, if not frozen.
2554 if ( m_pState
->m_itemsAdded
)
2555 PrepareAfterItemsAdded();
2558 if ( m_pState
->m_selected
)
2559 DoSelectProperty( m_pState
->m_selected
);
2561 RecalculateVirtualSize(0);
2565 m_pState
->m_itemsAdded
= 1;
2568 // -----------------------------------------------------------------------
2570 void wxPropertyGrid::SortChildren( wxPGPropArg id
)
2572 wxPG_PROP_ARG_CALL_PROLOG()
2574 m_pState
->SortChildren( p
);
2577 // -----------------------------------------------------------------------
2579 void wxPropertyGrid::Sort()
2581 bool selRes
= ClearSelection(); // This must be before state clear
2582 wxPG_CHECK_RET_DBG( selRes
,
2583 wxT("failed to deselect a property (editor probably had invalid value)") );
2588 // -----------------------------------------------------------------------
2590 // Call to SetSplitterPosition will always disable splitter auto-centering
2591 // if parent window is shown.
2592 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2594 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2597 wxPropertyGridPageState
* state
= m_pState
;
2599 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2604 CorrectEditorWidgetSizeX();
2610 // -----------------------------------------------------------------------
2612 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2614 SetSplitterPosition( m_width
/2, true );
2615 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2616 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2619 // -----------------------------------------------------------------------
2620 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2621 // -----------------------------------------------------------------------
2623 // Returns nearest paint visible property (such that will be painted unless
2624 // window is scrolled or resized). If given property is paint visible, then
2625 // it itself will be returned
2626 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2628 int vx
,vy1
;// Top left corner of client
2629 GetViewStart(&vx
,&vy1
);
2630 vy1
*= wxPG_PIXELS_PER_UNIT
;
2632 int vy2
= vy1
+ m_height
;
2633 int propY
= p
->GetY2(m_lineHeight
);
2635 if ( (propY
+ m_lineHeight
) < vy1
)
2638 return DoGetItemAtY( vy1
);
2640 else if ( propY
> vy2
)
2643 return DoGetItemAtY( vy2
);
2646 // Itself paint visible
2651 // -----------------------------------------------------------------------
2653 void wxPropertyGrid::SetButtonShortcut( int keycode
, bool ctrlDown
, bool altDown
)
2657 m_pushButKeyCode
= keycode
;
2658 m_pushButKeyCodeNeedsCtrl
= ctrlDown
? 1 : 0;
2659 m_pushButKeyCodeNeedsAlt
= altDown
? 1 : 0;
2663 m_pushButKeyCode
= WXK_DOWN
;
2664 m_pushButKeyCodeNeedsCtrl
= 0;
2665 m_pushButKeyCodeNeedsAlt
= 1;
2669 // -----------------------------------------------------------------------
2670 // Methods related to change in value, value modification and sending events
2671 // -----------------------------------------------------------------------
2673 // commits any changes in editor of selected property
2674 // return true if validation did not fail
2675 // flags are same as with DoSelectProperty
2676 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2678 // Committing already?
2679 if ( m_inCommitChangesFromEditor
)
2682 // Don't do this if already processing editor event. It might
2683 // induce recursive dialogs and crap like that.
2684 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2686 if ( m_inDoPropertyChanged
)
2693 IsEditorsValueModified() &&
2694 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2697 m_inCommitChangesFromEditor
= 1;
2699 wxVariant
variant(m_selected
->GetValueRef());
2700 bool valueIsPending
= false;
2702 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2703 // due to another window getting focus
2704 wxWindow
* oldFocus
= m_curFocused
;
2706 bool validationFailure
= false;
2707 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2709 m_chgInfo_changedProperty
= NULL
;
2711 // If truly modified, schedule value as pending.
2712 if ( m_selected
->GetEditorClass()->GetValueFromControl( variant
, m_selected
, GetEditorControl() ) )
2714 if ( DoEditorValidate() &&
2715 PerformValidation(m_selected
, variant
) )
2717 valueIsPending
= true;
2721 validationFailure
= true;
2726 EditorsValueWasNotModified();
2731 m_inCommitChangesFromEditor
= 0;
2733 if ( validationFailure
&& !forceSuccess
)
2737 oldFocus
->SetFocus();
2738 m_curFocused
= oldFocus
;
2741 res
= OnValidationFailure(m_selected
, variant
);
2743 // Now prevent further validation failure messages
2746 EditorsValueWasNotModified();
2747 OnValidationFailureReset(m_selected
);
2750 else if ( valueIsPending
)
2752 DoPropertyChanged( m_selected
, flags
);
2753 EditorsValueWasNotModified();
2762 // -----------------------------------------------------------------------
2764 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
)
2767 // Runs all validation functionality.
2768 // Returns true if value passes all tests.
2771 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2773 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2775 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2780 // Adapt list to child values, if necessary
2781 wxVariant listValue
= pendingValue
;
2782 wxVariant
* pPendingValue
= &pendingValue
;
2783 wxVariant
* pList
= NULL
;
2785 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2786 // string value, then we need treat as it was changed instead
2787 // (or, in addition, as is the case with composite string parent).
2788 // This includes creating list variant for child values.
2790 wxPGProperty
* pwc
= p
->GetParent();
2791 wxPGProperty
* changedProperty
= p
;
2792 wxPGProperty
* baseChangedProperty
= changedProperty
;
2793 wxVariant bcpPendingList
;
2795 listValue
= pendingValue
;
2796 listValue
.SetName(p
->GetBaseName());
2799 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2801 wxVariantList tempList
;
2802 wxVariant
lv(tempList
, pwc
->GetBaseName());
2803 lv
.Append(listValue
);
2805 pPendingValue
= &listValue
;
2807 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2809 baseChangedProperty
= pwc
;
2810 bcpPendingList
= lv
;
2813 changedProperty
= pwc
;
2814 pwc
= pwc
->GetParent();
2818 wxPGProperty
* evtChangingProperty
= changedProperty
;
2820 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2822 value
= *pPendingValue
;
2826 // Convert list to child values
2827 pList
= pPendingValue
;
2828 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2831 wxVariant evtChangingValue
= value
;
2833 // FIXME: After proper ValueToString()s added, remove
2834 // this. It is just a temporary fix, as evt_changing
2835 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2836 // (unless it is selected, and textctrl editor is open).
2837 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2839 evtChangingProperty
= baseChangedProperty
;
2840 if ( evtChangingProperty
!= p
)
2842 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2846 evtChangingValue
= pendingValue
;
2850 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2852 if ( changedProperty
== m_selected
)
2854 wxASSERT( m_wndEditor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2855 evtChangingValue
= ((wxTextCtrl
*)m_wndEditor
)->GetValue();
2859 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2863 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2864 m_chgInfo_changedProperty
= changedProperty
;
2865 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2866 m_chgInfo_pendingValue
= value
;
2869 m_chgInfo_valueList
= *pList
;
2871 m_chgInfo_valueList
.MakeNull();
2873 // If changedProperty is not property which value was edited,
2874 // then call wxPGProperty::ValidateValue() for that as well.
2875 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2877 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2881 // SendEvent returns true if event was vetoed
2882 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
, &evtChangingValue
, 0 ) )
2888 // -----------------------------------------------------------------------
2890 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2892 if ( !msg
.length() )
2896 if ( !wxPGGlobalVars
->m_offline
)
2898 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2901 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2904 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
2907 pStatusBar
->SetStatusText(msg
);
2915 ::wxMessageBox(msg
, _T("Property Error"));
2918 // -----------------------------------------------------------------------
2920 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
2922 int vfb
= m_validationInfo
.m_failureBehavior
;
2924 if ( vfb
& wxPG_VFB_BEEP
)
2927 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
2928 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
2930 wxASSERT_MSG( !property
->GetCell(0) && !property
->GetCell(1),
2931 wxT("Currently wxPG_VFB_MARK_CELL only works with properties with standard first two cells") );
2933 if ( !property
->GetCell(0) && !property
->GetCell(1) )
2935 wxColour vfbFg
= *wxWHITE
;
2936 wxColour vfbBg
= *wxRED
;
2937 property
->SetCell(0, new wxPGCell(property
->GetLabel(), wxNullBitmap
, vfbFg
, vfbBg
));
2938 property
->SetCell(1, new wxPGCell(property
->GetDisplayedString(), wxNullBitmap
, vfbFg
, vfbBg
));
2940 DrawItemAndChildren(property
);
2942 if ( property
== m_selected
)
2944 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2946 wxWindow
* editor
= GetEditorControl();
2949 editor
->SetForegroundColour(vfbFg
);
2950 editor
->SetBackgroundColour(vfbBg
);
2956 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
2958 wxString msg
= m_validationInfo
.m_failureMessage
;
2960 if ( !msg
.length() )
2961 msg
= _T("You have entered invalid value. Press ESC to cancel editing.");
2963 DoShowPropertyError(property
, msg
);
2966 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
2969 // -----------------------------------------------------------------------
2971 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
2973 int vfb
= m_validationInfo
.m_failureBehavior
;
2975 if ( vfb
& wxPG_VFB_MARK_CELL
)
2977 property
->SetCell(0, NULL
);
2978 property
->SetCell(1, NULL
);
2980 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2982 if ( property
== m_selected
&& GetEditorControl() )
2984 // Calling this will recreate the control, thus resetting its colour
2985 RefreshProperty(property
);
2989 DrawItemAndChildren(property
);
2994 // -----------------------------------------------------------------------
2996 // flags are same as with DoSelectProperty
2997 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
2999 if ( m_inDoPropertyChanged
)
3002 wxWindow
* editor
= GetEditorControl();
3004 m_pState
->m_anyModified
= 1;
3006 m_inDoPropertyChanged
= 1;
3008 // Maybe need to update control
3009 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
3011 // These values were calculated in PerformValidation()
3012 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
3013 wxVariant value
= m_chgInfo_pendingValue
;
3015 wxPGProperty
* topPaintedProperty
= changedProperty
;
3017 while ( !topPaintedProperty
->IsCategory() &&
3018 !topPaintedProperty
->IsRoot() )
3020 topPaintedProperty
= topPaintedProperty
->GetParent();
3023 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
3025 // Set as Modified (not if dragging just began)
3026 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
3028 p
->m_flags
|= wxPG_PROP_MODIFIED
;
3029 if ( p
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3032 SetCurControlBoldFont();
3038 // Propagate updates to parent(s)
3040 wxPGProperty
* prevPwc
= NULL
;
3042 while ( prevPwc
!= topPaintedProperty
)
3044 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
3046 if ( pwc
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3049 SetCurControlBoldFont();
3053 pwc
= pwc
->GetParent();
3056 // Draw the actual property
3057 DrawItemAndChildren( topPaintedProperty
);
3060 // If value was set by wxPGProperty::OnEvent, then update the editor
3062 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
3065 p
->GetEditorClass()->UpdateControl(p
, editor
);
3069 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3070 if ( m_wndEditor
) m_wndEditor
->Refresh();
3071 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
3076 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
3078 // If top parent has composite string value, then send to child parents,
3079 // starting from baseChangedProperty.
3080 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
3082 pwc
= m_chgInfo_baseChangedProperty
;
3084 while ( pwc
!= changedProperty
)
3086 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
, selFlags
);
3087 pwc
= pwc
->GetParent();
3091 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
, selFlags
);
3093 m_inDoPropertyChanged
= 0;
3098 // -----------------------------------------------------------------------
3100 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
3102 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3104 m_chgInfo_changedProperty
= NULL
;
3106 if ( PerformValidation(p
, newValue
) )
3108 DoPropertyChanged(p
);
3113 OnValidationFailure(p
, newValue
);
3119 // -----------------------------------------------------------------------
3121 // Runs wxValidator for the selected property
3122 bool wxPropertyGrid::DoEditorValidate()
3127 // -----------------------------------------------------------------------
3129 bool wxPropertyGrid::ProcessEvent(wxEvent
& event
)
3131 wxWindow
* wnd
= (wxWindow
*) event
.GetEventObject();
3132 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxWindow
)) )
3134 wxWindow
* parent
= wnd
->GetParent();
3137 (parent
== m_canvas
||
3138 parent
->GetParent() == m_canvas
) )
3140 OnCustomEditorEvent((wxCommandEvent
&)event
);
3144 return wxPanel::ProcessEvent(event
);
3147 // -----------------------------------------------------------------------
3149 // NB: It may really not be wxCommandEvent - must check if necessary
3151 void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent
&event
)
3153 wxPGProperty
* selected
= m_selected
;
3156 // Somehow, event is handled after property has been deselected.
3157 // Possibly, but very rare.
3161 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
3164 wxVariant
pendingValue(selected
->GetValueRef());
3165 wxWindow
* wnd
= GetEditorControl();
3167 bool wasUnspecified
= selected
->IsValueUnspecified();
3168 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
3170 bool valueIsPending
= false;
3172 m_chgInfo_changedProperty
= NULL
;
3174 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
3177 // Filter out excess wxTextCtrl modified events
3178 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
3180 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
3182 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
3184 wxString newTcValue
= tc
->GetValue();
3185 if ( m_prevTcValue
== newTcValue
)
3188 m_prevTcValue
= newTcValue
;
3191 SetInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3193 bool validationFailure
= false;
3194 bool buttonWasHandled
= false;
3197 // Try common button handling
3198 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3200 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
3204 buttonWasHandled
= true;
3205 // Store as res2, as previously (and still currently alternatively)
3206 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3207 // in wxPGProperty::OnEvent().
3208 adapter
->ShowDialog( this, selected
);
3213 if ( !buttonWasHandled
)
3217 // First call editor class' event handler.
3218 const wxPGEditor
* editor
= selected
->GetEditorClass();
3220 if ( editor
->OnEvent( this, selected
, wnd
, event
) )
3222 // If changes, validate them
3223 if ( DoEditorValidate() )
3225 if ( editor
->GetValueFromControl( pendingValue
, m_selected
, wnd
) )
3226 valueIsPending
= true;
3230 validationFailure
= true;
3235 // Then the property's custom handler (must be always called, unless
3236 // validation failed).
3237 if ( !validationFailure
)
3238 buttonWasHandled
= selected
->OnEvent( this, wnd
, event
);
3241 // SetValueInEvent(), as called in one of the functions referred above
3242 // overrides editor's value.
3243 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
3245 valueIsPending
= true;
3246 pendingValue
= m_changeInEventValue
;
3247 selFlags
|= wxPG_SEL_DIALOGVAL
;
3250 if ( !validationFailure
&& valueIsPending
)
3251 if ( !PerformValidation(m_selected
, pendingValue
) )
3252 validationFailure
= true;
3254 if ( validationFailure
)
3256 OnValidationFailure(selected
, pendingValue
);
3258 else if ( valueIsPending
)
3260 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3262 DoPropertyChanged(selected
, selFlags
);
3263 EditorsValueWasNotModified();
3267 // No value after all
3269 // Let unhandled button click events go to the parent
3270 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3272 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3273 GetEventHandler()->AddPendingEvent(evt
);
3277 ClearInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3280 // -----------------------------------------------------------------------
3281 // wxPropertyGrid editor control helper methods
3282 // -----------------------------------------------------------------------
3284 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3286 int itemy
= p
->GetY2(m_lineHeight
);
3288 int cust_img_space
= 0;
3289 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3290 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3292 // TODO: If custom image detection changes from current, change this.
3293 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
/*p->m_flags & wxPG_PROP_CUSTOMIMAGE*/ )
3295 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3296 int imwid
= p
->OnMeasureImage().x
;
3297 if ( imwid
< 1 ) imwid
= wxPG_CUSTOM_IMAGE_WIDTH
;
3298 cust_img_space
= imwid
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
3303 splitterX
+cust_img_space
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3305 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-cust_img_space
-1,
3310 // -----------------------------------------------------------------------
3312 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3314 wxSize sz
= GetImageSize(p
, item
);
3315 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3316 wxPG_CUSTOM_IMAGE_SPACINGY
,
3321 // return size of custom paint image
3322 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3324 // If called with NULL property, then return default image
3325 // size for properties that use image.
3327 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3329 wxSize cis
= p
->OnMeasureImage(item
);
3331 int choiceCount
= p
->m_choices
.GetCount();
3332 int comVals
= p
->GetDisplayedCommonValueCount();
3333 if ( item
>= choiceCount
&& comVals
> 0 )
3335 unsigned int cvi
= item
-choiceCount
;
3336 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3338 else if ( item
>= 0 && choiceCount
== 0 )
3339 return wxSize(0, 0);
3344 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3349 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3356 // -----------------------------------------------------------------------
3358 // takes scrolling into account
3359 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3362 GetViewStart(&vx
,&vy
);
3363 vy
*=wxPG_PIXELS_PER_UNIT
;
3364 vx
*=wxPG_PIXELS_PER_UNIT
;
3367 ClientToScreen( px
, py
);
3370 // -----------------------------------------------------------------------
3372 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3375 GetViewStart(&pt2
.x
,&pt2
.y
);
3376 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3377 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3381 return m_pState
->HitTest(pt2
);
3384 // -----------------------------------------------------------------------
3386 // custom set cursor
3387 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3389 if ( type
== m_curcursor
&& !override
) return;
3391 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3393 if ( type
== wxCURSOR_SIZEWE
)
3394 cursor
= m_cursorSizeWE
;
3396 m_canvas
->SetCursor( *cursor
);
3401 // -----------------------------------------------------------------------
3402 // wxPropertyGrid property selection
3403 // -----------------------------------------------------------------------
3405 // Setups event handling for child control
3406 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3408 wxWindowID id
= argWnd
->GetId();
3410 if ( argWnd
== m_wndEditor
)
3412 argWnd
->Connect(id
, wxEVT_MOTION
,
3413 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3415 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3416 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3418 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3419 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3421 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3422 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3424 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3425 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3427 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3428 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3433 argWnd
->Connect(id
, wxEVT_NAVIGATION_KEY
,
3434 wxNavigationKeyEventHandler(wxPropertyGrid::OnNavigationKey
));
3437 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3438 wxKeyEventHandler(wxPropertyGrid::OnChildKeyDown
),
3440 argWnd
->Connect(id
, wxEVT_KEY_UP
,
3441 wxKeyEventHandler(wxPropertyGrid::OnChildKeyUp
),
3443 argWnd
->Connect(id
, wxEVT_KILL_FOCUS
,
3444 wxFocusEventHandler(wxPropertyGrid::OnFocusEvent
),
3448 void wxPropertyGrid::FreeEditors()
3450 // Do not free editors immediately if processing events
3451 if ( !m_windowsToDelete
)
3452 m_windowsToDelete
= new wxArrayPtrVoid
;
3456 m_windowsToDelete
->push_back(m_wndEditor2
);
3457 m_wndEditor2
->Hide();
3458 m_wndEditor2
= (wxWindow
*) NULL
;
3463 m_windowsToDelete
->push_back(m_wndEditor
);
3464 m_wndEditor
->Hide();
3465 m_wndEditor
= (wxWindow
*) NULL
;
3469 // Call with NULL to de-select property
3470 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3472 wxPanel
* canvas
= GetPanel();
3476 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3477 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3479 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3482 if ( m_inDoSelectProperty
)
3485 m_inDoSelectProperty
= 1;
3487 wxPGProperty
* prev
= m_selected
;
3490 // Delete windows pending for deletion
3491 if ( m_windowsToDelete
&& !m_inDoPropertyChanged
&& m_windowsToDelete
->size() )
3495 for ( i
=0; i
<m_windowsToDelete
->size(); i
++ )
3496 delete ((wxWindow
*)((*m_windowsToDelete
)[i
]));
3498 m_windowsToDelete
->clear();
3503 m_inDoSelectProperty
= 0;
3508 // If we are frozen, then just set the values.
3511 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3512 m_editorFocused
= 0;
3515 m_pState
->m_selected
= p
;
3517 // If frozen, always free controls. But don't worry, as Thaw will
3518 // recall SelectProperty to recreate them.
3521 // Prevent any further selection measures in this call
3522 p
= (wxPGProperty
*) NULL
;
3527 if ( m_selected
== p
&& !(flags
& wxPG_SEL_FORCE
) )
3529 // Only set focus if not deselecting
3532 if ( flags
& wxPG_SEL_FOCUS
)
3536 m_wndEditor
->SetFocus();
3537 m_editorFocused
= 1;
3546 m_inDoSelectProperty
= 0;
3551 // First, deactivate previous
3555 OnValidationFailureReset(m_selected
);
3557 // Must double-check if this is an selected in case of forceswitch
3560 if ( !CommitChangesFromEditor(flags
) )
3562 // Validation has failed, so we can't exit the previous editor
3563 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3564 // _("Invalid Value"),wxOK|wxICON_ERROR);
3565 m_inDoSelectProperty
= 0;
3573 m_selected
= (wxPGProperty
*) NULL
;
3574 m_pState
->m_selected
= (wxPGProperty
*) NULL
;
3576 // We need to always fully refresh the grid here
3579 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3580 EditorsValueWasNotModified();
3583 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3586 // Then, activate the one given.
3589 int propY
= p
->GetY2(m_lineHeight
);
3591 int splitterX
= GetSplitterPosition();
3592 m_editorFocused
= 0;
3594 m_pState
->m_selected
= p
;
3595 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3597 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3599 wxASSERT( m_wndEditor
== (wxWindow
*) NULL
);
3601 // Do we need OnMeasureCalls?
3602 wxSize imsz
= p
->OnMeasureImage();
3605 // Only create editor for non-disabled non-caption
3606 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3608 // do this for non-caption items
3612 // Do we need to paint the custom image, if any?
3613 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3614 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3615 !p
->GetEditorClass()->CanContainCustomImage()
3617 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3619 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3620 wxPoint goodPos
= grect
.GetPosition();
3621 #if wxPG_CREATE_CONTROLS_HIDDEN
3622 int coord_adjust
= m_height
- goodPos
.y
;
3623 goodPos
.y
+= coord_adjust
;
3626 const wxPGEditor
* editor
= p
->GetEditorClass();
3627 wxCHECK_MSG(editor
, false,
3628 wxT("NULL editor class not allowed"));
3630 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3632 wxPGWindowList wndList
= editor
->CreateControls(this,
3637 m_wndEditor
= wndList
.m_primary
;
3638 m_wndEditor2
= wndList
.m_secondary
;
3640 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3641 // value is drawn as normal, and m_wndEditor2 is assumed
3642 // to be a right-aligned button that triggers a separate editor
3647 wxASSERT_MSG( m_wndEditor
->GetParent() == canvas
,
3648 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3650 // Set validator, if any
3651 #if wxUSE_VALIDATORS
3652 wxValidator
* validator
= p
->GetValidator();
3654 m_wndEditor
->SetValidator(*validator
);
3657 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3658 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3660 // If it has modified status, use bold font
3661 // (must be done before capturing m_ctrlXAdjust)
3662 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3663 SetCurControlBoldFont();
3666 // Fix TextCtrl indentation
3667 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3668 wxTextCtrl
* tc
= NULL
;
3669 if ( m_wndEditor
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3670 tc
= ((wxOwnerDrawnComboBox
*)m_wndEditor
)->GetTextCtrl();
3672 tc
= wxDynamicCast(m_wndEditor
, wxTextCtrl
);
3674 ::SendMessage(GetHwndOf(tc
), EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0, 0));
3677 // Store x relative to splitter (we'll need it).
3678 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3680 // Check if background clear is not necessary
3681 wxPoint pos
= m_wndEditor
->GetPosition();
3682 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3684 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3687 m_wndEditor
->SetSizeHints(3, 3);
3689 #if wxPG_CREATE_CONTROLS_HIDDEN
3690 m_wndEditor
->Show(false);
3691 m_wndEditor
->Freeze();
3693 goodPos
= m_wndEditor
->GetPosition();
3694 goodPos
.y
-= coord_adjust
;
3695 m_wndEditor
->Move( goodPos
);
3698 wxWindow
* primaryCtrl
= GetEditorControl();
3699 SetupChildEventHandling(primaryCtrl
);
3701 // Focus and select all (wxTextCtrl, wxComboBox etc)
3702 if ( flags
& wxPG_SEL_FOCUS
)
3704 primaryCtrl
->SetFocus();
3706 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3712 wxASSERT_MSG( m_wndEditor2
->GetParent() == canvas
,
3713 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3715 // Get proper id for wndSecondary
3716 m_wndSecId
= m_wndEditor2
->GetId();
3717 wxWindowList children
= m_wndEditor2
->GetChildren();
3718 wxWindowList::iterator node
= children
.begin();
3719 if ( node
!= children
.end() )
3720 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3722 m_wndEditor2
->SetSizeHints(3,3);
3724 #if wxPG_CREATE_CONTROLS_HIDDEN
3725 wxRect sec_rect
= m_wndEditor2
->GetRect();
3726 sec_rect
.y
-= coord_adjust
;
3728 // Fine tuning required to fix "oversized"
3729 // button disappearance bug.
3730 if ( sec_rect
.y
< 0 )
3732 sec_rect
.height
+= sec_rect
.y
;
3735 m_wndEditor2
->SetSize( sec_rect
);
3737 m_wndEditor2
->Show();
3739 SetupChildEventHandling(m_wndEditor2
);
3741 // If no primary editor, focus to button to allow
3742 // it to interprete ENTER etc.
3743 // NOTE: Due to problems focusing away from it, this
3744 // has been disabled.
3746 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3747 m_wndEditor2->SetFocus();
3751 if ( flags
& wxPG_SEL_FOCUS
)
3752 m_editorFocused
= 1;
3757 // Make sure focus is in grid canvas (important for wxGTK, at least)
3761 EditorsValueWasNotModified();
3763 // If it's inside collapsed section, expand parent, scroll, etc.
3764 // Also, if it was partially visible, scroll it into view.
3765 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3770 #if wxPG_CREATE_CONTROLS_HIDDEN
3771 m_wndEditor
->Thaw();
3773 m_wndEditor
->Show(true);
3780 // Make sure focus is in grid canvas
3784 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3790 // Show help text in status bar.
3791 // (if found and grid not embedded in manager with help box and
3792 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3795 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3797 wxStatusBar
* statusbar
= (wxStatusBar
*) NULL
;
3798 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3800 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3802 statusbar
= frame
->GetStatusBar();
3807 const wxString
* pHelpString
= (const wxString
*) NULL
;
3811 pHelpString
= &p
->GetHelpString();
3812 if ( pHelpString
->length() )
3814 // Set help box text.
3815 statusbar
->SetStatusText( *pHelpString
);
3816 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3820 if ( (!pHelpString
|| !pHelpString
->length()) &&
3821 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3823 // Clear help box - but only if it was written
3824 // by us at previous time.
3825 statusbar
->SetStatusText( m_emptyString
);
3826 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3832 m_inDoSelectProperty
= 0;
3834 // call wx event handler (here so that it also occurs on deselection)
3835 SendEvent( wxEVT_PG_SELECTED
, m_selected
, NULL
, flags
);
3840 // -----------------------------------------------------------------------
3842 bool wxPropertyGrid::UnfocusEditor()
3844 if ( !m_selected
|| !m_wndEditor
|| m_frozen
)
3847 if ( !CommitChangesFromEditor(0) )
3851 DrawItem(m_selected
);
3856 // -----------------------------------------------------------------------
3858 // This method is not inline because it called dozens of times
3859 // (i.e. two-arg function calls create smaller code size).
3860 bool wxPropertyGrid::DoClearSelection()
3862 return DoSelectProperty((wxPGProperty
*)NULL
);
3865 // -----------------------------------------------------------------------
3866 // wxPropertyGrid expand/collapse state
3867 // -----------------------------------------------------------------------
3869 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
3871 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
3873 // If active editor was inside collapsed section, then disable it
3874 if ( m_selected
&& m_selected
->IsSomeParent (p
) )
3876 if ( !ClearSelection() )
3880 // Store dont-center-splitter flag 'cause we need to temporarily set it
3881 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3882 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3884 bool res
= m_pState
->DoCollapse(pwc
);
3889 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
3891 RecalculateVirtualSize();
3893 // Redraw etc. only if collapsed was visible.
3894 if (pwc
->IsVisible() &&
3896 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
3898 // When item is collapsed so that scrollbar would move,
3899 // graphics mess is about (unless we redraw everything).
3904 // Clear dont-center-splitter flag if it wasn't set
3905 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3910 // -----------------------------------------------------------------------
3912 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
3914 wxCHECK_MSG( p
, false, wxT("invalid property id") );
3916 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
3918 // Store dont-center-splitter flag 'cause we need to temporarily set it
3919 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3920 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3922 bool res
= m_pState
->DoExpand(pwc
);
3927 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
3929 RecalculateVirtualSize();
3931 // Redraw etc. only if expanded was visible.
3932 if ( pwc
->IsVisible() && !m_frozen
&&
3933 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
3937 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3940 DrawItems(pwc
, NULL
);
3945 // Clear dont-center-splitter flag if it wasn't set
3946 m_iFlags
= m_iFlags
& ~(wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3951 // -----------------------------------------------------------------------
3953 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
3956 return m_pState
->DoHideProperty(p
, hide
, flags
);
3959 ( m_selected
== p
|| m_selected
->IsSomeParent(p
) )
3962 if ( !ClearSelection() )
3966 m_pState
->DoHideProperty(p
, hide
, flags
);
3968 RecalculateVirtualSize();
3975 // -----------------------------------------------------------------------
3976 // wxPropertyGrid size related methods
3977 // -----------------------------------------------------------------------
3979 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
3981 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
3985 // If virtual height was changed, then recalculate editor control position(s)
3986 if ( m_pState
->m_vhCalcPending
)
3987 CorrectEditorWidgetPosY();
3989 m_pState
->EnsureVirtualHeight();
3992 int by1
= m_pState
->GetVirtualHeight();
3993 int by2
= m_pState
->GetActualVirtualHeight();
3996 wxString s
= wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1
, by2
);
3997 wxASSERT_MSG( false,
4003 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4005 int x
= m_pState
->m_width
;
4006 int y
= m_pState
->m_virtualHeight
;
4009 GetClientSize(&width
,&height
);
4011 // Now adjust virtual size.
4012 SetVirtualSize(x
, y
);
4018 // Adjust scrollbars
4019 if ( HasVirtualWidth() )
4021 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
4022 xPos
= GetScrollPos( wxHORIZONTAL
);
4025 if ( forceXPos
!= -1 )
4028 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
4031 int yAmount
= (y
+wxPG_PIXELS_PER_UNIT
+2)/wxPG_PIXELS_PER_UNIT
;
4032 int yPos
= GetScrollPos( wxVERTICAL
);
4034 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
4035 xAmount
, yAmount
, xPos
, yPos
, true );
4037 // Must re-get size now
4038 GetClientSize(&width
,&height
);
4040 if ( !HasVirtualWidth() )
4042 m_pState
->SetVirtualWidth(width
);
4049 m_canvas
->SetSize( x
, y
);
4051 m_pState
->CheckColumnWidths();
4054 CorrectEditorWidgetSizeX();
4056 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
4059 // -----------------------------------------------------------------------
4061 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
4063 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
4067 GetClientSize(&width
,&height
);
4072 #if wxPG_DOUBLE_BUFFER
4073 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
4075 int dblh
= (m_lineHeight
*2);
4076 if ( !m_doubleBuffer
)
4078 // Create double buffer bitmap to draw on, if none
4079 int w
= (width
>250)?width
:250;
4080 int h
= height
+ dblh
;
4082 m_doubleBuffer
= new wxBitmap( w
, h
);
4086 int w
= m_doubleBuffer
->GetWidth();
4087 int h
= m_doubleBuffer
->GetHeight();
4089 // Double buffer must be large enough
4090 if ( w
< width
|| h
< (height
+dblh
) )
4092 if ( w
< width
) w
= width
;
4093 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
4094 delete m_doubleBuffer
;
4095 m_doubleBuffer
= new wxBitmap( w
, h
);
4102 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
4103 m_ncWidth
= event
.GetSize().x
;
4107 if ( m_pState
->m_itemsAdded
)
4108 PrepareAfterItemsAdded();
4110 // Without this, virtual size (atleast under wxGTK) will be skewed
4111 RecalculateVirtualSize();
4117 // -----------------------------------------------------------------------
4119 void wxPropertyGrid::SetVirtualWidth( int width
)
4123 // Disable virtual width
4124 width
= GetClientSize().x
;
4125 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4129 // Enable virtual width
4130 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
4132 m_pState
->SetVirtualWidth( width
);
4135 void wxPropertyGrid::SetFocusOnCanvas()
4137 m_canvas
->SetFocusIgnoringChildren();
4138 m_editorFocused
= 0;
4141 // -----------------------------------------------------------------------
4142 // wxPropertyGrid mouse event handling
4143 // -----------------------------------------------------------------------
4145 // selFlags uses same values DoSelectProperty's flags
4146 // Returns true if event was vetoed.
4147 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
, wxVariant
* pValue
, unsigned int WXUNUSED(selFlags
) )
4149 // Send property grid event of specific type and with specific property
4150 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
4151 evt
.SetPropertyGrid(this);
4152 evt
.SetEventObject(m_eventObject
);
4156 evt
.SetCanVeto(true);
4157 evt
.SetupValidationInfo();
4158 m_validationInfo
.m_pValue
= pValue
;
4160 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
4162 evtHandler
->ProcessEvent(evt
);
4164 return evt
.WasVetoed();
4167 // -----------------------------------------------------------------------
4169 // Return false if should be skipped
4170 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
4174 // Need to set focus?
4175 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4180 wxPropertyGridPageState
* state
= m_pState
;
4182 int splitterHitOffset
;
4183 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4185 wxPGProperty
* p
= DoGetItemAtY(y
);
4189 int depth
= (int)p
->GetDepth() - 1;
4191 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
4193 if ( x
>= marginEnds
)
4197 if ( p
->IsCategory() )
4199 // This is category.
4200 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
4202 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
4204 // Expand, collapse, activate etc. if click on text or left of splitter.
4207 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
4212 if ( !DoSelectProperty( p
) )
4215 // On double-click, expand/collapse.
4216 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4218 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4219 else DoExpand( p
, true );
4223 else if ( splitterHit
== -1 )
4226 unsigned int selFlag
= 0;
4227 if ( columnHit
== 1 )
4229 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
4230 selFlag
= wxPG_SEL_FOCUS
;
4232 if ( !DoSelectProperty( p
, selFlag
) )
4235 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4237 if ( p
->GetChildCount() && !p
->IsCategory() )
4238 // On double-click, expand/collapse.
4239 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4241 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4242 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4243 else DoExpand( p
, true );
4250 // click on splitter
4251 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4253 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4255 // Double-clicking the splitter causes auto-centering
4256 CenterSplitter( true );
4258 else if ( m_dragStatus
== 0 )
4261 // Begin draggin the splitter
4265 // Changes must be committed here or the
4266 // value won't be drawn correctly
4267 if ( !CommitChangesFromEditor() )
4270 m_wndEditor
->Show ( false );
4273 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4275 m_canvas
->CaptureMouse();
4276 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4280 m_draggedSplitter
= splitterHit
;
4281 m_dragOffset
= splitterHitOffset
;
4283 wxClientDC
dc(m_canvas
);
4285 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4286 // Fixes button disappearance bug
4288 m_wndEditor2
->Show ( false );
4291 m_startingSplitterX
= x
- splitterHitOffset
;
4299 if ( p
->GetChildCount() )
4301 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4303 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4305 int y2
= y
% m_lineHeight
;
4306 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4308 // On click on expander button, expand/collapse
4309 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4310 DoCollapse( p
, true );
4312 DoExpand( p
, true );
4321 // -----------------------------------------------------------------------
4323 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4324 wxMouseEvent
& WXUNUSED(event
) )
4328 // Select property here as well
4329 wxPGProperty
* p
= m_propHover
;
4330 if ( p
!= m_selected
)
4331 DoSelectProperty( p
);
4333 // Send right click event.
4334 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4341 // -----------------------------------------------------------------------
4343 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4344 wxMouseEvent
& WXUNUSED(event
) )
4348 // Select property here as well
4349 wxPGProperty
* p
= m_propHover
;
4351 if ( p
!= m_selected
)
4352 DoSelectProperty( p
);
4354 // Send double-click event.
4355 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4362 // -----------------------------------------------------------------------
4364 #if wxPG_SUPPORT_TOOLTIPS
4366 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4368 if ( tipString
.length() )
4370 m_canvas
->SetToolTip(tipString
);
4374 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4375 m_canvas
->SetToolTip( m_emptyString
);
4377 m_canvas
->SetToolTip( NULL
);
4382 #endif // #if wxPG_SUPPORT_TOOLTIPS
4384 // -----------------------------------------------------------------------
4386 // Return false if should be skipped
4387 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4389 // Safety check (needed because mouse capturing may
4390 // otherwise freeze the control)
4391 if ( m_dragStatus
> 0 && !event
.Dragging() )
4393 HandleMouseUp(x
,y
,event
);
4396 wxPropertyGridPageState
* state
= m_pState
;
4398 int splitterHitOffset
;
4399 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4400 int splitterX
= x
- splitterHitOffset
;
4402 if ( m_dragStatus
> 0 )
4404 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4405 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4408 int newSplitterX
= x
- m_dragOffset
;
4409 int splitterX
= x
- splitterHitOffset
;
4411 // Splitter redraw required?
4412 if ( newSplitterX
!= splitterX
)
4415 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4416 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4417 state
->m_fSplitterX
= (float) newSplitterX
;
4420 CorrectEditorWidgetSizeX();
4434 int ih
= m_lineHeight
;
4437 #if wxPG_SUPPORT_TOOLTIPS
4438 wxPGProperty
* prevHover
= m_propHover
;
4439 unsigned char prevSide
= m_mouseSide
;
4441 int curPropHoverY
= y
- (y
% ih
);
4443 // On which item it hovers
4444 if ( ( !m_propHover
)
4446 ( m_propHover
&& ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) ) )
4449 // Mouse moves on another property
4451 m_propHover
= DoGetItemAtY(y
);
4452 m_propHoverY
= curPropHoverY
;
4455 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4458 #if wxPG_SUPPORT_TOOLTIPS
4459 // Store which side we are on
4461 if ( columnHit
== 1 )
4463 else if ( columnHit
== 0 )
4467 // If tooltips are enabled, show label or value as a tip
4468 // in case it doesn't otherwise show in full length.
4470 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4472 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4474 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4476 if ( m_propHover
&& !m_propHover
->IsCategory() )
4479 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4481 // Show help string as a tooltip
4482 wxString tipString
= m_propHover
->GetHelpString();
4484 SetToolTip(tipString
);
4488 // Show cropped value string as a tooltip
4492 if ( m_mouseSide
== 1 )
4494 tipString
= m_propHover
->m_label
;
4495 space
= splitterX
-m_marginWidth
-3;
4497 else if ( m_mouseSide
== 2 )
4499 tipString
= m_propHover
->GetDisplayedString();
4501 space
= m_width
- splitterX
;
4502 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4503 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4509 GetTextExtent( tipString
, &tw
, &th
, 0, 0, &m_font
);
4512 SetToolTip( tipString
);
4519 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4520 m_canvas
->SetToolTip( m_emptyString
);
4522 m_canvas
->SetToolTip( NULL
);
4533 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4534 m_canvas
->SetToolTip( m_emptyString
);
4536 m_canvas
->SetToolTip( NULL
);
4544 if ( splitterHit
== -1 ||
4546 HasFlag(wxPG_STATIC_SPLITTER
) )
4548 // hovering on something else
4549 if ( m_curcursor
!= wxCURSOR_ARROW
)
4550 CustomSetCursor( wxCURSOR_ARROW
);
4554 // Do not allow splitter cursor on caption items.
4555 // (also not if we were dragging and its started
4556 // outside the splitter region)
4559 !m_propHover
->IsCategory() &&
4563 // hovering on splitter
4565 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4566 // reliably detected.
4567 //if ( m_curcursor != wxCURSOR_SIZEWE )
4568 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4574 // hovering on something else
4575 if ( m_curcursor
!= wxCURSOR_ARROW
)
4576 CustomSetCursor( wxCURSOR_ARROW
);
4583 // -----------------------------------------------------------------------
4585 // Also handles Leaving event
4586 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4587 wxMouseEvent
&WXUNUSED(event
) )
4589 wxPropertyGridPageState
* state
= m_pState
;
4593 int splitterHitOffset
;
4594 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4596 // No event type check - basicly calling this method should
4597 // just stop dragging.
4598 // Left up after dragged?
4599 if ( m_dragStatus
>= 1 )
4602 // End Splitter Dragging
4604 // DO NOT ENABLE FOLLOWING LINE!
4605 // (it is only here as a reminder to not to do it)
4608 // Disable splitter auto-centering
4609 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4611 // This is necessary to return cursor
4612 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4614 m_canvas
->ReleaseMouse();
4615 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4618 // Set back the default cursor, if necessary
4619 if ( splitterHit
== -1 ||
4622 CustomSetCursor( wxCURSOR_ARROW
);
4627 // Control background needs to be cleared
4628 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && m_selected
)
4629 DrawItem( m_selected
);
4633 m_wndEditor
->Show ( true );
4636 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4637 // Fixes button disappearance bug
4639 m_wndEditor2
->Show ( true );
4642 // This clears the focus.
4643 m_editorFocused
= 0;
4649 // -----------------------------------------------------------------------
4651 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4653 int splitterX
= GetSplitterPosition();
4656 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4660 wxWindow
* wnd
= m_wndEditor
;
4662 // Hide popup on clicks
4663 if ( event
.GetEventType() != wxEVT_MOTION
)
4664 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4666 ((wxOwnerDrawnComboBox
*)m_wndEditor
)->HidePopup();
4672 if ( wnd
== (wxWindow
*) NULL
|| m_dragStatus
||
4674 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4675 ux
>= (r
.x
+r
.width
) ||
4677 event
.m_y
>= (r
.y
+r
.height
)
4687 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4692 // -----------------------------------------------------------------------
4694 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4697 if ( OnMouseCommon( event
, &x
, &y
) )
4699 HandleMouseClick(x
,y
,event
);
4704 // -----------------------------------------------------------------------
4706 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4709 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4710 HandleMouseRightClick(x
,y
,event
);
4714 // -----------------------------------------------------------------------
4716 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4718 // Always run standard mouse-down handler as well
4719 OnMouseClick(event
);
4722 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4723 HandleMouseDoubleClick(x
,y
,event
);
4727 // -----------------------------------------------------------------------
4729 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4732 if ( OnMouseCommon( event
, &x
, &y
) )
4734 HandleMouseMove(x
,y
,event
);
4739 // -----------------------------------------------------------------------
4741 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4743 // Called when mouse moves in the empty space below the properties.
4744 CustomSetCursor( wxCURSOR_ARROW
);
4747 // -----------------------------------------------------------------------
4749 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
4752 if ( OnMouseCommon( event
, &x
, &y
) )
4754 HandleMouseUp(x
,y
,event
);
4759 // -----------------------------------------------------------------------
4761 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
4763 // This may get called from child control as well, so event's
4764 // mouse position cannot be relied on.
4766 if ( event
.Entering() )
4768 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4770 // TODO: Fix this (detect parent and only do
4771 // cursor trick if it is a manager).
4772 wxASSERT( GetParent() );
4773 GetParent()->SetCursor(wxNullCursor
);
4775 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
4778 GetParent()->SetCursor(wxNullCursor
);
4780 else if ( event
.Leaving() )
4782 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4783 m_canvas
->SetCursor( wxNullCursor
);
4785 // Get real cursor position
4786 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
4788 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
4791 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4793 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
4797 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
4805 // -----------------------------------------------------------------------
4807 // Common code used by various OnMouseXXXChild methods.
4808 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
4810 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
4811 wxASSERT( topCtrlWnd
);
4813 event
.GetPosition(&x
,&y
);
4815 AdjustPosForClipperWindow( topCtrlWnd
, &x
, &y
);
4817 int splitterX
= GetSplitterPosition();
4819 wxRect r
= topCtrlWnd
->GetRect();
4820 if ( !m_dragStatus
&&
4821 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
4822 y
>= 0 && y
< r
.height \
4825 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4830 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
4837 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
4840 if ( OnMouseChildCommon(event
,&x
,&y
) )
4842 bool res
= HandleMouseClick(x
,y
,event
);
4843 if ( !res
) event
.Skip();
4847 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
4850 wxASSERT( m_wndEditor
);
4851 // These coords may not be exact (about +-2),
4852 // but that should not matter (right click is about item, not position).
4853 wxPoint pt
= m_wndEditor
->GetPosition();
4854 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
4855 wxASSERT( m_selected
);
4856 m_propHover
= m_selected
;
4857 bool res
= HandleMouseRightClick(x
,y
,event
);
4858 if ( !res
) event
.Skip();
4861 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
4864 if ( OnMouseChildCommon(event
,&x
,&y
) )
4866 bool res
= HandleMouseMove(x
,y
,event
);
4867 if ( !res
) event
.Skip();
4871 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
4874 if ( OnMouseChildCommon(event
,&x
,&y
) )
4876 bool res
= HandleMouseUp(x
,y
,event
);
4877 if ( !res
) event
.Skip();
4881 // -----------------------------------------------------------------------
4882 // wxPropertyGrid keyboard event handling
4883 // -----------------------------------------------------------------------
4885 void wxPropertyGrid::SendNavigationKeyEvent( int dir
)
4887 wxNavigationKeyEvent evt
;
4888 evt
.SetFlags(wxNavigationKeyEvent::FromTab
|
4889 (dir
?wxNavigationKeyEvent::IsForward
:
4890 wxNavigationKeyEvent::IsBackward
));
4891 evt
.SetEventObject(this);
4892 m_canvas
->GetEventHandler()->AddPendingEvent(evt
);
4896 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
4898 // Translates wxKeyEvent to wxPG_ACTION_XXX
4900 int keycode
= event
.GetKeyCode();
4901 int modifiers
= event
.GetModifiers();
4903 wxASSERT( !(modifiers
&~(0xFFFF)) );
4905 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4907 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
4909 if ( it
== m_actionTriggers
.end() )
4914 int second
= (it
->second
>>16) & 0xFFFF;
4918 return (it
->second
& 0xFFFF);
4921 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
4923 wxASSERT( !(modifiers
&~(0xFFFF)) );
4925 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4927 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
4929 if ( it
!= m_actionTriggers
.end() )
4931 // This key combination is already used
4933 // Can add secondary?
4934 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
4935 wxT("You can only add up to two separate actions per key combination.") );
4937 action
= it
->second
| (action
<<16);
4940 m_actionTriggers
[hashMapKey
] = action
;
4943 void wxPropertyGrid::ClearActionTriggers( int action
)
4945 wxPGHashMapI2I::iterator it
;
4947 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); it
++ )
4949 if ( it
->second
== action
)
4951 m_actionTriggers
.erase(it
);
4956 static void CopyTextToClipboard( const wxString
& text
)
4958 if ( wxTheClipboard
->Open() )
4960 // This data objects are held by the clipboard,
4961 // so do not delete them in the app.
4962 wxTheClipboard
->SetData( new wxTextDataObject(text
) );
4963 wxTheClipboard
->Close();
4967 void wxPropertyGrid::HandleKeyEvent(wxKeyEvent
&event
)
4970 // Handles key event when editor control is not focused.
4973 wxASSERT( !m_frozen
);
4977 // Travelsal between items, collapsing/expanding, etc.
4978 int keycode
= event
.GetKeyCode();
4980 if ( keycode
== WXK_TAB
)
4982 SendNavigationKeyEvent( event
.ShiftDown()?0:1 );
4986 // Ignore Alt and Control when they are down alone
4987 if ( keycode
== WXK_ALT
||
4988 keycode
== WXK_CONTROL
)
4995 int action
= KeyEventToActions(event
, &secondAction
);
5001 if ( ButtonTriggerKeyTest(event
) )
5004 wxPGProperty
* p
= m_selected
;
5006 if ( action
== wxPG_ACTION_COPY
)
5008 CopyTextToClipboard(p
->GetDisplayedString());
5012 // Travel and expand/collapse
5015 if ( p
->GetChildCount() &&
5016 !(p
->m_flags
& wxPG_PROP_DISABLED
)
5019 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
5021 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
5024 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
5026 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
5033 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
5037 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
5048 if ( selectDir
>= -1 )
5050 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
5052 DoSelectProperty(p
);
5058 // If nothing was selected, select the first item now
5059 // (or navigate out of tab).
5060 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
5062 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
5063 if ( p
) DoSelectProperty(p
);
5068 // -----------------------------------------------------------------------
5070 // Potentially handles a keyboard event for editor controls.
5071 // Returns false if event should *not* be skipped (on true it can
5072 // be optionally skipped).
5073 // Basicly, false means that SelectProperty was called (or was about
5074 // to be called, if canDestroy was false).
5075 bool wxPropertyGrid::HandleChildKey( wxKeyEvent
& event
)
5079 if ( !m_selected
|| !m_wndEditor
)
5084 int action
= KeyEventToAction(event
);
5087 if ( action
== wxPG_ACTION_CANCEL_EDIT
)
5090 // Esc cancels any changes
5091 if ( IsEditorsValueModified() )
5093 EditorsValueWasNotModified();
5095 // Update the control as well
5096 m_selected
->GetEditorClass()->SetControlStringValue( m_selected
,
5098 m_selected
->GetDisplayedString() );
5101 OnValidationFailureReset(m_selected
);
5107 else if ( action
== wxPG_ACTION_COPY
)
5109 // NB: There is some problem with getting native cut-copy-paste keys to go through
5110 // for embedded editor wxTextCtrl. This is why we emulate.
5112 wxTextCtrl
* tc
= GetEditorTextCtrl();
5115 wxString sel
= tc
->GetStringSelection();
5117 CopyTextToClipboard(sel
);
5121 CopyTextToClipboard(m_selected
->GetDisplayedString());
5124 else if ( action
== wxPG_ACTION_CUT
)
5126 wxTextCtrl
* tc
= GetEditorTextCtrl();
5130 tc
->GetSelection(&from
, &to
);
5133 CopyTextToClipboard(tc
->GetStringSelection());
5134 tc
->Remove(from
, to
);
5138 else if ( action
== wxPG_ACTION_PASTE
)
5140 wxTextCtrl
* tc
= GetEditorTextCtrl();
5143 if (wxTheClipboard
->Open())
5145 if (wxTheClipboard
->IsSupported( wxDF_TEXT
))
5147 wxTextDataObject data
;
5148 wxTheClipboard
->GetData( data
);
5150 tc
->GetSelection(&from
, &to
);
5153 tc
->Remove(from
, to
);
5154 tc
->WriteText(data
.GetText());
5158 tc
->WriteText(data
.GetText());
5161 wxTheClipboard
->Close();
5169 // -----------------------------------------------------------------------
5171 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
5175 // Events to editor controls should get relayed here.
5177 wxWindow
* focused
= wxWindow::FindFocus();
5179 wxWindow
* primaryCtrl
= GetEditorControl();
5182 (focused
==primaryCtrl
5183 || m_editorFocused
) )
5185 // Child key must be processed here, since it can
5186 // destroy the control which is referred by its own
5188 HandleChildKey( event
);
5191 HandleKeyEvent( event
);
5194 // -----------------------------------------------------------------------
5196 void wxPropertyGrid::OnKeyUp(wxKeyEvent
&event
)
5198 m_keyComboConsumed
= 0;
5203 // -----------------------------------------------------------------------
5205 void wxPropertyGrid::OnNavigationKey( wxNavigationKeyEvent
& event
)
5207 // Ignore events that occur very close to focus set
5208 if ( m_iFlags
& wxPG_FL_IGNORE_NEXT_NAVKEY
)
5210 m_iFlags
&= ~(wxPG_FL_IGNORE_NEXT_NAVKEY
);
5215 wxPGProperty
* next
= (wxPGProperty
*) NULL
;
5217 int dir
= event
.GetDirection()?1:-1;
5221 if ( dir
== 1 && (m_wndEditor
|| m_wndEditor2
) )
5223 wxWindow
* focused
= wxWindow::FindFocus();
5225 wxWindow
* wndToCheck
= GetEditorControl();
5227 // ODComboBox focus goes to its text ctrl, so we need to use it instead
5228 if ( wndToCheck
&& wndToCheck
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
5230 wxTextCtrl
* comboTextCtrl
= ((wxOwnerDrawnComboBox
*)wndToCheck
)->GetTextCtrl();
5231 if ( comboTextCtrl
)
5232 wndToCheck
= comboTextCtrl
;
5236 // Because of problems navigating from wxButton, do not go to it.
5239 // No primary, use secondary
5240 wndToCheck = m_wndEditor2;
5242 // If it has editor button, focus to it after the primary editor.
5243 // NB: Doesn't work since wxButton on wxMSW doesn't seem to propagate
5244 // key events (yes, I'm using wxWANTS_CHARS with it, and yes I
5245 // have somewhat debugged in window.cpp itself).
5246 else if ( focused == wndToCheck &&
5248 !(GetExtraStyle() & wxPG_EX_NO_TAB_TO_BUTTON) )
5250 wndToCheck = m_wndEditor2;
5251 wxLogDebug(wxT("Exp1"));
5255 if ( focused
!= wndToCheck
&&
5258 wndToCheck
->SetFocus();
5260 // Select all text in wxTextCtrl etc.
5261 if ( m_wndEditor
&& wndToCheck
== m_wndEditor
)
5262 m_selected
->GetEditorClass()->OnFocus(m_selected
,wndToCheck
);
5264 m_editorFocused
= 1;
5271 next
= wxPropertyGridIterator::OneStep(m_pState
, wxPG_ITERATE_VISIBLE
, m_selected
, dir
);
5275 // This allows preventing NavigateOut to occur
5276 DoSelectProperty( next
, wxPG_SEL_FOCUS
);
5285 // -----------------------------------------------------------------------
5287 bool wxPropertyGrid::ButtonTriggerKeyTest( wxKeyEvent
&event
)
5289 int keycode
= event
.GetKeyCode();
5291 // Does the keycode trigger button?
5292 if ( keycode
== m_pushButKeyCode
&&
5294 (!m_pushButKeyCodeNeedsAlt
|| event
.AltDown()) &&
5295 (!m_pushButKeyCodeNeedsCtrl
|| event
.ControlDown()) )
5297 m_keyComboConsumed
= 1;
5299 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,m_wndEditor2
->GetId());
5300 GetEventHandler()->AddPendingEvent(evt
);
5307 // -----------------------------------------------------------------------
5309 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
5311 int keycode
= event
.GetKeyCode();
5313 // Ignore Alt and Control when they are down alone
5314 if ( keycode
== WXK_ALT
||
5315 keycode
== WXK_CONTROL
)
5321 if ( ButtonTriggerKeyTest(event
) )
5324 if ( HandleChildKey(event
) == true )
5327 GetEventHandler()->AddPendingEvent(event
);
5330 void wxPropertyGrid::OnChildKeyUp( wxKeyEvent
&event
)
5332 m_keyComboConsumed
= 0;
5334 GetEventHandler()->AddPendingEvent(event
);
5339 // -----------------------------------------------------------------------
5340 // wxPropertyGrid miscellaneous event handling
5341 // -----------------------------------------------------------------------
5343 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
5346 // Check if the focus is in this control or one of its children
5347 wxWindow
* newFocused
= wxWindow::FindFocus();
5349 if ( newFocused
!= m_curFocused
)
5350 HandleFocusChange( newFocused
);
5353 // Called by focus event handlers. newFocused is the window that becomes focused.
5354 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
5356 unsigned int oldFlags
= m_iFlags
;
5358 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
5360 wxWindow
* parent
= newFocused
;
5362 // This must be one of nextFocus' parents.
5365 // Use m_eventObject, which is either wxPropertyGrid or
5366 // wxPropertyGridManager, as appropriate.
5367 if ( parent
== m_eventObject
)
5369 m_iFlags
|= wxPG_FL_FOCUSED
;
5372 parent
= parent
->GetParent();
5375 m_curFocused
= newFocused
;
5377 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
5378 (oldFlags
& wxPG_FL_FOCUSED
) )
5380 // On each focus kill, mark the next nav key event
5381 // to be ignored (can't do on set focus since the
5382 // event would occur before it).
5383 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
5385 m_iFlags
|= wxPG_FL_IGNORE_NEXT_NAVKEY
;
5387 // Need to store changed value
5388 CommitChangesFromEditor();
5394 // Preliminary code for tab-order respecting
5395 // tab-traversal (but should be moved to
5398 wxWindow* prevFocus = event.GetWindow();
5399 wxWindow* useThis = this;
5400 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5401 useThis = GetParent();
5404 prevFocus->GetParent() == useThis->GetParent() )
5406 wxList& children = useThis->GetParent()->GetChildren();
5408 wxNode* node = children.Find(prevFocus);
5410 if ( node->GetNext() &&
5411 useThis == node->GetNext()->GetData() )
5412 DoSelectProperty(GetFirst());
5413 else if ( node->GetPrevious () &&
5414 useThis == node->GetPrevious()->GetData() )
5415 DoSelectProperty(GetLastProperty());
5420 m_iFlags
&= ~(wxPG_FL_IGNORE_NEXT_NAVKEY
);
5424 if ( m_selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
5425 DrawItem( m_selected
);
5429 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5431 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5432 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5433 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5434 //else if ( event.GetWindow() )
5436 HandleFocusChange(event
.GetWindow());
5441 // -----------------------------------------------------------------------
5443 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5445 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5448 // event.Skip() being commented out is aworkaround for bug reported
5449 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5453 // -----------------------------------------------------------------------
5455 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5457 m_iFlags
|= wxPG_FL_SCROLLED
;
5462 // -----------------------------------------------------------------------
5464 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5466 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5468 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5472 // -----------------------------------------------------------------------
5473 // Property editor related functions
5474 // -----------------------------------------------------------------------
5476 // noDefCheck = true prevents infinite recursion.
5477 wxPGEditor
* wxPropertyGrid::RegisterEditorClass( wxPGEditor
* editorClass
,
5480 wxASSERT( editorClass
);
5482 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5483 RegisterDefaultEditors();
5485 wxString name
= editorClass
->GetName();
5487 // Existing editor under this name?
5488 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5490 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5491 (wxPGEditor
*) vt_it
->second
,
5492 "Editor with given name was already registered" );
5494 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5499 // Registers all default editor classes
5500 void wxPropertyGrid::RegisterDefaultEditors()
5502 wxPGRegisterDefaultEditorClass( TextCtrl
);
5503 wxPGRegisterDefaultEditorClass( Choice
);
5504 wxPGRegisterDefaultEditorClass( ComboBox
);
5505 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5506 #if wxPG_INCLUDE_CHECKBOX
5507 wxPGRegisterDefaultEditorClass( CheckBox
);
5509 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5511 // Register SpinCtrl etc. editors before use
5512 RegisterAdditionalEditors();
5515 // -----------------------------------------------------------------------
5516 // wxPGStringTokenizer
5517 // Needed to handle C-style string lists (e.g. "str1" "str2")
5518 // -----------------------------------------------------------------------
5520 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5521 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5525 wxPGStringTokenizer::~wxPGStringTokenizer()
5529 bool wxPGStringTokenizer::HasMoreTokens()
5531 const wxString
& str
= *m_str
;
5533 wxString::const_iterator i
= m_curPos
;
5535 wxUniChar delim
= m_delimeter
;
5537 wxUniChar prev_a
= wxT('\0');
5539 bool inToken
= false;
5541 while ( i
!= str
.end() )
5550 m_readyToken
.clear();
5555 if ( prev_a
!= wxT('\\') )
5559 if ( a
!= wxT('\\') )
5579 m_curPos
= str
.end();
5587 wxString
wxPGStringTokenizer::GetNextToken()
5589 return m_readyToken
;
5592 // -----------------------------------------------------------------------
5594 // -----------------------------------------------------------------------
5596 wxPGChoiceEntry::wxPGChoiceEntry()
5597 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5601 wxPGChoiceEntry::wxPGChoiceEntry( const wxPGChoiceEntry
& entry
)
5602 : wxPGCell( entry
.GetText(), entry
.GetBitmap(),
5603 entry
.GetFgCol(), entry
.GetBgCol() ), m_value(entry
.GetValue())
5607 // -----------------------------------------------------------------------
5609 // -----------------------------------------------------------------------
5611 wxPGChoicesData::wxPGChoicesData()
5616 wxPGChoicesData::~wxPGChoicesData()
5621 void wxPGChoicesData::Clear()
5625 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
.RemoveAt(nIndex
, count
);
5782 // -----------------------------------------------------------------------
5784 int wxPGChoices::Index( const wxString
& str
) const
5789 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5791 if ( m_data
->Item(i
)->GetText() == str
)
5798 // -----------------------------------------------------------------------
5800 int wxPGChoices::Index( int val
) const
5805 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5807 if ( m_data
->Item(i
)->GetValue() == val
)
5814 // -----------------------------------------------------------------------
5816 wxArrayString
wxPGChoices::GetLabels() const
5821 if ( this && IsOk() )
5822 for ( i
=0; i
<GetCount(); i
++ )
5823 arr
.push_back(GetLabel(i
));
5828 // -----------------------------------------------------------------------
5830 bool wxPGChoices::HasValues() const
5835 // -----------------------------------------------------------------------
5837 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
5844 for ( i
=0; i
< strings
.size(); i
++ )
5846 int index
= Index(strings
[i
]);
5848 arr
.Add(GetValue(index
));
5850 arr
.Add(wxPG_INVALID_VALUE
);
5857 // -----------------------------------------------------------------------
5859 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
5860 wxArrayString
* unmatched
) const
5867 for ( i
=0; i
< strings
.size(); i
++ )
5869 const wxString
& str
= strings
[i
];
5870 int index
= Index(str
);
5873 else if ( unmatched
)
5874 unmatched
->Add(str
);
5881 // -----------------------------------------------------------------------
5883 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
5887 if ( data
!= wxPGChoicesEmptyData
)
5894 // -----------------------------------------------------------------------
5896 void wxPGChoices::Init()
5898 m_data
= wxPGChoicesEmptyData
;
5901 // -----------------------------------------------------------------------
5903 void wxPGChoices::Free()
5905 if ( m_data
!= wxPGChoicesEmptyData
)
5908 m_data
= wxPGChoicesEmptyData
;
5912 // -----------------------------------------------------------------------
5913 // wxPropertyGridEvent
5914 // -----------------------------------------------------------------------
5916 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5919 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED
)
5920 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING
)
5921 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED
)
5922 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED
)
5923 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK
)
5924 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED
)
5925 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED
)
5926 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED
)
5927 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK
)
5930 // -----------------------------------------------------------------------
5932 void wxPropertyGridEvent::Init()
5934 m_validationInfo
= NULL
;
5936 m_wasVetoed
= false;
5939 // -----------------------------------------------------------------------
5941 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5942 : wxCommandEvent(commandType
,id
)
5948 // -----------------------------------------------------------------------
5950 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5951 : wxCommandEvent(event
)
5953 m_eventType
= event
.GetEventType();
5954 m_eventObject
= event
.m_eventObject
;
5956 m_property
= event
.m_property
;
5957 m_validationInfo
= event
.m_validationInfo
;
5958 m_canVeto
= event
.m_canVeto
;
5959 m_wasVetoed
= event
.m_wasVetoed
;
5962 // -----------------------------------------------------------------------
5964 wxPropertyGridEvent::~wxPropertyGridEvent()
5968 // -----------------------------------------------------------------------
5970 wxEvent
* wxPropertyGridEvent::Clone() const
5972 return new wxPropertyGridEvent( *this );
5975 // -----------------------------------------------------------------------
5976 // wxPropertyGridPopulator
5977 // -----------------------------------------------------------------------
5979 wxPropertyGridPopulator::wxPropertyGridPopulator()
5983 wxPGGlobalVars
->m_offline
++;
5986 // -----------------------------------------------------------------------
5988 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
5991 m_propHierarchy
.clear();
5994 // -----------------------------------------------------------------------
5996 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
6002 // -----------------------------------------------------------------------
6004 wxPropertyGridPopulator::~wxPropertyGridPopulator()
6007 // Free unused sets of choices
6008 wxPGHashMapS2P::iterator it
;
6010 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
6012 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
6019 m_pg
->GetPanel()->Refresh();
6021 wxPGGlobalVars
->m_offline
--;
6024 // -----------------------------------------------------------------------
6026 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
6027 const wxString
& propLabel
,
6028 const wxString
& propName
,
6029 const wxString
* propValue
,
6030 wxPGChoices
* pChoices
)
6032 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
6033 wxPGProperty
* parent
= GetCurParent();
6035 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
6037 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
6041 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
6043 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
6047 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
6049 property
->SetLabel(propLabel
);
6050 property
->DoSetName(propName
);
6052 if ( pChoices
&& pChoices
->IsOk() )
6053 property
->SetChoices(*pChoices
);
6055 m_state
->DoInsert(parent
, -1, property
);
6058 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
);
6063 // -----------------------------------------------------------------------
6065 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
6067 m_propHierarchy
.push_back(property
);
6068 DoScanForChildren();
6069 m_propHierarchy
.pop_back();
6072 // -----------------------------------------------------------------------
6074 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
6075 const wxString
& idString
)
6077 wxPGChoices choices
;
6080 if ( choicesString
[0] == wxT('@') )
6082 wxString ids
= choicesString
.substr(1);
6083 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
6084 if ( it
== m_dictIdChoices
.end() )
6085 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
6087 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6092 if ( idString
.length() )
6094 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
6095 if ( it
!= m_dictIdChoices
.end() )
6097 choices
.AssignData((wxPGChoicesData
*)it
->second
);
6104 // Parse choices string
6105 wxString::const_iterator it
= choicesString
.begin();
6109 bool labelValid
= false;
6111 for ( ; it
!= choicesString
.end(); it
++ )
6117 if ( c
== wxT('"') )
6122 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6123 choices
.Add(label
, l
);
6126 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6131 else if ( c
== wxT('=') )
6138 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
6145 if ( c
== wxT('"') )
6158 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
6159 choices
.Add(label
, l
);
6162 if ( !choices
.IsOk() )
6164 choices
.EnsureData();
6168 if ( idString
.length() )
6169 m_dictIdChoices
[idString
] = choices
.GetData();
6176 // -----------------------------------------------------------------------
6178 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
6180 if ( s
.Last() == wxT('%') )
6182 wxString s2
= s
.substr(0,s
.length()-1);
6184 if ( s2
.ToLong(&val
, 10) )
6186 *pval
= (val
*max
)/100;
6192 return s
.ToLong(pval
, 10);
6195 // -----------------------------------------------------------------------
6197 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
6198 const wxString
& type
,
6199 const wxString
& value
)
6201 int l
= m_propHierarchy
.size();
6205 wxPGProperty
* p
= m_propHierarchy
[l
-1];
6206 wxString valuel
= value
.Lower();
6209 if ( type
.length() == 0 )
6214 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6216 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
6218 else if ( value
.ToLong(&v
, 0) )
6225 if ( type
== wxT("string") )
6229 else if ( type
== wxT("int") )
6232 value
.ToLong(&v
, 0);
6235 else if ( type
== wxT("bool") )
6237 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
6244 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
6249 p
->SetAttribute( name
, variant
);
6254 // -----------------------------------------------------------------------
6256 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
6258 wxLogError(_("Error in resource: %s"),msg
.c_str());
6261 // -----------------------------------------------------------------------
6263 #endif // wxUSE_PROPGRID