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 char wxPropertyGridNameStr
[] = "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 // Intercepts Close-events sent to wxPropertyGrid's top-level parent,
237 // and tries to commit property value.
238 // -----------------------------------------------------------------------
240 class wxPGTLWHandler
: public wxEvtHandler
244 wxPGTLWHandler( wxPropertyGrid
* pg
)
252 void OnClose( wxCloseEvent
& event
)
254 // ClearSelection forces value validation/commit.
255 if ( event
.CanVeto() && !m_pg
->ClearSelection() )
265 wxPropertyGrid
* m_pg
;
267 DECLARE_EVENT_TABLE()
270 BEGIN_EVENT_TABLE(wxPGTLWHandler
, wxEvtHandler
)
271 EVT_CLOSE(wxPGTLWHandler::OnClose
)
274 // -----------------------------------------------------------------------
276 // -----------------------------------------------------------------------
279 // wxPGCanvas acts as a graphics sub-window of the
280 // wxScrolledWindow that wxPropertyGrid is.
282 class wxPGCanvas
: public wxPanel
285 wxPGCanvas() : wxPanel()
288 virtual ~wxPGCanvas() { }
291 void OnMouseMove( wxMouseEvent
&event
)
293 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
294 pg
->OnMouseMove( event
);
297 void OnMouseClick( wxMouseEvent
&event
)
299 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
300 pg
->OnMouseClick( event
);
303 void OnMouseUp( wxMouseEvent
&event
)
305 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
306 pg
->OnMouseUp( event
);
309 void OnMouseRightClick( wxMouseEvent
&event
)
311 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
312 pg
->OnMouseRightClick( event
);
315 void OnMouseDoubleClick( wxMouseEvent
&event
)
317 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
318 pg
->OnMouseDoubleClick( event
);
321 void OnKey( wxKeyEvent
& event
)
323 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
327 void OnPaint( wxPaintEvent
& event
);
329 // Always be focussable, even with child windows
330 virtual void SetCanFocus(bool WXUNUSED(canFocus
))
331 { wxPanel::SetCanFocus(true); }
335 DECLARE_EVENT_TABLE()
336 DECLARE_ABSTRACT_CLASS(wxPGCanvas
)
340 IMPLEMENT_ABSTRACT_CLASS(wxPGCanvas
,wxPanel
)
342 BEGIN_EVENT_TABLE(wxPGCanvas
, wxPanel
)
343 EVT_MOTION(wxPGCanvas::OnMouseMove
)
344 EVT_PAINT(wxPGCanvas::OnPaint
)
345 EVT_LEFT_DOWN(wxPGCanvas::OnMouseClick
)
346 EVT_LEFT_UP(wxPGCanvas::OnMouseUp
)
347 EVT_RIGHT_UP(wxPGCanvas::OnMouseRightClick
)
348 EVT_LEFT_DCLICK(wxPGCanvas::OnMouseDoubleClick
)
349 EVT_KEY_DOWN(wxPGCanvas::OnKey
)
353 void wxPGCanvas::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
355 wxPropertyGrid
* pg
= wxStaticCast(GetParent(), wxPropertyGrid
);
356 wxASSERT( pg
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
360 // Don't paint after destruction has begun
361 if ( !(pg
->GetInternalFlags() & wxPG_FL_INITIALIZED
) )
364 // Update everything inside the box
365 wxRect r
= GetUpdateRegion().GetBox();
367 // Repaint this rectangle
368 pg
->DrawItems( dc
, r
.y
, r
.y
+ r
.height
, &r
);
370 // We assume that the size set when grid is shown
371 // is what is desired.
372 pg
->SetInternalFlag(wxPG_FL_GOOD_SIZE_SET
);
375 // -----------------------------------------------------------------------
377 // -----------------------------------------------------------------------
379 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid
, wxScrolledWindow
)
381 BEGIN_EVENT_TABLE(wxPropertyGrid
, wxScrolledWindow
)
382 EVT_IDLE(wxPropertyGrid::OnIdle
)
383 EVT_MOTION(wxPropertyGrid::OnMouseMoveBottom
)
384 EVT_PAINT(wxPropertyGrid::OnPaint
)
385 EVT_SIZE(wxPropertyGrid::OnResize
)
386 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry
)
387 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry
)
388 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange
)
389 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent
)
390 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent
)
391 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent
)
392 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent
)
393 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged
)
397 // -----------------------------------------------------------------------
399 wxPropertyGrid::wxPropertyGrid()
405 // -----------------------------------------------------------------------
407 wxPropertyGrid::wxPropertyGrid( wxWindow
*parent
,
412 const wxString
& name
)
416 Create(parent
,id
,pos
,size
,style
,name
);
419 // -----------------------------------------------------------------------
421 bool wxPropertyGrid::Create( wxWindow
*parent
,
426 const wxString
& name
)
429 if ( !(style
&wxBORDER_MASK
) )
430 style
|= wxSIMPLE_BORDER
;
434 // Filter out wxTAB_TRAVERSAL - we will handle TABs manually
435 style
&= ~(wxTAB_TRAVERSAL
);
436 style
|= wxWANTS_CHARS
;
438 wxScrolledWindow::Create(parent
,id
,pos
,size
,style
,name
);
445 // -----------------------------------------------------------------------
448 // Initialize values to defaults
450 void wxPropertyGrid::Init1()
452 // Register editor classes, if necessary.
453 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
454 wxPropertyGrid::RegisterDefaultEditors();
457 m_pState
= (wxPropertyGridPageState
*) NULL
;
458 m_wndEditor
= m_wndEditor2
= (wxWindow
*) NULL
;
459 m_selected
= (wxPGProperty
*) NULL
;
461 m_propHover
= (wxPGProperty
*) NULL
;
462 m_eventObject
= this;
463 m_curFocused
= (wxWindow
*) NULL
;
465 m_inDoPropertyChanged
= 0;
466 m_inCommitChangesFromEditor
= 0;
467 m_inDoSelectProperty
= 0;
468 m_permanentValidationFailureBehavior
= wxPG_VFB_DEFAULT
;
474 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_RIGHT
);
475 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY
, WXK_DOWN
);
476 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_LEFT
);
477 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY
, WXK_UP
);
478 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY
, WXK_RIGHT
);
479 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY
, WXK_LEFT
);
480 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT
, WXK_ESCAPE
);
481 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_DOWN
, wxMOD_ALT
);
482 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON
, WXK_F4
);
484 m_coloursCustomized
= 0;
489 #if wxPG_DOUBLE_BUFFER
490 m_doubleBuffer
= (wxBitmap
*) NULL
;
493 #ifndef wxPG_ICON_WIDTH
499 m_iconWidth
= wxPG_ICON_WIDTH
;
504 m_gutterWidth
= wxPG_GUTTER_MIN
;
505 m_subgroup_extramargin
= 10;
509 m_width
= m_height
= 0;
511 m_commonValues
.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars
->m_defaultRenderer
) );
514 m_chgInfo_changedProperty
= NULL
;
517 // -----------------------------------------------------------------------
520 // Initialize after parent etc. set
522 void wxPropertyGrid::Init2()
524 wxASSERT( !(m_iFlags
& wxPG_FL_INITIALIZED
) );
527 // Smaller controls on Mac
528 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
531 // Now create state, if one didn't exist already
532 // (wxPropertyGridManager might have created it for us).
535 m_pState
= CreateState();
536 m_pState
->m_pPropGrid
= this;
537 m_iFlags
|= wxPG_FL_CREATEDSTATE
;
540 if ( !(m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
541 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
543 if ( m_windowStyle
& wxPG_HIDE_CATEGORIES
)
545 m_pState
->InitNonCatMode();
547 m_pState
->m_properties
= m_pState
->m_abcArray
;
550 GetClientSize(&m_width
,&m_height
);
552 #ifndef wxPG_ICON_WIDTH
553 // create two bitmap nodes for drawing
554 m_expandbmp
= new wxBitmap(expand_xpm
);
555 m_collbmp
= new wxBitmap(collapse_xpm
);
557 // calculate average font height for bitmap centering
559 m_iconWidth
= m_expandbmp
->GetWidth();
560 m_iconHeight
= m_expandbmp
->GetHeight();
563 m_curcursor
= wxCURSOR_ARROW
;
564 m_cursorSizeWE
= new wxCursor( wxCURSOR_SIZEWE
);
566 // adjust bitmap icon y position so they are centered
567 m_vspacing
= wxPG_DEFAULT_VSPACING
;
571 wxFont useFont
= wxScrolledWindow::GetFont();
572 wxScrolledWindow::SetOwnFont( useFont
);
576 // This should be otherwise called by SetOwnFont
577 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING
);
580 // Allocate cell datas indirectly by calling setter
581 m_propertyDefaultCell
.SetBgCol(*wxBLACK
);
582 m_categoryDefaultCell
.SetBgCol(*wxBLACK
);
586 // This helps with flicker
587 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
590 wxPGTLWHandler
* handler
= new wxPGTLWHandler(this);
591 m_tlp
= ::wxGetTopLevelParent(this);
592 m_tlwHandler
= handler
;
593 m_tlp
->PushEventHandler(handler
);
595 // set virtual size to this window size
596 wxSize wndsize
= GetSize();
597 SetVirtualSize(wndsize
.GetWidth(), wndsize
.GetWidth());
599 m_timeCreated
= ::wxGetLocalTimeMillis();
601 m_canvas
= new wxPGCanvas();
602 m_canvas
->Create(this, 1, wxPoint(0, 0), GetClientSize(),
603 wxWANTS_CHARS
| wxCLIP_CHILDREN
);
604 m_canvas
->SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
606 m_iFlags
|= wxPG_FL_INITIALIZED
;
608 m_ncWidth
= wndsize
.GetWidth();
610 // Need to call OnResize handler or size given in constructor/Create
612 wxSizeEvent
sizeEvent(wndsize
,0);
616 // -----------------------------------------------------------------------
618 wxPropertyGrid::~wxPropertyGrid()
622 DoSelectProperty(NULL
);
624 // This should do prevent things from going too badly wrong
625 m_iFlags
&= ~(wxPG_FL_INITIALIZED
);
627 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
628 m_canvas
->ReleaseMouse();
630 wxPGTLWHandler
* handler
= (wxPGTLWHandler
*) m_tlwHandler
;
631 m_tlp
->RemoveEventHandler(handler
);
635 if ( IsEditorsValueModified() )
636 ::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).)"),
637 wxS("wxPropertyGrid Debug Warning") );
640 #if wxPG_DOUBLE_BUFFER
641 if ( m_doubleBuffer
)
642 delete m_doubleBuffer
;
645 //m_selected = (wxPGProperty*) NULL;
647 if ( m_iFlags
& wxPG_FL_CREATEDSTATE
)
650 delete m_cursorSizeWE
;
652 #ifndef wxPG_ICON_WIDTH
657 // Delete common value records
658 for ( i
=0; i
<m_commonValues
.size(); i
++ )
660 delete GetCommonValue(i
);
664 // -----------------------------------------------------------------------
666 bool wxPropertyGrid::Destroy()
668 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
669 m_canvas
->ReleaseMouse();
671 return wxScrolledWindow::Destroy();
674 // -----------------------------------------------------------------------
676 wxPropertyGridPageState
* wxPropertyGrid::CreateState() const
678 return new wxPropertyGridPageState();
681 // -----------------------------------------------------------------------
682 // wxPropertyGrid overridden wxWindow methods
683 // -----------------------------------------------------------------------
685 void wxPropertyGrid::SetWindowStyleFlag( long style
)
687 long old_style
= m_windowStyle
;
689 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
691 wxASSERT( m_pState
);
693 if ( !(style
& wxPG_HIDE_CATEGORIES
) && (old_style
& wxPG_HIDE_CATEGORIES
) )
696 EnableCategories( true );
698 else if ( (style
& wxPG_HIDE_CATEGORIES
) && !(old_style
& wxPG_HIDE_CATEGORIES
) )
700 // Disable categories
701 EnableCategories( false );
703 if ( !(old_style
& wxPG_AUTO_SORT
) && (style
& wxPG_AUTO_SORT
) )
709 PrepareAfterItemsAdded();
711 m_pState
->m_itemsAdded
= 1;
713 #if wxPG_SUPPORT_TOOLTIPS
714 if ( !(old_style
& wxPG_TOOLTIPS
) && (style
& wxPG_TOOLTIPS
) )
720 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
721 SetToolTip ( tooltip );
722 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
725 else if ( (old_style
& wxPG_TOOLTIPS
) && !(style
& wxPG_TOOLTIPS
) )
730 m_canvas
->SetToolTip( (wxToolTip
*) NULL
);
735 wxScrolledWindow::SetWindowStyleFlag ( style
);
737 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
739 if ( (old_style
& wxPG_HIDE_MARGIN
) != (style
& wxPG_HIDE_MARGIN
) )
741 CalculateFontAndBitmapStuff( m_vspacing
);
747 // -----------------------------------------------------------------------
749 void wxPropertyGrid::Freeze()
753 wxScrolledWindow::Freeze();
758 // -----------------------------------------------------------------------
760 void wxPropertyGrid::Thaw()
766 wxScrolledWindow::Thaw();
767 RecalculateVirtualSize();
768 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
772 // Force property re-selection
774 DoSelectProperty(m_selected
, wxPG_SEL_FORCE
);
778 // -----------------------------------------------------------------------
780 void wxPropertyGrid::SetExtraStyle( long exStyle
)
782 if ( exStyle
& wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
784 #if defined(__WXMSW__)
787 // Don't use WS_EX_COMPOSITED just now.
790 if ( m_iFlags & wxPG_FL_IN_MANAGER )
791 hWnd = (HWND)GetParent()->GetHWND();
793 hWnd = (HWND)GetHWND();
795 ::SetWindowLong( hWnd, GWL_EXSTYLE,
796 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
799 //#elif defined(__WXGTK20__)
801 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
802 // truly was double-buffered.
803 if ( !this->IsDoubleBuffered() )
805 exStyle
&= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING
);
809 #if wxPG_DOUBLE_BUFFER
810 delete m_doubleBuffer
;
811 m_doubleBuffer
= NULL
;
816 wxScrolledWindow::SetExtraStyle( exStyle
);
818 if ( exStyle
& wxPG_EX_INIT_NOCAT
)
819 m_pState
->InitNonCatMode();
821 if ( exStyle
& wxPG_EX_HELP_AS_TOOLTIPS
)
822 m_windowStyle
|= wxPG_TOOLTIPS
;
825 wxPGGlobalVars
->m_extraStyle
= exStyle
;
828 // -----------------------------------------------------------------------
830 // returns the best acceptable minimal size
831 wxSize
wxPropertyGrid::DoGetBestSize() const
834 if ( m_lineHeight
> hei
)
836 wxSize sz
= wxSize( 60, hei
+40 );
842 // -----------------------------------------------------------------------
843 // wxPropertyGrid Font and Colour Methods
844 // -----------------------------------------------------------------------
846 void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing
)
850 m_captionFont
= wxScrolledWindow::GetFont();
852 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
853 m_subgroup_extramargin
= x
+ (x
/2);
856 #if wxPG_USE_RENDERER_NATIVE
857 m_iconWidth
= wxPG_ICON_WIDTH
;
858 #elif wxPG_ICON_WIDTH
860 m_iconWidth
= (m_fontHeight
* wxPG_ICON_WIDTH
) / 13;
861 if ( m_iconWidth
< 5 ) m_iconWidth
= 5;
862 else if ( !(m_iconWidth
& 0x01) ) m_iconWidth
++; // must be odd
866 m_gutterWidth
= m_iconWidth
/ wxPG_GUTTER_DIV
;
867 if ( m_gutterWidth
< wxPG_GUTTER_MIN
)
868 m_gutterWidth
= wxPG_GUTTER_MIN
;
871 if ( vspacing
<= 1 ) vdiv
= 12;
872 else if ( vspacing
>= 3 ) vdiv
= 3;
874 m_spacingy
= m_fontHeight
/ vdiv
;
875 if ( m_spacingy
< wxPG_YSPACING_MIN
)
876 m_spacingy
= wxPG_YSPACING_MIN
;
879 if ( !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
880 m_marginWidth
= m_gutterWidth
*2 + m_iconWidth
;
882 m_captionFont
.SetWeight(wxBOLD
);
883 GetTextExtent(wxS("jG"), &x
, &y
, 0, 0, &m_captionFont
);
885 m_lineHeight
= m_fontHeight
+(2*m_spacingy
)+1;
888 m_buttonSpacingY
= (m_lineHeight
- m_iconHeight
) / 2;
889 if ( m_buttonSpacingY
< 0 ) m_buttonSpacingY
= 0;
892 m_pState
->CalculateFontAndBitmapStuff(vspacing
);
894 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
895 RecalculateVirtualSize();
897 InvalidateBestSize();
900 // -----------------------------------------------------------------------
902 void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) )
908 // -----------------------------------------------------------------------
910 static wxColour
wxPGAdjustColour(const wxColour
& src
, int ra
,
911 int ga
= 1000, int ba
= 1000,
912 bool forceDifferent
= false)
919 // Recursion guard (allow 2 max)
920 static int isinside
= 0;
922 wxCHECK_MSG( isinside
< 3,
924 wxT("wxPGAdjustColour should not be recursively called more than once") );
932 if ( r2
>255 ) r2
= 255;
933 else if ( r2
<0) r2
= 0;
935 if ( g2
>255 ) g2
= 255;
936 else if ( g2
<0) g2
= 0;
938 if ( b2
>255 ) b2
= 255;
939 else if ( b2
<0) b2
= 0;
941 // Make sure they are somewhat different
942 if ( forceDifferent
&& (abs((r
+g
+b
)-(r2
+g2
+b2
)) < abs(ra
/2)) )
943 dst
= wxPGAdjustColour(src
,-(ra
*2));
945 dst
= wxColour(r2
,g2
,b2
);
947 // Recursion guard (allow 2 max)
954 static int wxPGGetColAvg( const wxColour
& col
)
956 return (col
.Red() + col
.Green() + col
.Blue()) / 3;
960 void wxPropertyGrid::RegainColours()
962 if ( !(m_coloursCustomized
& 0x0002) )
964 wxColour col
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
966 // Make sure colour is dark enough
968 int colDec
= wxPGGetColAvg(col
) - 230;
970 int colDec
= wxPGGetColAvg(col
) - 200;
973 m_colCapBack
= wxPGAdjustColour(col
,-colDec
);
976 m_categoryDefaultCell
.GetData()->SetBgCol(m_colCapBack
);
979 if ( !(m_coloursCustomized
& 0x0001) )
980 m_colMargin
= m_colCapBack
;
982 if ( !(m_coloursCustomized
& 0x0004) )
989 wxColour capForeCol
= wxPGAdjustColour(m_colCapBack
,colDec
,5000,5000,true);
990 m_colCapFore
= capForeCol
;
991 m_categoryDefaultCell
.GetData()->SetFgCol(capForeCol
);
994 if ( !(m_coloursCustomized
& 0x0008) )
996 wxColour bgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
997 m_colPropBack
= bgCol
;
998 m_propertyDefaultCell
.GetData()->SetBgCol(bgCol
);
1001 if ( !(m_coloursCustomized
& 0x0010) )
1003 wxColour fgCol
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1004 m_colPropFore
= fgCol
;
1005 m_propertyDefaultCell
.GetData()->SetFgCol(fgCol
);
1008 if ( !(m_coloursCustomized
& 0x0020) )
1009 m_colSelBack
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT
);
1011 if ( !(m_coloursCustomized
& 0x0040) )
1012 m_colSelFore
= wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1014 if ( !(m_coloursCustomized
& 0x0080) )
1015 m_colLine
= m_colCapBack
;
1017 if ( !(m_coloursCustomized
& 0x0100) )
1018 m_colDisPropFore
= m_colCapFore
;
1020 m_colEmptySpace
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1023 // -----------------------------------------------------------------------
1025 void wxPropertyGrid::ResetColours()
1027 m_coloursCustomized
= 0;
1034 // -----------------------------------------------------------------------
1036 bool wxPropertyGrid::SetFont( const wxFont
& font
)
1038 // Must disable active editor.
1039 ClearSelection(false);
1041 // TODO: Following code is disabled with wxMac because
1042 // it is reported to fail. I (JMS) cannot debug it
1043 // personally right now.
1044 // CS: should be fixed now, leaving old code in just in case, TODO: REMOVE
1045 #if 1 // !defined(__WXMAC__)
1046 bool res
= wxScrolledWindow::SetFont( font
);
1049 CalculateFontAndBitmapStuff( m_vspacing
);
1052 m_pState
->CalculateFontAndBitmapStuff(m_vspacing
);
1060 // TODO: Remove after SetFont crash fixed.
1061 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1063 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."));
1069 // -----------------------------------------------------------------------
1071 void wxPropertyGrid::SetLineColour( const wxColour
& col
)
1074 m_coloursCustomized
|= 0x80;
1078 // -----------------------------------------------------------------------
1080 void wxPropertyGrid::SetMarginColour( const wxColour
& col
)
1083 m_coloursCustomized
|= 0x01;
1087 // -----------------------------------------------------------------------
1089 void wxPropertyGrid::SetCellBackgroundColour( const wxColour
& col
)
1091 m_colPropBack
= col
;
1092 m_coloursCustomized
|= 0x08;
1094 m_propertyDefaultCell
.GetData()->SetBgCol(col
);
1099 // -----------------------------------------------------------------------
1101 void wxPropertyGrid::SetCellTextColour( const wxColour
& col
)
1103 m_colPropFore
= col
;
1104 m_coloursCustomized
|= 0x10;
1106 m_propertyDefaultCell
.GetData()->SetFgCol(col
);
1111 // -----------------------------------------------------------------------
1113 void wxPropertyGrid::SetEmptySpaceColour( const wxColour
& col
)
1115 m_colEmptySpace
= col
;
1120 // -----------------------------------------------------------------------
1122 void wxPropertyGrid::SetCellDisabledTextColour( const wxColour
& col
)
1124 m_colDisPropFore
= col
;
1125 m_coloursCustomized
|= 0x100;
1129 // -----------------------------------------------------------------------
1131 void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour
& col
)
1134 m_coloursCustomized
|= 0x20;
1138 // -----------------------------------------------------------------------
1140 void wxPropertyGrid::SetSelectionTextColour( const wxColour
& col
)
1143 m_coloursCustomized
|= 0x40;
1147 // -----------------------------------------------------------------------
1149 void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour
& col
)
1152 m_coloursCustomized
|= 0x02;
1154 m_categoryDefaultCell
.GetData()->SetBgCol(col
);
1159 // -----------------------------------------------------------------------
1161 void wxPropertyGrid::SetCaptionTextColour( const wxColour
& col
)
1164 m_coloursCustomized
|= 0x04;
1166 m_categoryDefaultCell
.GetData()->SetFgCol(col
);
1171 // -----------------------------------------------------------------------
1172 // wxPropertyGrid property adding and removal
1173 // -----------------------------------------------------------------------
1175 void wxPropertyGrid::PrepareAfterItemsAdded()
1177 if ( !m_pState
|| !m_pState
->m_itemsAdded
) return;
1179 m_pState
->m_itemsAdded
= 0;
1181 if ( m_windowStyle
& wxPG_AUTO_SORT
)
1184 RecalculateVirtualSize();
1187 // -----------------------------------------------------------------------
1188 // wxPropertyGrid property value setting and getting
1189 // -----------------------------------------------------------------------
1191 void wxPropertyGrid::DoSetPropertyValueUnspecified( wxPGProperty
* p
)
1193 m_pState
->DoSetPropertyValueUnspecified(p
);
1194 DrawItemAndChildren(p
);
1196 wxPGProperty
* parent
= p
->GetParent();
1198 (parent
->GetFlags() & wxPG_PROP_PARENTAL_FLAGS
) == wxPG_PROP_MISC_PARENT
)
1201 parent
= parent
->GetParent();
1205 // -----------------------------------------------------------------------
1206 // wxPropertyGrid property operations
1207 // -----------------------------------------------------------------------
1209 bool wxPropertyGrid::EnsureVisible( wxPGPropArg id
)
1211 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1215 bool changed
= false;
1217 // Is it inside collapsed section?
1218 if ( !p
->IsVisible() )
1221 wxPGProperty
* parent
= p
->GetParent();
1222 wxPGProperty
* grandparent
= parent
->GetParent();
1224 if ( grandparent
&& grandparent
!= m_pState
->m_properties
)
1225 Expand( grandparent
);
1233 GetViewStart(&vx
,&vy
);
1234 vy
*=wxPG_PIXELS_PER_UNIT
;
1240 Scroll(vx
, y
/wxPG_PIXELS_PER_UNIT
);
1241 m_iFlags
|= wxPG_FL_SCROLLED
;
1244 else if ( (y
+m_lineHeight
) > (vy
+m_height
) )
1246 Scroll(vx
, (y
-m_height
+(m_lineHeight
*2))/wxPG_PIXELS_PER_UNIT
);
1247 m_iFlags
|= wxPG_FL_SCROLLED
;
1257 // -----------------------------------------------------------------------
1258 // wxPropertyGrid helper methods called by properties
1259 // -----------------------------------------------------------------------
1261 // Control font changer helper.
1262 void wxPropertyGrid::SetCurControlBoldFont()
1264 wxASSERT( m_wndEditor
);
1265 m_wndEditor
->SetFont( m_captionFont
);
1268 // -----------------------------------------------------------------------
1270 wxPoint
wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty
* p
,
1273 #if wxPG_SMALL_SCREEN
1274 // On small-screen devices, always show dialogs with default position and size.
1275 return wxDefaultPosition
;
1277 int splitterX
= GetSplitterPosition();
1281 wxCHECK_MSG( y
>= 0, wxPoint(-1,-1), wxT("invalid y?") );
1283 ImprovedClientToScreen( &x
, &y
);
1285 int sw
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X
);
1286 int sh
= wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y
);
1293 new_x
= x
+ (m_width
-splitterX
) - sz
.x
;
1303 new_y
= y
+ m_lineHeight
;
1305 return wxPoint(new_x
,new_y
);
1309 // -----------------------------------------------------------------------
1311 wxString
& wxPropertyGrid::ExpandEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1313 if ( src_str
.length() == 0 )
1319 bool prev_is_slash
= false;
1321 wxString::const_iterator i
= src_str
.begin();
1325 for ( ; i
!= src_str
.end(); ++i
)
1329 if ( a
!= wxS('\\') )
1331 if ( !prev_is_slash
)
1337 if ( a
== wxS('n') )
1340 dst_str
<< wxS('\n');
1342 dst_str
<< wxS('\n');
1345 else if ( a
== wxS('t') )
1346 dst_str
<< wxS('\t');
1350 prev_is_slash
= false;
1354 if ( prev_is_slash
)
1356 dst_str
<< wxS('\\');
1357 prev_is_slash
= false;
1361 prev_is_slash
= true;
1368 // -----------------------------------------------------------------------
1370 wxString
& wxPropertyGrid::CreateEscapeSequences( wxString
& dst_str
, wxString
& src_str
)
1372 if ( src_str
.length() == 0 )
1378 wxString::const_iterator i
= src_str
.begin();
1379 wxUniChar prev_a
= wxS('\0');
1383 for ( ; i
!= src_str
.end(); ++i
)
1387 if ( a
>= wxS(' ') )
1389 // This surely is not something that requires an escape sequence.
1394 // This might need...
1395 if ( a
== wxS('\r') )
1397 // DOS style line end.
1398 // Already taken care below
1400 else if ( a
== wxS('\n') )
1401 // UNIX style line end.
1402 dst_str
<< wxS("\\n");
1403 else if ( a
== wxS('\t') )
1405 dst_str
<< wxS('\t');
1408 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1418 // -----------------------------------------------------------------------
1420 wxPGProperty
* wxPropertyGrid::DoGetItemAtY( int y
) const
1424 return (wxPGProperty
*) NULL
;
1427 return m_pState
->m_properties
->GetItemAtY(y
, m_lineHeight
, &a
);
1430 // -----------------------------------------------------------------------
1431 // wxPropertyGrid graphics related methods
1432 // -----------------------------------------------------------------------
1434 void wxPropertyGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1438 // Update everything inside the box
1439 wxRect r
= GetUpdateRegion().GetBox();
1441 dc
.SetPen(m_colEmptySpace
);
1442 dc
.SetBrush(m_colEmptySpace
);
1443 dc
.DrawRectangle(r
);
1446 // -----------------------------------------------------------------------
1448 void wxPropertyGrid::DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1449 wxPGProperty
* property
) const
1451 // Prepare rectangle to be used
1453 r
.x
+= m_gutterWidth
; r
.y
+= m_buttonSpacingY
;
1454 r
.width
= m_iconWidth
; r
.height
= m_iconHeight
;
1456 #if (wxPG_USE_RENDERER_NATIVE)
1458 #elif wxPG_ICON_WIDTH
1459 // Drawing expand/collapse button manually
1460 dc
.SetPen(m_colPropFore
);
1461 if ( property
->IsCategory() )
1462 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1464 dc
.SetBrush(m_colPropBack
);
1466 dc
.DrawRectangle( r
);
1467 int _y
= r
.y
+(m_iconWidth
/2);
1468 dc
.DrawLine(r
.x
+2,_y
,r
.x
+m_iconWidth
-2,_y
);
1473 if ( property
->IsExpanded() )
1475 // wxRenderer functions are non-mutating in nature, so it
1476 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1477 // Hopefully this does not cause problems.
1478 #if (wxPG_USE_RENDERER_NATIVE)
1479 wxRendererNative::Get().DrawTreeItemButton(
1485 #elif wxPG_ICON_WIDTH
1494 #if (wxPG_USE_RENDERER_NATIVE)
1495 wxRendererNative::Get().DrawTreeItemButton(
1501 #elif wxPG_ICON_WIDTH
1502 int _x
= r
.x
+(m_iconWidth
/2);
1503 dc
.DrawLine(_x
,r
.y
+2,_x
,r
.y
+m_iconWidth
-2);
1509 #if (wxPG_USE_RENDERER_NATIVE)
1511 #elif wxPG_ICON_WIDTH
1514 dc
.DrawBitmap( *bmp
, r
.x
, r
.y
, true );
1518 // -----------------------------------------------------------------------
1521 // This is the one called by OnPaint event handler and others.
1522 // topy and bottomy are already unscrolled (ie. physical)
1524 void wxPropertyGrid::DrawItems( wxDC
& dc
,
1526 unsigned int bottomy
,
1527 const wxRect
* clipRect
)
1529 if ( m_frozen
|| m_height
< 1 || bottomy
< topy
|| !m_pState
) return;
1531 m_pState
->EnsureVirtualHeight();
1533 wxRect tempClipRect
;
1536 tempClipRect
= wxRect(0,topy
,m_pState
->m_width
,bottomy
);
1537 clipRect
= &tempClipRect
;
1540 // items added check
1541 if ( m_pState
->m_itemsAdded
) PrepareAfterItemsAdded();
1543 int paintFinishY
= 0;
1545 if ( m_pState
->m_properties
->GetChildCount() > 0 )
1548 bool isBuffered
= false;
1550 #if wxPG_DOUBLE_BUFFER
1551 wxMemoryDC
* bufferDC
= NULL
;
1553 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
1555 if ( !m_doubleBuffer
)
1557 paintFinishY
= clipRect
->y
;
1562 bufferDC
= new wxMemoryDC();
1564 // If nothing was changed, then just copy from double-buffer
1565 bufferDC
->SelectObject( *m_doubleBuffer
);
1575 dc
.SetClippingRegion( *clipRect
);
1576 paintFinishY
= DoDrawItems( *dcPtr
, NULL
, NULL
, clipRect
, isBuffered
);
1579 #if wxPG_DOUBLE_BUFFER
1582 dc
.Blit( clipRect
->x
, clipRect
->y
, clipRect
->width
, clipRect
->height
,
1583 bufferDC
, 0, 0, wxCOPY
);
1584 dc
.DestroyClippingRegion(); // Is this really necessary?
1590 // Clear area beyond bottomY?
1591 if ( paintFinishY
< (clipRect
->y
+clipRect
->height
) )
1593 dc
.SetPen(m_colEmptySpace
);
1594 dc
.SetBrush(m_colEmptySpace
);
1595 dc
.DrawRectangle( 0, paintFinishY
, m_width
, (clipRect
->y
+clipRect
->height
) );
1599 // -----------------------------------------------------------------------
1601 int wxPropertyGrid::DoDrawItems( wxDC
& dc
,
1602 const wxPGProperty
* firstItem
,
1603 const wxPGProperty
* lastItem
,
1604 const wxRect
* clipRect
,
1605 bool isBuffered
) const
1607 // TODO: This should somehow be eliminated.
1608 wxRect tempClipRect
;
1611 wxASSERT(firstItem
);
1613 tempClipRect
= GetPropertyRect(firstItem
, lastItem
);
1614 clipRect
= &tempClipRect
;
1618 firstItem
= DoGetItemAtY(clipRect
->y
);
1622 lastItem
= DoGetItemAtY(clipRect
->y
+clipRect
->height
-1);
1624 lastItem
= GetLastItem( wxPG_ITERATE_VISIBLE
);
1627 if ( m_frozen
|| m_height
< 1 || firstItem
== NULL
)
1630 wxCHECK_MSG( !m_pState
->m_itemsAdded
, clipRect
->y
, wxT("no items added") );
1631 wxASSERT( m_pState
->m_properties
->GetChildCount() );
1633 int lh
= m_lineHeight
;
1636 int lastItemBottomY
;
1638 firstItemTopY
= clipRect
->y
;
1639 lastItemBottomY
= clipRect
->y
+ clipRect
->height
;
1641 // Align y coordinates to item boundaries
1642 firstItemTopY
-= firstItemTopY
% lh
;
1643 lastItemBottomY
+= lh
- (lastItemBottomY
% lh
);
1644 lastItemBottomY
-= 1;
1646 // Entire range outside scrolled, visible area?
1647 if ( firstItemTopY
>= (int)m_pState
->GetVirtualHeight() || lastItemBottomY
<= 0 )
1650 wxCHECK_MSG( firstItemTopY
< lastItemBottomY
, clipRect
->y
, wxT("invalid y values") );
1654 wxLogDebug(wxT(" -> DoDrawItems ( \"%s\" -> \"%s\", height=%i (ch=%i), clipRect = 0x%lX )"),
1655 firstItem->GetLabel().c_str(),
1656 lastItem->GetLabel().c_str(),
1657 (int)(lastItemBottomY - firstItemTopY),
1659 (unsigned long)clipRect );
1664 long windowStyle
= m_windowStyle
;
1670 // With wxPG_DOUBLE_BUFFER, do double buffering
1671 // - buffer's y = 0, so align cliprect and coordinates to that
1673 #if wxPG_DOUBLE_BUFFER
1679 xRelMod
= clipRect
->x
;
1680 yRelMod
= clipRect
->y
;
1683 // clipRect conversion
1688 firstItemTopY
-= yRelMod
;
1689 lastItemBottomY
-= yRelMod
;
1692 wxUnusedVar(isBuffered
);
1695 int x
= m_marginWidth
- xRelMod
;
1697 const wxFont
& normalfont
= m_font
;
1699 bool reallyFocused
= (m_iFlags
& wxPG_FL_FOCUSED
) != 0;
1701 bool isEnabled
= IsEnabled();
1704 // Prepare some pens and brushes that are often changed to.
1707 wxBrush
marginBrush(m_colMargin
);
1708 wxPen
marginPen(m_colMargin
);
1709 wxBrush
capbgbrush(m_colCapBack
,wxSOLID
);
1710 wxPen
linepen(m_colLine
,1,wxSOLID
);
1712 // pen that has same colour as text
1713 wxPen
outlinepen(m_colPropFore
,1,wxSOLID
);
1716 // Clear margin with background colour
1718 dc
.SetBrush( marginBrush
);
1719 if ( !(windowStyle
& wxPG_HIDE_MARGIN
) )
1721 dc
.SetPen( *wxTRANSPARENT_PEN
);
1722 dc
.DrawRectangle(-1-xRelMod
,firstItemTopY
-1,x
+2,lastItemBottomY
-firstItemTopY
+2);
1725 const wxPGProperty
* selected
= m_selected
;
1726 const wxPropertyGridPageState
* state
= m_pState
;
1728 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
1729 bool wasSelectedPainted
= false;
1732 // TODO: Only render columns that are within clipping region.
1734 dc
.SetFont(normalfont
);
1736 wxPropertyGridConstIterator
it( state
, wxPG_ITERATE_VISIBLE
, firstItem
);
1737 int endScanBottomY
= lastItemBottomY
+ lh
;
1738 int y
= firstItemTopY
;
1741 // Pregenerate list of visible properties.
1742 wxArrayPGProperty visPropArray
;
1743 visPropArray
.reserve((m_height
/m_lineHeight
)+6);
1745 for ( ; !it
.AtEnd(); it
.Next() )
1747 const wxPGProperty
* p
= *it
;
1749 if ( !p
->HasFlag(wxPG_PROP_HIDDEN
) )
1751 visPropArray
.push_back((wxPGProperty
*)p
);
1753 if ( y
> endScanBottomY
)
1760 visPropArray
.push_back(NULL
);
1762 wxPGProperty
* nextP
= visPropArray
[0];
1764 int gridWidth
= state
->m_width
;
1767 for ( unsigned int arrInd
=1;
1768 nextP
&& y
<= lastItemBottomY
;
1771 wxPGProperty
* p
= nextP
;
1772 nextP
= visPropArray
[arrInd
];
1774 int rowHeight
= m_fontHeight
+(m_spacingy
*2)+1;
1775 int textMarginHere
= x
;
1776 int renderFlags
= 0;
1778 int greyDepth
= m_marginWidth
;
1779 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) )
1780 greyDepth
= (((int)p
->m_depthBgCol
)-1) * m_subgroup_extramargin
+ m_marginWidth
;
1782 int greyDepthX
= greyDepth
- xRelMod
;
1784 // Use basic depth if in non-categoric mode and parent is base array.
1785 if ( !(windowStyle
& wxPG_HIDE_CATEGORIES
) || p
->GetParent() != m_pState
->m_properties
)
1787 textMarginHere
+= ((unsigned int)((p
->m_depth
-1)*m_subgroup_extramargin
));
1790 // Paint margin area
1791 dc
.SetBrush(marginBrush
);
1792 dc
.SetPen(marginPen
);
1793 dc
.DrawRectangle( -xRelMod
, y
, greyDepth
, lh
);
1795 dc
.SetPen( linepen
);
1800 dc
.DrawLine( greyDepthX
, y
, greyDepthX
, y2
);
1806 for ( si
=0; si
<state
->m_colWidths
.size(); si
++ )
1808 sx
+= state
->m_colWidths
[si
];
1809 dc
.DrawLine( sx
, y
, sx
, y2
);
1812 // Horizontal Line, below
1813 // (not if both this and next is category caption)
1814 if ( p
->IsCategory() &&
1815 nextP
&& nextP
->IsCategory() )
1816 dc
.SetPen(m_colCapBack
);
1818 dc
.DrawLine( greyDepthX
, y2
-1, gridWidth
-xRelMod
, y2
-1 );
1821 // Need to override row colours?
1825 if ( p
!= selected
)
1827 // Disabled may get different colour.
1828 if ( !p
->IsEnabled() )
1830 renderFlags
|= wxPGCellRenderer::Disabled
|
1831 wxPGCellRenderer::DontUseCellFgCol
;
1832 rowFgCol
= m_colDisPropFore
;
1837 renderFlags
|= wxPGCellRenderer::Selected
;
1839 if ( !p
->IsCategory() )
1841 renderFlags
|= wxPGCellRenderer::DontUseCellFgCol
|
1842 wxPGCellRenderer::DontUseCellBgCol
;
1844 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
1845 wasSelectedPainted
= true;
1848 // Selected gets different colour.
1849 if ( reallyFocused
)
1851 rowFgCol
= m_colSelFore
;
1852 rowBgCol
= m_colSelBack
;
1854 else if ( isEnabled
)
1856 rowFgCol
= m_colPropFore
;
1857 rowBgCol
= m_colMargin
;
1861 rowFgCol
= m_colDisPropFore
;
1862 rowBgCol
= m_colSelBack
;
1869 if ( rowBgCol
.IsOk() )
1870 rowBgBrush
= wxBrush(rowBgCol
);
1872 if ( HasInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
) )
1873 renderFlags
= renderFlags
& ~wxPGCellRenderer::DontUseCellColours
;
1876 // Fill additional margin area with background colour of first cell
1877 if ( greyDepthX
< textMarginHere
)
1879 if ( !(renderFlags
& wxPGCellRenderer::DontUseCellBgCol
) )
1881 wxPGCell
& cell
= p
->GetCell(0);
1882 rowBgCol
= cell
.GetBgCol();
1883 rowBgBrush
= wxBrush(rowBgCol
);
1885 dc
.SetBrush(rowBgBrush
);
1886 dc
.SetPen(rowBgCol
);
1887 dc
.DrawRectangle(greyDepthX
+1, y
,
1888 textMarginHere
-greyDepthX
, lh
-1);
1891 bool fontChanged
= false;
1893 // Expander button rectangle
1894 wxRect
butRect( ((p
->m_depth
- 1) * m_subgroup_extramargin
) - xRelMod
,
1899 if ( p
->IsCategory() )
1901 // Captions have their cell areas merged as one
1902 dc
.SetFont(m_captionFont
);
1904 wxRect
cellRect(greyDepthX
, y
, gridWidth
- greyDepth
+ 2, rowHeight
-1 );
1906 if ( renderFlags
& wxPGCellRenderer::DontUseCellBgCol
)
1908 dc
.SetBrush(rowBgBrush
);
1909 dc
.SetPen(rowBgCol
);
1912 if ( renderFlags
& wxPGCellRenderer::DontUseCellFgCol
)
1914 dc
.SetTextForeground(rowFgCol
);
1917 wxPGCellRenderer
* renderer
= p
->GetCellRenderer(0);
1918 renderer
->Render( dc
, cellRect
, this, p
, 0, -1, renderFlags
);
1921 if ( !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
1922 DrawExpanderButton( dc
, butRect
, p
);
1926 if ( p
->m_flags
& wxPG_PROP_MODIFIED
&& (windowStyle
& wxPG_BOLD_MODIFIED
) )
1928 dc
.SetFont(m_captionFont
);
1934 int nextCellWidth
= state
->m_colWidths
[0];
1935 wxRect
cellRect(greyDepthX
+1, y
, 0, rowHeight
-1);
1936 int textXAdd
= textMarginHere
- greyDepthX
;
1938 for ( ci
=0; ci
<state
->m_colWidths
.size(); ci
++ )
1940 cellRect
.width
= nextCellWidth
- 1;
1942 bool ctrlCell
= false;
1943 int cellRenderFlags
= renderFlags
;
1946 if ( ci
== 0 && !HasFlag(wxPG_HIDE_MARGIN
) && p
->HasVisibleChildren() )
1947 DrawExpanderButton( dc
, butRect
, p
);
1950 if ( p
== selected
&& m_wndEditor
&& ci
== 1 )
1952 wxColour editorBgCol
= GetEditorControl()->GetBackgroundColour();
1953 dc
.SetBrush(editorBgCol
);
1954 dc
.SetPen(editorBgCol
);
1955 dc
.SetTextForeground(m_colPropFore
);
1956 dc
.DrawRectangle(cellRect
);
1958 if ( m_dragStatus
== 0 && !(m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
) )
1963 if ( renderFlags
& wxPGCellRenderer::DontUseCellBgCol
)
1965 dc
.SetBrush(rowBgBrush
);
1966 dc
.SetPen(rowBgCol
);
1969 if ( renderFlags
& wxPGCellRenderer::DontUseCellFgCol
)
1971 dc
.SetTextForeground(rowFgCol
);
1975 dc
.SetClippingRegion(cellRect
);
1977 cellRect
.x
+= textXAdd
;
1978 cellRect
.width
-= textXAdd
;
1983 wxPGCellRenderer
* renderer
;
1984 int cmnVal
= p
->GetCommonValue();
1985 if ( cmnVal
== -1 || ci
!= 1 )
1987 renderer
= p
->GetCellRenderer(ci
);
1988 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1,
1993 renderer
= GetCommonValue(cmnVal
)->GetRenderer();
1994 renderer
->Render( dc
, cellRect
, this, p
, ci
, -1,
1999 cellX
+= state
->m_colWidths
[ci
];
2000 if ( ci
< (state
->m_colWidths
.size()-1) )
2001 nextCellWidth
= state
->m_colWidths
[ci
+1];
2003 dc
.DestroyClippingRegion(); // Is this really necessary?
2009 dc
.SetFont(normalfont
);
2014 // Refresh editor controls (seems not needed on msw)
2015 // NOTE: This code is mandatory for GTK!
2016 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2017 if ( wasSelectedPainted
)
2020 m_wndEditor
->Refresh();
2022 m_wndEditor2
->Refresh();
2029 // -----------------------------------------------------------------------
2031 wxRect
wxPropertyGrid::GetPropertyRect( const wxPGProperty
* p1
, const wxPGProperty
* p2
) const
2035 if ( m_width
< 10 || m_height
< 10 ||
2036 !m_pState
->m_properties
->GetChildCount() ||
2037 p1
== (wxPGProperty
*) NULL
)
2038 return wxRect(0,0,0,0);
2043 // Return rect which encloses the given property range
2045 int visTop
= p1
->GetY();
2048 visBottom
= p2
->GetY() + m_lineHeight
;
2050 visBottom
= m_height
+ visTop
;
2052 // If seleced property is inside the range, we'll extend the range to include
2054 wxPGProperty
* selected
= m_selected
;
2057 int selectedY
= selected
->GetY();
2058 if ( selectedY
>= visTop
&& selectedY
< visBottom
)
2060 wxWindow
* editor
= GetEditorControl();
2063 int visBottom2
= selectedY
+ editor
->GetSize().y
;
2064 if ( visBottom2
> visBottom
)
2065 visBottom
= visBottom2
;
2070 return wxRect(0,visTop
-vy
,m_pState
->m_width
,visBottom
-visTop
);
2073 // -----------------------------------------------------------------------
2075 void wxPropertyGrid::DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
)
2080 if ( m_pState
->m_itemsAdded
)
2081 PrepareAfterItemsAdded();
2083 wxRect r
= GetPropertyRect(p1
, p2
);
2086 m_canvas
->RefreshRect(r
);
2090 // -----------------------------------------------------------------------
2092 void wxPropertyGrid::RefreshProperty( wxPGProperty
* p
)
2094 if ( p
== m_selected
)
2095 DoSelectProperty(p
, wxPG_SEL_FORCE
);
2097 DrawItemAndChildren(p
);
2100 // -----------------------------------------------------------------------
2102 void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty
* p
)
2107 // Draw item, children, and parent too, if it is not category
2108 wxPGProperty
* parent
= p
->GetParent();
2111 !parent
->IsCategory() &&
2112 parent
->GetParent() )
2115 parent
= parent
->GetParent();
2118 DrawItemAndChildren(p
);
2121 void wxPropertyGrid::DrawItemAndChildren( wxPGProperty
* p
)
2123 wxCHECK_RET( p
, wxT("invalid property id") );
2125 // Do not draw if in non-visible page
2126 if ( p
->GetParentState() != m_pState
)
2129 // do not draw a single item if multiple pending
2130 if ( m_pState
->m_itemsAdded
|| m_frozen
)
2133 wxWindow
* wndPrimary
= GetEditorControl();
2135 // Update child control.
2136 if ( m_selected
&& m_selected
->GetParent() == p
)
2137 m_selected
->UpdateControl(wndPrimary
);
2139 const wxPGProperty
* lastDrawn
= p
->GetLastVisibleSubItem();
2141 DrawItems(p
, lastDrawn
);
2144 // -----------------------------------------------------------------------
2146 void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground
),
2147 const wxRect
*rect
)
2149 PrepareAfterItemsAdded();
2151 wxWindow::Refresh(false);
2153 // TODO: Coordinate translation
2154 m_canvas
->Refresh(false, rect
);
2156 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2157 // I think this really helps only GTK+1.2
2158 if ( m_wndEditor
) m_wndEditor
->Refresh();
2159 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2163 // -----------------------------------------------------------------------
2164 // wxPropertyGrid global operations
2165 // -----------------------------------------------------------------------
2167 void wxPropertyGrid::Clear()
2169 ClearSelection(false);
2171 m_pState
->DoClear();
2177 RecalculateVirtualSize();
2179 // Need to clear some area at the end
2181 RefreshRect(wxRect(0, 0, m_width
, m_height
));
2184 // -----------------------------------------------------------------------
2186 bool wxPropertyGrid::EnableCategories( bool enable
)
2188 ClearSelection(false);
2193 // Enable categories
2196 m_windowStyle
&= ~(wxPG_HIDE_CATEGORIES
);
2201 // Disable categories
2203 m_windowStyle
|= wxPG_HIDE_CATEGORIES
;
2206 if ( !m_pState
->EnableCategories(enable
) )
2211 if ( m_windowStyle
& wxPG_AUTO_SORT
)
2213 m_pState
->m_itemsAdded
= 1; // force
2214 PrepareAfterItemsAdded();
2218 m_pState
->m_itemsAdded
= 1;
2220 // No need for RecalculateVirtualSize() here - it is already called in
2221 // wxPropertyGridPageState method above.
2228 // -----------------------------------------------------------------------
2230 void wxPropertyGrid::SwitchState( wxPropertyGridPageState
* pNewState
)
2232 wxASSERT( pNewState
);
2233 wxASSERT( pNewState
->GetGrid() );
2235 if ( pNewState
== m_pState
)
2238 wxPGProperty
* oldSelection
= m_selected
;
2240 ClearSelection(false);
2242 m_pState
->m_selected
= oldSelection
;
2244 bool orig_mode
= m_pState
->IsInNonCatMode();
2245 bool new_state_mode
= pNewState
->IsInNonCatMode();
2247 m_pState
= pNewState
;
2250 int pgWidth
= GetClientSize().x
;
2251 if ( HasVirtualWidth() )
2253 int minWidth
= pgWidth
;
2254 if ( pNewState
->m_width
< minWidth
)
2256 pNewState
->m_width
= minWidth
;
2257 pNewState
->CheckColumnWidths();
2263 // Just in case, fully re-center splitter
2264 if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER
) )
2265 pNewState
->m_fSplitterX
= -1.0;
2267 pNewState
->OnClientWidthChange( pgWidth
, pgWidth
- pNewState
->m_width
);
2270 m_propHover
= (wxPGProperty
*) NULL
;
2272 // If necessary, convert state to correct mode.
2273 if ( orig_mode
!= new_state_mode
)
2275 // This should refresh as well.
2276 EnableCategories( orig_mode
?false:true );
2278 else if ( !m_frozen
)
2280 // Refresh, if not frozen.
2281 if ( m_pState
->m_itemsAdded
)
2282 PrepareAfterItemsAdded();
2285 if ( m_pState
->m_selected
)
2286 DoSelectProperty( m_pState
->m_selected
);
2288 RecalculateVirtualSize(0);
2292 m_pState
->m_itemsAdded
= 1;
2295 // -----------------------------------------------------------------------
2297 void wxPropertyGrid::SortChildren( wxPGPropArg id
)
2299 wxPG_PROP_ARG_CALL_PROLOG()
2301 m_pState
->SortChildren( p
);
2304 // -----------------------------------------------------------------------
2306 void wxPropertyGrid::Sort()
2308 ClearSelection(false); // This must be before state clear
2313 // -----------------------------------------------------------------------
2315 // Call to SetSplitterPosition will always disable splitter auto-centering
2316 // if parent window is shown.
2317 void wxPropertyGrid::DoSetSplitterPosition_( int newxpos
, bool refresh
, int splitterIndex
, bool allPages
)
2319 if ( ( newxpos
< wxPG_DRAG_MARGIN
) )
2322 wxPropertyGridPageState
* state
= m_pState
;
2324 state
->DoSetSplitterPosition( newxpos
, splitterIndex
, allPages
);
2329 CorrectEditorWidgetSizeX();
2335 // -----------------------------------------------------------------------
2337 void wxPropertyGrid::CenterSplitter( bool enableAutoCentering
)
2339 SetSplitterPosition( m_width
/2, true );
2340 if ( enableAutoCentering
&& ( m_windowStyle
& wxPG_SPLITTER_AUTO_CENTER
) )
2341 m_iFlags
&= ~(wxPG_FL_DONT_CENTER_SPLITTER
);
2344 // -----------------------------------------------------------------------
2345 // wxPropertyGrid item iteration (GetNextProperty etc.) methods
2346 // -----------------------------------------------------------------------
2348 // Returns nearest paint visible property (such that will be painted unless
2349 // window is scrolled or resized). If given property is paint visible, then
2350 // it itself will be returned
2351 wxPGProperty
* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty
* p
) const
2353 int vx
,vy1
;// Top left corner of client
2354 GetViewStart(&vx
,&vy1
);
2355 vy1
*= wxPG_PIXELS_PER_UNIT
;
2357 int vy2
= vy1
+ m_height
;
2358 int propY
= p
->GetY2(m_lineHeight
);
2360 if ( (propY
+ m_lineHeight
) < vy1
)
2363 return DoGetItemAtY( vy1
);
2365 else if ( propY
> vy2
)
2368 return DoGetItemAtY( vy2
);
2371 // Itself paint visible
2376 // -----------------------------------------------------------------------
2377 // Methods related to change in value, value modification and sending events
2378 // -----------------------------------------------------------------------
2380 // commits any changes in editor of selected property
2381 // return true if validation did not fail
2382 // flags are same as with DoSelectProperty
2383 bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags
)
2385 // Committing already?
2386 if ( m_inCommitChangesFromEditor
)
2389 // Don't do this if already processing editor event. It might
2390 // induce recursive dialogs and crap like that.
2391 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2393 if ( m_inDoPropertyChanged
)
2400 IsEditorsValueModified() &&
2401 (m_iFlags
& wxPG_FL_INITIALIZED
) &&
2404 m_inCommitChangesFromEditor
= 1;
2406 wxVariant
variant(m_selected
->GetValueRef());
2407 bool valueIsPending
= false;
2409 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2410 // due to another window getting focus
2411 wxWindow
* oldFocus
= m_curFocused
;
2413 bool validationFailure
= false;
2414 bool forceSuccess
= (flags
& (wxPG_SEL_NOVALIDATE
|wxPG_SEL_FORCE
)) ? true : false;
2416 m_chgInfo_changedProperty
= NULL
;
2418 // If truly modified, schedule value as pending.
2419 if ( m_selected
->GetEditorClass()->GetValueFromControl( variant
, m_selected
, GetEditorControl() ) )
2421 if ( DoEditorValidate() &&
2422 PerformValidation(m_selected
, variant
) )
2424 valueIsPending
= true;
2428 validationFailure
= true;
2433 EditorsValueWasNotModified();
2438 m_inCommitChangesFromEditor
= 0;
2440 if ( validationFailure
&& !forceSuccess
)
2444 oldFocus
->SetFocus();
2445 m_curFocused
= oldFocus
;
2448 res
= OnValidationFailure(m_selected
, variant
);
2450 // Now prevent further validation failure messages
2453 EditorsValueWasNotModified();
2454 OnValidationFailureReset(m_selected
);
2457 else if ( valueIsPending
)
2459 DoPropertyChanged( m_selected
, flags
);
2460 EditorsValueWasNotModified();
2469 // -----------------------------------------------------------------------
2471 bool wxPropertyGrid::PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
,
2475 // Runs all validation functionality.
2476 // Returns true if value passes all tests.
2479 m_validationInfo
.m_failureBehavior
= m_permanentValidationFailureBehavior
;
2481 if ( pendingValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2483 if ( !p
->ValidateValue(pendingValue
, m_validationInfo
) )
2488 // Adapt list to child values, if necessary
2489 wxVariant listValue
= pendingValue
;
2490 wxVariant
* pPendingValue
= &pendingValue
;
2491 wxVariant
* pList
= NULL
;
2493 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
2494 // string value, then we need treat as it was changed instead
2495 // (or, in addition, as is the case with composite string parent).
2496 // This includes creating list variant for child values.
2498 wxPGProperty
* pwc
= p
->GetParent();
2499 wxPGProperty
* changedProperty
= p
;
2500 wxPGProperty
* baseChangedProperty
= changedProperty
;
2501 wxVariant bcpPendingList
;
2503 listValue
= pendingValue
;
2504 listValue
.SetName(p
->GetBaseName());
2507 (pwc
->HasFlag(wxPG_PROP_AGGREGATE
) || pwc
->HasFlag(wxPG_PROP_COMPOSED_VALUE
)) )
2509 wxVariantList tempList
;
2510 wxVariant
lv(tempList
, pwc
->GetBaseName());
2511 lv
.Append(listValue
);
2513 pPendingValue
= &listValue
;
2515 if ( pwc
->HasFlag(wxPG_PROP_AGGREGATE
) )
2517 baseChangedProperty
= pwc
;
2518 bcpPendingList
= lv
;
2521 changedProperty
= pwc
;
2522 pwc
= pwc
->GetParent();
2526 wxPGProperty
* evtChangingProperty
= changedProperty
;
2528 if ( pPendingValue
->GetType() != wxPG_VARIANT_TYPE_LIST
)
2530 value
= *pPendingValue
;
2534 // Convert list to child values
2535 pList
= pPendingValue
;
2536 changedProperty
->AdaptListToValue( *pPendingValue
, &value
);
2539 wxVariant evtChangingValue
= value
;
2541 if ( flags
& SendEvtChanging
)
2543 // FIXME: After proper ValueToString()s added, remove
2544 // this. It is just a temporary fix, as evt_changing
2545 // will simply not work for wxPG_PROP_COMPOSED_VALUE
2546 // (unless it is selected, and textctrl editor is open).
2547 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2549 evtChangingProperty
= baseChangedProperty
;
2550 if ( evtChangingProperty
!= p
)
2552 evtChangingProperty
->AdaptListToValue( bcpPendingList
, &evtChangingValue
);
2556 evtChangingValue
= pendingValue
;
2560 if ( evtChangingProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2562 if ( changedProperty
== m_selected
)
2564 wxWindow
* editor
= GetEditorControl();
2565 wxASSERT( editor
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2566 evtChangingValue
= wxStaticCast(editor
, wxTextCtrl
)->GetValue();
2570 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
2575 wxASSERT( m_chgInfo_changedProperty
== NULL
);
2576 m_chgInfo_changedProperty
= changedProperty
;
2577 m_chgInfo_baseChangedProperty
= baseChangedProperty
;
2578 m_chgInfo_pendingValue
= value
;
2581 m_chgInfo_valueList
= *pList
;
2583 m_chgInfo_valueList
.MakeNull();
2585 // If changedProperty is not property which value was edited,
2586 // then call wxPGProperty::ValidateValue() for that as well.
2587 if ( p
!= changedProperty
&& value
.GetType() != wxPG_VARIANT_TYPE_LIST
)
2589 if ( !changedProperty
->ValidateValue(value
, m_validationInfo
) )
2593 if ( flags
& SendEvtChanging
)
2595 // SendEvent returns true if event was vetoed
2596 if ( SendEvent( wxEVT_PG_CHANGING
, evtChangingProperty
, &evtChangingValue
, 0 ) )
2600 if ( flags
& IsStandaloneValidation
)
2602 // If called in 'generic' context, we need to reset
2603 // m_chgInfo_changedProperty and write back translated value.
2604 m_chgInfo_changedProperty
= NULL
;
2605 pendingValue
= value
;
2611 // -----------------------------------------------------------------------
2613 void wxPropertyGrid::DoShowPropertyError( wxPGProperty
* WXUNUSED(property
), const wxString
& msg
)
2615 if ( !msg
.length() )
2619 if ( !wxPGGlobalVars
->m_offline
)
2621 wxWindow
* topWnd
= ::wxGetTopLevelParent(this);
2624 wxFrame
* pFrame
= wxDynamicCast(topWnd
, wxFrame
);
2627 wxStatusBar
* pStatusBar
= pFrame
->GetStatusBar();
2630 pStatusBar
->SetStatusText(msg
);
2638 ::wxMessageBox(msg
, _T("Property Error"));
2641 // -----------------------------------------------------------------------
2643 bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty
* property
, wxVariant
& WXUNUSED(invalidValue
) )
2645 int vfb
= m_validationInfo
.m_failureBehavior
;
2647 if ( vfb
& wxPG_VFB_BEEP
)
2650 if ( (vfb
& wxPG_VFB_MARK_CELL
) &&
2651 !property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
2653 unsigned int colCount
= m_pState
->GetColumnCount();
2655 // We need backup marked property's cells
2656 m_propCellsBackup
= property
->m_cells
;
2658 wxColour vfbFg
= *wxWHITE
;
2659 wxColour vfbBg
= *wxRED
;
2661 property
->EnsureCells(colCount
);
2663 for ( unsigned int i
=0; i
<colCount
; i
++ )
2665 wxPGCell
& cell
= property
->m_cells
[i
];
2666 cell
.SetFgCol(vfbFg
);
2667 cell
.SetBgCol(vfbBg
);
2670 DrawItemAndChildren(property
);
2672 if ( property
== m_selected
)
2674 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2676 wxWindow
* editor
= GetEditorControl();
2679 editor
->SetForegroundColour(vfbFg
);
2680 editor
->SetBackgroundColour(vfbBg
);
2685 if ( vfb
& wxPG_VFB_SHOW_MESSAGE
)
2687 wxString msg
= m_validationInfo
.m_failureMessage
;
2689 if ( !msg
.length() )
2690 msg
= _T("You have entered invalid value. Press ESC to cancel editing.");
2692 DoShowPropertyError(property
, msg
);
2695 return (vfb
& wxPG_VFB_STAY_IN_PROPERTY
) ? false : true;
2698 // -----------------------------------------------------------------------
2700 void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty
* property
)
2702 int vfb
= m_validationInfo
.m_failureBehavior
;
2704 if ( vfb
& wxPG_VFB_MARK_CELL
)
2707 property
->m_cells
= m_propCellsBackup
;
2709 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL
);
2711 if ( property
== m_selected
&& GetEditorControl() )
2713 // Calling this will recreate the control, thus resetting its colour
2714 RefreshProperty(property
);
2718 DrawItemAndChildren(property
);
2723 // -----------------------------------------------------------------------
2725 // flags are same as with DoSelectProperty
2726 bool wxPropertyGrid::DoPropertyChanged( wxPGProperty
* p
, unsigned int selFlags
)
2728 if ( m_inDoPropertyChanged
)
2731 wxWindow
* editor
= GetEditorControl();
2733 m_pState
->m_anyModified
= 1;
2735 m_inDoPropertyChanged
= 1;
2737 // Maybe need to update control
2738 wxASSERT( m_chgInfo_changedProperty
!= NULL
);
2740 // These values were calculated in PerformValidation()
2741 wxPGProperty
* changedProperty
= m_chgInfo_changedProperty
;
2742 wxVariant value
= m_chgInfo_pendingValue
;
2744 wxPGProperty
* topPaintedProperty
= changedProperty
;
2746 while ( !topPaintedProperty
->IsCategory() &&
2747 !topPaintedProperty
->IsRoot() )
2749 topPaintedProperty
= topPaintedProperty
->GetParent();
2752 changedProperty
->SetValue(value
, &m_chgInfo_valueList
, wxPG_SETVAL_BY_USER
);
2754 // Set as Modified (not if dragging just began)
2755 if ( !(p
->m_flags
& wxPG_PROP_MODIFIED
) )
2757 p
->m_flags
|= wxPG_PROP_MODIFIED
;
2758 if ( p
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
2761 SetCurControlBoldFont();
2767 // Propagate updates to parent(s)
2769 wxPGProperty
* prevPwc
= NULL
;
2771 while ( prevPwc
!= topPaintedProperty
)
2773 pwc
->m_flags
|= wxPG_PROP_MODIFIED
;
2775 if ( pwc
== m_selected
&& (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
2778 SetCurControlBoldFont();
2782 pwc
= pwc
->GetParent();
2785 // Draw the actual property
2786 DrawItemAndChildren( topPaintedProperty
);
2789 // If value was set by wxPGProperty::OnEvent, then update the editor
2791 if ( selFlags
& wxPG_SEL_DIALOGVAL
)
2794 p
->GetEditorClass()->UpdateControl(p
, editor
);
2798 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2799 if ( m_wndEditor
) m_wndEditor
->Refresh();
2800 if ( m_wndEditor2
) m_wndEditor2
->Refresh();
2805 wxASSERT( !changedProperty
->GetParent()->HasFlag(wxPG_PROP_AGGREGATE
) );
2807 // If top parent has composite string value, then send to child parents,
2808 // starting from baseChangedProperty.
2809 if ( changedProperty
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
2811 pwc
= m_chgInfo_baseChangedProperty
;
2813 while ( pwc
!= changedProperty
)
2815 SendEvent( wxEVT_PG_CHANGED
, pwc
, NULL
, selFlags
);
2816 pwc
= pwc
->GetParent();
2820 SendEvent( wxEVT_PG_CHANGED
, changedProperty
, NULL
, selFlags
);
2822 m_inDoPropertyChanged
= 0;
2827 // -----------------------------------------------------------------------
2829 bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
)
2831 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
2833 m_chgInfo_changedProperty
= NULL
;
2835 if ( PerformValidation(p
, newValue
) )
2837 DoPropertyChanged(p
);
2842 OnValidationFailure(p
, newValue
);
2848 // -----------------------------------------------------------------------
2850 wxVariant
wxPropertyGrid::GetUncommittedPropertyValue()
2852 wxPGProperty
* prop
= GetSelectedProperty();
2855 return wxNullVariant
;
2857 wxTextCtrl
* tc
= GetEditorTextCtrl();
2858 wxVariant value
= prop
->GetValue();
2860 if ( !tc
|| !IsEditorsValueModified() )
2863 if ( !prop
->StringToValue(value
, tc
->GetValue()) )
2866 if ( !PerformValidation(prop
, value
, IsStandaloneValidation
) )
2867 return prop
->GetValue();
2872 // -----------------------------------------------------------------------
2874 // Runs wxValidator for the selected property
2875 bool wxPropertyGrid::DoEditorValidate()
2880 // -----------------------------------------------------------------------
2882 bool wxPropertyGrid::ProcessEvent(wxEvent
& event
)
2884 wxWindow
* wnd
= (wxWindow
*) event
.GetEventObject();
2885 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxWindow
)) )
2887 wxWindow
* parent
= wnd
->GetParent();
2890 (parent
== m_canvas
||
2891 parent
->GetParent() == m_canvas
) )
2893 OnCustomEditorEvent(event
);
2897 return wxPanel::ProcessEvent(event
);
2900 // -----------------------------------------------------------------------
2902 void wxPropertyGrid::OnCustomEditorEvent( wxEvent
&event
)
2904 wxPGProperty
* selected
= m_selected
;
2906 // Somehow, event is handled after property has been deselected.
2907 // Possibly, but very rare.
2911 if ( m_iFlags
& wxPG_FL_IN_ONCUSTOMEDITOREVENT
)
2914 wxVariant
pendingValue(selected
->GetValueRef());
2915 wxWindow
* wnd
= GetEditorControl();
2917 bool wasUnspecified
= selected
->IsValueUnspecified();
2918 int usesAutoUnspecified
= selected
->UsesAutoUnspecified();
2920 bool valueIsPending
= false;
2922 m_chgInfo_changedProperty
= NULL
;
2924 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
|wxPG_FL_VALUE_CHANGE_IN_EVENT
);
2927 // Filter out excess wxTextCtrl modified events
2928 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
&&
2930 wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
2932 wxTextCtrl
* tc
= (wxTextCtrl
*) wnd
;
2934 wxString newTcValue
= tc
->GetValue();
2935 if ( m_prevTcValue
== newTcValue
)
2938 m_prevTcValue
= newTcValue
;
2941 SetInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
2943 bool validationFailure
= false;
2944 bool buttonWasHandled
= false;
2947 // Try common button handling
2948 if ( m_wndEditor2
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
2950 wxPGEditorDialogAdapter
* adapter
= selected
->GetEditorDialog();
2954 buttonWasHandled
= true;
2955 // Store as res2, as previously (and still currently alternatively)
2956 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
2957 // in wxPGProperty::OnEvent().
2958 adapter
->ShowDialog( this, selected
);
2963 if ( !buttonWasHandled
)
2967 // First call editor class' event handler.
2968 const wxPGEditor
* editor
= selected
->GetEditorClass();
2970 if ( editor
->OnEvent( this, selected
, wnd
, event
) )
2972 // If changes, validate them
2973 if ( DoEditorValidate() )
2975 if ( editor
->GetValueFromControl( pendingValue
, m_selected
, wnd
) )
2976 valueIsPending
= true;
2980 validationFailure
= true;
2985 // Then the property's custom handler (must be always called, unless
2986 // validation failed).
2987 if ( !validationFailure
)
2988 buttonWasHandled
= selected
->OnEvent( this, wnd
, event
);
2991 // SetValueInEvent(), as called in one of the functions referred above
2992 // overrides editor's value.
2993 if ( m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
)
2995 valueIsPending
= true;
2996 pendingValue
= m_changeInEventValue
;
2997 selFlags
|= wxPG_SEL_DIALOGVAL
;
3000 if ( !validationFailure
&& valueIsPending
)
3001 if ( !PerformValidation(m_selected
, pendingValue
) )
3002 validationFailure
= true;
3004 if ( validationFailure
)
3006 OnValidationFailure(selected
, pendingValue
);
3008 else if ( valueIsPending
)
3010 selFlags
|= ( !wasUnspecified
&& selected
->IsValueUnspecified() && usesAutoUnspecified
) ? wxPG_SEL_SETUNSPEC
: 0;
3012 DoPropertyChanged(selected
, selFlags
);
3013 EditorsValueWasNotModified();
3015 // Regardless of editor type, unfocus editor on
3016 // text-editing related enter press.
3017 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3024 // No value after all
3026 // Regardless of editor type, unfocus editor on
3027 // text-editing related enter press.
3028 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
3033 // Let unhandled button click events go to the parent
3034 if ( !buttonWasHandled
&& event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
3036 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
,GetId());
3037 GetEventHandler()->AddPendingEvent(evt
);
3041 ClearInternalFlag(wxPG_FL_IN_ONCUSTOMEDITOREVENT
);
3044 // -----------------------------------------------------------------------
3045 // wxPropertyGrid editor control helper methods
3046 // -----------------------------------------------------------------------
3048 wxRect
wxPropertyGrid::GetEditorWidgetRect( wxPGProperty
* p
, int column
) const
3050 int itemy
= p
->GetY2(m_lineHeight
);
3052 int cust_img_space
= 0;
3053 int splitterX
= m_pState
->DoGetSplitterPosition(column
-1);
3054 int colEnd
= splitterX
+ m_pState
->m_colWidths
[column
];
3056 // TODO: If custom image detection changes from current, change this.
3057 if ( m_iFlags
& wxPG_FL_CUR_USES_CUSTOM_IMAGE
/*p->m_flags & wxPG_PROP_CUSTOMIMAGE*/ )
3059 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3060 int imwid
= p
->OnMeasureImage().x
;
3061 if ( imwid
< 1 ) imwid
= wxPG_CUSTOM_IMAGE_WIDTH
;
3062 cust_img_space
= imwid
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
3067 splitterX
+cust_img_space
+wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1,
3069 colEnd
-splitterX
-wxPG_XBEFOREWIDGET
-wxPG_CONTROL_MARGIN
-cust_img_space
-1,
3074 // -----------------------------------------------------------------------
3076 wxRect
wxPropertyGrid::GetImageRect( wxPGProperty
* p
, int item
) const
3078 wxSize sz
= GetImageSize(p
, item
);
3079 return wxRect(wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
3080 wxPG_CUSTOM_IMAGE_SPACINGY
,
3085 // return size of custom paint image
3086 wxSize
wxPropertyGrid::GetImageSize( wxPGProperty
* p
, int item
) const
3088 // If called with NULL property, then return default image
3089 // size for properties that use image.
3091 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH
,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
));
3093 wxSize cis
= p
->OnMeasureImage(item
);
3095 int choiceCount
= p
->m_choices
.GetCount();
3096 int comVals
= p
->GetDisplayedCommonValueCount();
3097 if ( item
>= choiceCount
&& comVals
> 0 )
3099 unsigned int cvi
= item
-choiceCount
;
3100 cis
= GetCommonValue(cvi
)->GetRenderer()->GetImageSize(NULL
, 1, cvi
);
3102 else if ( item
>= 0 && choiceCount
== 0 )
3103 return wxSize(0, 0);
3108 cis
.x
= wxPG_CUSTOM_IMAGE_WIDTH
;
3113 cis
.y
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
3120 // -----------------------------------------------------------------------
3122 // takes scrolling into account
3123 void wxPropertyGrid::ImprovedClientToScreen( int* px
, int* py
)
3126 GetViewStart(&vx
,&vy
);
3127 vy
*=wxPG_PIXELS_PER_UNIT
;
3128 vx
*=wxPG_PIXELS_PER_UNIT
;
3131 ClientToScreen( px
, py
);
3134 // -----------------------------------------------------------------------
3136 wxPropertyGridHitTestResult
wxPropertyGrid::HitTest( const wxPoint
& pt
) const
3139 GetViewStart(&pt2
.x
,&pt2
.y
);
3140 pt2
.x
*= wxPG_PIXELS_PER_UNIT
;
3141 pt2
.y
*= wxPG_PIXELS_PER_UNIT
;
3145 return m_pState
->HitTest(pt2
);
3148 // -----------------------------------------------------------------------
3150 // custom set cursor
3151 void wxPropertyGrid::CustomSetCursor( int type
, bool override
)
3153 if ( type
== m_curcursor
&& !override
) return;
3155 wxCursor
* cursor
= &wxPG_DEFAULT_CURSOR
;
3157 if ( type
== wxCURSOR_SIZEWE
)
3158 cursor
= m_cursorSizeWE
;
3160 m_canvas
->SetCursor( *cursor
);
3165 // -----------------------------------------------------------------------
3166 // wxPropertyGrid property selection
3167 // -----------------------------------------------------------------------
3169 // Setups event handling for child control
3170 void wxPropertyGrid::SetupChildEventHandling( wxWindow
* argWnd
)
3172 wxWindowID id
= argWnd
->GetId();
3174 if ( argWnd
== m_wndEditor
)
3176 argWnd
->Connect(id
, wxEVT_MOTION
,
3177 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild
),
3179 argWnd
->Connect(id
, wxEVT_LEFT_UP
,
3180 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild
),
3182 argWnd
->Connect(id
, wxEVT_LEFT_DOWN
,
3183 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild
),
3185 argWnd
->Connect(id
, wxEVT_RIGHT_UP
,
3186 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild
),
3188 argWnd
->Connect(id
, wxEVT_ENTER_WINDOW
,
3189 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3191 argWnd
->Connect(id
, wxEVT_LEAVE_WINDOW
,
3192 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry
),
3196 argWnd
->Connect(id
, wxEVT_KEY_DOWN
,
3197 wxCharEventHandler(wxPropertyGrid::OnChildKeyDown
),
3201 void wxPropertyGrid::FreeEditors()
3204 // Return focus back to canvas from children (this is required at least for
3205 // GTK+, which, unlike Windows, clears focus when control is destroyed
3206 // instead of moving it to closest parent).
3207 wxWindow
* focus
= wxWindow::FindFocus();
3210 wxWindow
* parent
= focus
->GetParent();
3213 if ( parent
== m_canvas
)
3218 parent
= parent
->GetParent();
3222 // Do not free editors immediately if processing events
3225 m_wndEditor2
->Hide();
3226 wxPendingDelete
.Append( m_wndEditor2
);
3227 m_wndEditor2
= (wxWindow
*) NULL
;
3232 m_wndEditor
->Hide();
3233 wxPendingDelete
.Append( m_wndEditor
);
3234 m_wndEditor
= (wxWindow
*) NULL
;
3238 // Call with NULL to de-select property
3239 bool wxPropertyGrid::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
3243 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3244 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3246 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3249 if ( m_inDoSelectProperty
)
3252 m_inDoSelectProperty
= 1;
3254 wxPGProperty
* prev
= m_selected
;
3258 m_inDoSelectProperty
= 0;
3264 wxPrintf( "Selected %s\n", m_selected->GetClassInfo()->GetClassName() );
3266 wxPrintf( "None selected\n" );
3269 wxPrintf( "P = %s\n", p->GetClassInfo()->GetClassName() );
3271 wxPrintf( "P = NULL\n" );
3274 // If we are frozen, then just set the values.
3277 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3278 m_editorFocused
= 0;
3281 m_pState
->m_selected
= p
;
3283 // If frozen, always free controls. But don't worry, as Thaw will
3284 // recall SelectProperty to recreate them.
3287 // Prevent any further selection measures in this call
3288 p
= (wxPGProperty
*) NULL
;
3293 if ( m_selected
== p
&& !(flags
& wxPG_SEL_FORCE
) )
3295 // Only set focus if not deselecting
3298 if ( flags
& wxPG_SEL_FOCUS
)
3302 m_wndEditor
->SetFocus();
3303 m_editorFocused
= 1;
3312 m_inDoSelectProperty
= 0;
3317 // First, deactivate previous
3321 OnValidationFailureReset(m_selected
);
3323 // Must double-check if this is an selected in case of forceswitch
3326 if ( !CommitChangesFromEditor(flags
) )
3328 // Validation has failed, so we can't exit the previous editor
3329 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3330 // _("Invalid Value"),wxOK|wxICON_ERROR);
3331 m_inDoSelectProperty
= 0;
3339 m_selected
= (wxPGProperty
*) NULL
;
3340 m_pState
->m_selected
= (wxPGProperty
*) NULL
;
3342 // We need to always fully refresh the grid here
3345 m_iFlags
&= ~(wxPG_FL_ABNORMAL_EDITOR
);
3346 EditorsValueWasNotModified();
3349 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3352 // Then, activate the one given.
3355 int propY
= p
->GetY2(m_lineHeight
);
3357 int splitterX
= GetSplitterPosition();
3358 m_editorFocused
= 0;
3360 m_pState
->m_selected
= p
;
3361 m_iFlags
|= wxPG_FL_PRIMARY_FILLS_ENTIRE
;
3363 m_iFlags
&= ~(wxPG_FL_VALIDATION_FAILED
);
3365 wxASSERT( m_wndEditor
== (wxWindow
*) NULL
);
3368 // Only create editor for non-disabled non-caption
3369 if ( !p
->IsCategory() && !(p
->m_flags
& wxPG_PROP_DISABLED
) )
3371 // do this for non-caption items
3375 // Do we need to paint the custom image, if any?
3376 m_iFlags
&= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE
);
3377 if ( (p
->m_flags
& wxPG_PROP_CUSTOMIMAGE
) &&
3378 !p
->GetEditorClass()->CanContainCustomImage()
3380 m_iFlags
|= wxPG_FL_CUR_USES_CUSTOM_IMAGE
;
3382 wxRect grect
= GetEditorWidgetRect(p
, m_selColumn
);
3383 wxPoint goodPos
= grect
.GetPosition();
3384 #if wxPG_CREATE_CONTROLS_HIDDEN
3385 int coord_adjust
= m_height
- goodPos
.y
;
3386 goodPos
.y
+= coord_adjust
;
3389 const wxPGEditor
* editor
= p
->GetEditorClass();
3390 wxCHECK_MSG(editor
, false,
3391 wxT("NULL editor class not allowed"));
3393 m_iFlags
&= ~wxPG_FL_FIXED_WIDTH_EDITOR
;
3395 wxPGWindowList wndList
= editor
->CreateControls(this,
3400 m_wndEditor
= wndList
.m_primary
;
3401 m_wndEditor2
= wndList
.m_secondary
;
3402 wxWindow
* primaryCtrl
= GetEditorControl();
3405 // Essentially, primaryCtrl == m_wndEditor
3408 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3409 // value is drawn as normal, and m_wndEditor2 is assumed
3410 // to be a right-aligned button that triggers a separate editorCtrl
3415 wxASSERT_MSG( m_wndEditor
->GetParent() == GetPanel(),
3416 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3418 // Set validator, if any
3419 #if wxUSE_VALIDATORS
3420 wxValidator
* validator
= p
->GetValidator();
3422 primaryCtrl
->SetValidator(*validator
);
3425 if ( m_wndEditor
->GetSize().y
> (m_lineHeight
+6) )
3426 m_iFlags
|= wxPG_FL_ABNORMAL_EDITOR
;
3428 // If it has modified status, use bold font
3429 // (must be done before capturing m_ctrlXAdjust)
3430 if ( (p
->m_flags
& wxPG_PROP_MODIFIED
) && (m_windowStyle
& wxPG_BOLD_MODIFIED
) )
3431 SetCurControlBoldFont();
3434 // Fix TextCtrl indentation
3435 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3436 wxTextCtrl
* tc
= NULL
;
3437 if ( primaryCtrl
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
3438 tc
= ((wxOwnerDrawnComboBox
*)primaryCtrl
)->GetTextCtrl();
3440 tc
= wxDynamicCast(primaryCtrl
, wxTextCtrl
);
3442 ::SendMessage(GetHwndOf(tc
), EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0, 0));
3445 // Store x relative to splitter (we'll need it).
3446 m_ctrlXAdjust
= m_wndEditor
->GetPosition().x
- splitterX
;
3448 // Check if background clear is not necessary
3449 wxPoint pos
= m_wndEditor
->GetPosition();
3450 if ( pos
.x
> (splitterX
+1) || pos
.y
> propY
)
3452 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
3455 m_wndEditor
->SetSizeHints(3, 3);
3457 #if wxPG_CREATE_CONTROLS_HIDDEN
3458 m_wndEditor
->Show(false);
3459 m_wndEditor
->Freeze();
3461 goodPos
= m_wndEditor
->GetPosition();
3462 goodPos
.y
-= coord_adjust
;
3463 m_wndEditor
->Move( goodPos
);
3466 SetupChildEventHandling(primaryCtrl
);
3468 // Focus and select all (wxTextCtrl, wxComboBox etc)
3469 if ( flags
& wxPG_SEL_FOCUS
)
3471 primaryCtrl
->SetFocus();
3473 p
->GetEditorClass()->OnFocus(p
, primaryCtrl
);
3479 wxASSERT_MSG( m_wndEditor2
->GetParent() == GetPanel(),
3480 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3482 // Get proper id for wndSecondary
3483 m_wndSecId
= m_wndEditor2
->GetId();
3484 wxWindowList children
= m_wndEditor2
->GetChildren();
3485 wxWindowList::iterator node
= children
.begin();
3486 if ( node
!= children
.end() )
3487 m_wndSecId
= ((wxWindow
*)*node
)->GetId();
3489 m_wndEditor2
->SetSizeHints(3,3);
3491 #if wxPG_CREATE_CONTROLS_HIDDEN
3492 wxRect sec_rect
= m_wndEditor2
->GetRect();
3493 sec_rect
.y
-= coord_adjust
;
3495 // Fine tuning required to fix "oversized"
3496 // button disappearance bug.
3497 if ( sec_rect
.y
< 0 )
3499 sec_rect
.height
+= sec_rect
.y
;
3502 m_wndEditor2
->SetSize( sec_rect
);
3504 m_wndEditor2
->Show();
3506 SetupChildEventHandling(m_wndEditor2
);
3508 // If no primary editor, focus to button to allow
3509 // it to interprete ENTER etc.
3510 // NOTE: Due to problems focusing away from it, this
3511 // has been disabled.
3513 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3514 m_wndEditor2->SetFocus();
3518 if ( flags
& wxPG_SEL_FOCUS
)
3519 m_editorFocused
= 1;
3524 // Make sure focus is in grid canvas (important for wxGTK, at least)
3528 EditorsValueWasNotModified();
3530 // If it's inside collapsed section, expand parent, scroll, etc.
3531 // Also, if it was partially visible, scroll it into view.
3532 if ( !(flags
& wxPG_SEL_NONVISIBLE
) )
3537 #if wxPG_CREATE_CONTROLS_HIDDEN
3538 m_wndEditor
->Thaw();
3540 m_wndEditor
->Show(true);
3547 // Make sure focus is in grid canvas
3551 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY
);
3557 // Show help text in status bar.
3558 // (if found and grid not embedded in manager with help box and
3559 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3562 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
) )
3564 wxStatusBar
* statusbar
= (wxStatusBar
*) NULL
;
3565 if ( !(m_iFlags
& wxPG_FL_NOSTATUSBARHELP
) )
3567 wxFrame
* frame
= wxDynamicCast(::wxGetTopLevelParent(this),wxFrame
);
3569 statusbar
= frame
->GetStatusBar();
3574 const wxString
* pHelpString
= (const wxString
*) NULL
;
3578 pHelpString
= &p
->GetHelpString();
3579 if ( pHelpString
->length() )
3581 // Set help box text.
3582 statusbar
->SetStatusText( *pHelpString
);
3583 m_iFlags
|= wxPG_FL_STRING_IN_STATUSBAR
;
3587 if ( (!pHelpString
|| !pHelpString
->length()) &&
3588 (m_iFlags
& wxPG_FL_STRING_IN_STATUSBAR
) )
3590 // Clear help box - but only if it was written
3591 // by us at previous time.
3592 statusbar
->SetStatusText( m_emptyString
);
3593 m_iFlags
&= ~(wxPG_FL_STRING_IN_STATUSBAR
);
3599 m_inDoSelectProperty
= 0;
3601 // call wx event handler (here so that it also occurs on deselection)
3602 SendEvent( wxEVT_PG_SELECTED
, m_selected
, NULL
, flags
);
3607 // -----------------------------------------------------------------------
3609 bool wxPropertyGrid::UnfocusEditor()
3611 if ( !m_selected
|| !m_wndEditor
|| m_frozen
)
3614 if ( !CommitChangesFromEditor(0) )
3618 DrawItem(m_selected
);
3623 // -----------------------------------------------------------------------
3625 // This method is not inline because it called dozens of times
3626 // (i.e. two-arg function calls create smaller code size).
3627 bool wxPropertyGrid::DoClearSelection()
3629 return DoSelectProperty((wxPGProperty
*)NULL
);
3632 // -----------------------------------------------------------------------
3633 // wxPropertyGrid expand/collapse state
3634 // -----------------------------------------------------------------------
3636 bool wxPropertyGrid::DoCollapse( wxPGProperty
* p
, bool sendEvents
)
3638 wxPGProperty
* pwc
= wxStaticCast(p
, wxPGProperty
);
3640 // If active editor was inside collapsed section, then disable it
3641 if ( m_selected
&& m_selected
->IsSomeParent(p
) )
3643 ClearSelection(false);
3646 // Store dont-center-splitter flag 'cause we need to temporarily set it
3647 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3648 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3650 bool res
= m_pState
->DoCollapse(pwc
);
3655 SendEvent( wxEVT_PG_ITEM_COLLAPSED
, p
);
3657 RecalculateVirtualSize();
3659 // Redraw etc. only if collapsed was visible.
3660 if (pwc
->IsVisible() &&
3662 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) ) )
3664 // When item is collapsed so that scrollbar would move,
3665 // graphics mess is about (unless we redraw everything).
3670 // Clear dont-center-splitter flag if it wasn't set
3671 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3676 // -----------------------------------------------------------------------
3678 bool wxPropertyGrid::DoExpand( wxPGProperty
* p
, bool sendEvents
)
3680 wxCHECK_MSG( p
, false, wxT("invalid property id") );
3682 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
3684 // Store dont-center-splitter flag 'cause we need to temporarily set it
3685 wxUint32 old_flag
= m_iFlags
& wxPG_FL_DONT_CENTER_SPLITTER
;
3686 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
3688 bool res
= m_pState
->DoExpand(pwc
);
3693 SendEvent( wxEVT_PG_ITEM_EXPANDED
, p
);
3695 RecalculateVirtualSize();
3697 // Redraw etc. only if expanded was visible.
3698 if ( pwc
->IsVisible() && !m_frozen
&&
3699 ( !pwc
->IsCategory() || !(m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
3703 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3706 DrawItems(pwc
, NULL
);
3711 // Clear dont-center-splitter flag if it wasn't set
3712 m_iFlags
= (m_iFlags
& ~wxPG_FL_DONT_CENTER_SPLITTER
) | old_flag
;
3717 // -----------------------------------------------------------------------
3719 bool wxPropertyGrid::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
3722 return m_pState
->DoHideProperty(p
, hide
, flags
);
3725 ( m_selected
== p
|| m_selected
->IsSomeParent(p
) )
3728 ClearSelection(false);
3731 m_pState
->DoHideProperty(p
, hide
, flags
);
3733 RecalculateVirtualSize();
3740 // -----------------------------------------------------------------------
3741 // wxPropertyGrid size related methods
3742 // -----------------------------------------------------------------------
3744 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos
)
3746 if ( (m_iFlags
& wxPG_FL_RECALCULATING_VIRTUAL_SIZE
) || m_frozen
)
3750 // If virtual height was changed, then recalculate editor control position(s)
3751 if ( m_pState
->m_vhCalcPending
)
3752 CorrectEditorWidgetPosY();
3754 m_pState
->EnsureVirtualHeight();
3757 int by1
= m_pState
->GetVirtualHeight();
3758 int by2
= m_pState
->GetActualVirtualHeight();
3761 wxString s
= wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1
, by2
);
3762 wxFAIL_MSG(s
.c_str());
3767 m_iFlags
|= wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
3769 int x
= m_pState
->m_width
;
3770 int y
= m_pState
->m_virtualHeight
;
3773 GetClientSize(&width
,&height
);
3775 // Now adjust virtual size.
3776 SetVirtualSize(x
, y
);
3782 // Adjust scrollbars
3783 if ( HasVirtualWidth() )
3785 xAmount
= x
/wxPG_PIXELS_PER_UNIT
;
3786 xPos
= GetScrollPos( wxHORIZONTAL
);
3789 if ( forceXPos
!= -1 )
3792 else if ( xPos
> (xAmount
-(width
/wxPG_PIXELS_PER_UNIT
)) )
3795 int yAmount
= (y
+wxPG_PIXELS_PER_UNIT
+2)/wxPG_PIXELS_PER_UNIT
;
3796 int yPos
= GetScrollPos( wxVERTICAL
);
3798 SetScrollbars( wxPG_PIXELS_PER_UNIT
, wxPG_PIXELS_PER_UNIT
,
3799 xAmount
, yAmount
, xPos
, yPos
, true );
3801 // Must re-get size now
3802 GetClientSize(&width
,&height
);
3804 if ( !HasVirtualWidth() )
3806 m_pState
->SetVirtualWidth(width
);
3813 m_canvas
->SetSize( x
, y
);
3815 m_pState
->CheckColumnWidths();
3818 CorrectEditorWidgetSizeX();
3820 m_iFlags
&= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE
;
3823 // -----------------------------------------------------------------------
3825 void wxPropertyGrid::OnResize( wxSizeEvent
& event
)
3827 if ( !(m_iFlags
& wxPG_FL_INITIALIZED
) )
3831 GetClientSize(&width
,&height
);
3836 #if wxPG_DOUBLE_BUFFER
3837 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING
) )
3839 int dblh
= (m_lineHeight
*2);
3840 if ( !m_doubleBuffer
)
3842 // Create double buffer bitmap to draw on, if none
3843 int w
= (width
>250)?width
:250;
3844 int h
= height
+ dblh
;
3846 m_doubleBuffer
= new wxBitmap( w
, h
);
3850 int w
= m_doubleBuffer
->GetWidth();
3851 int h
= m_doubleBuffer
->GetHeight();
3853 // Double buffer must be large enough
3854 if ( w
< width
|| h
< (height
+dblh
) )
3856 if ( w
< width
) w
= width
;
3857 if ( h
< (height
+dblh
) ) h
= height
+ dblh
;
3858 delete m_doubleBuffer
;
3859 m_doubleBuffer
= new wxBitmap( w
, h
);
3866 m_pState
->OnClientWidthChange( width
, event
.GetSize().x
- m_ncWidth
, true );
3867 m_ncWidth
= event
.GetSize().x
;
3871 if ( m_pState
->m_itemsAdded
)
3872 PrepareAfterItemsAdded();
3874 // Without this, virtual size (atleast under wxGTK) will be skewed
3875 RecalculateVirtualSize();
3881 // -----------------------------------------------------------------------
3883 void wxPropertyGrid::SetVirtualWidth( int width
)
3887 // Disable virtual width
3888 width
= GetClientSize().x
;
3889 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
3893 // Enable virtual width
3894 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH
);
3896 m_pState
->SetVirtualWidth( width
);
3899 void wxPropertyGrid::SetFocusOnCanvas()
3901 m_canvas
->SetFocusIgnoringChildren();
3902 m_editorFocused
= 0;
3905 // -----------------------------------------------------------------------
3906 // wxPropertyGrid mouse event handling
3907 // -----------------------------------------------------------------------
3909 // selFlags uses same values DoSelectProperty's flags
3910 // Returns true if event was vetoed.
3911 bool wxPropertyGrid::SendEvent( int eventType
, wxPGProperty
* p
, wxVariant
* pValue
, unsigned int WXUNUSED(selFlags
) )
3913 // Send property grid event of specific type and with specific property
3914 wxPropertyGridEvent
evt( eventType
, m_eventObject
->GetId() );
3915 evt
.SetPropertyGrid(this);
3916 evt
.SetEventObject(m_eventObject
);
3920 evt
.SetCanVeto(true);
3921 evt
.SetupValidationInfo();
3922 m_validationInfo
.m_pValue
= pValue
;
3924 wxEvtHandler
* evtHandler
= m_eventObject
->GetEventHandler();
3926 evtHandler
->ProcessEvent(evt
);
3928 return evt
.WasVetoed();
3931 // -----------------------------------------------------------------------
3933 // Return false if should be skipped
3934 bool wxPropertyGrid::HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
)
3938 // Need to set focus?
3939 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
3944 wxPropertyGridPageState
* state
= m_pState
;
3946 int splitterHitOffset
;
3947 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
3949 wxPGProperty
* p
= DoGetItemAtY(y
);
3953 int depth
= (int)p
->GetDepth() - 1;
3955 int marginEnds
= m_marginWidth
+ ( depth
* m_subgroup_extramargin
);
3957 if ( x
>= marginEnds
)
3961 if ( p
->IsCategory() )
3963 // This is category.
3964 wxPropertyCategory
* pwc
= (wxPropertyCategory
*)p
;
3966 int textX
= m_marginWidth
+ ((unsigned int)((pwc
->m_depth
-1)*m_subgroup_extramargin
));
3968 // Expand, collapse, activate etc. if click on text or left of splitter.
3971 ( x
< (textX
+pwc
->GetTextExtent(this, m_captionFont
)+(wxPG_CAPRECTXMARGIN
*2)) ||
3976 if ( !DoSelectProperty( p
) )
3979 // On double-click, expand/collapse.
3980 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
3982 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
3983 else DoExpand( p
, true );
3987 else if ( splitterHit
== -1 )
3990 unsigned int selFlag
= 0;
3991 if ( columnHit
== 1 )
3993 m_iFlags
|= wxPG_FL_ACTIVATION_BY_CLICK
;
3994 selFlag
= wxPG_SEL_FOCUS
;
3996 if ( !DoSelectProperty( p
, selFlag
) )
3999 m_iFlags
&= ~(wxPG_FL_ACTIVATION_BY_CLICK
);
4001 if ( p
->GetChildCount() && !p
->IsCategory() )
4002 // On double-click, expand/collapse.
4003 if ( event
.ButtonDClick() && !(m_windowStyle
& wxPG_HIDE_MARGIN
) )
4005 wxPGProperty
* pwc
= (wxPGProperty
*)p
;
4006 if ( pwc
->IsExpanded() ) DoCollapse( p
, true );
4007 else DoExpand( p
, true );
4014 // click on splitter
4015 if ( !(m_windowStyle
& wxPG_STATIC_SPLITTER
) )
4017 if ( event
.GetEventType() == wxEVT_LEFT_DCLICK
)
4019 // Double-clicking the splitter causes auto-centering
4020 CenterSplitter( true );
4022 else if ( m_dragStatus
== 0 )
4025 // Begin draggin the splitter
4029 // Changes must be committed here or the
4030 // value won't be drawn correctly
4031 if ( !CommitChangesFromEditor() )
4034 m_wndEditor
->Show ( false );
4037 if ( !(m_iFlags
& wxPG_FL_MOUSE_CAPTURED
) )
4039 m_canvas
->CaptureMouse();
4040 m_iFlags
|= wxPG_FL_MOUSE_CAPTURED
;
4044 m_draggedSplitter
= splitterHit
;
4045 m_dragOffset
= splitterHitOffset
;
4047 wxClientDC
dc(m_canvas
);
4049 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4050 // Fixes button disappearance bug
4052 m_wndEditor2
->Show ( false );
4055 m_startingSplitterX
= x
- splitterHitOffset
;
4063 if ( p
->GetChildCount() )
4065 int nx
= x
+ m_marginWidth
- marginEnds
; // Normalize x.
4067 if ( (nx
>= m_gutterWidth
&& nx
< (m_gutterWidth
+m_iconWidth
)) )
4069 int y2
= y
% m_lineHeight
;
4070 if ( (y2
>= m_buttonSpacingY
&& y2
< (m_buttonSpacingY
+m_iconHeight
)) )
4072 // On click on expander button, expand/collapse
4073 if ( ((wxPGProperty
*)p
)->IsExpanded() )
4074 DoCollapse( p
, true );
4076 DoExpand( p
, true );
4085 // -----------------------------------------------------------------------
4087 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4088 wxMouseEvent
& WXUNUSED(event
) )
4092 // Select property here as well
4093 wxPGProperty
* p
= m_propHover
;
4094 if ( p
!= m_selected
)
4095 DoSelectProperty( p
);
4097 // Send right click event.
4098 SendEvent( wxEVT_PG_RIGHT_CLICK
, p
);
4105 // -----------------------------------------------------------------------
4107 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x
), unsigned int WXUNUSED(y
),
4108 wxMouseEvent
& WXUNUSED(event
) )
4112 // Select property here as well
4113 wxPGProperty
* p
= m_propHover
;
4115 if ( p
!= m_selected
)
4116 DoSelectProperty( p
);
4118 // Send double-click event.
4119 SendEvent( wxEVT_PG_DOUBLE_CLICK
, m_propHover
);
4126 // -----------------------------------------------------------------------
4128 #if wxPG_SUPPORT_TOOLTIPS
4130 void wxPropertyGrid::SetToolTip( const wxString
& tipString
)
4132 if ( tipString
.length() )
4134 m_canvas
->SetToolTip(tipString
);
4138 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4139 m_canvas
->SetToolTip( m_emptyString
);
4141 m_canvas
->SetToolTip( NULL
);
4146 #endif // #if wxPG_SUPPORT_TOOLTIPS
4148 // -----------------------------------------------------------------------
4150 // Return false if should be skipped
4151 bool wxPropertyGrid::HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
)
4153 // Safety check (needed because mouse capturing may
4154 // otherwise freeze the control)
4155 if ( m_dragStatus
> 0 && !event
.Dragging() )
4157 HandleMouseUp(x
,y
,event
);
4160 wxPropertyGridPageState
* state
= m_pState
;
4162 int splitterHitOffset
;
4163 int columnHit
= state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4164 int splitterX
= x
- splitterHitOffset
;
4166 if ( m_dragStatus
> 0 )
4168 if ( x
> (m_marginWidth
+ wxPG_DRAG_MARGIN
) &&
4169 x
< (m_pState
->m_width
- wxPG_DRAG_MARGIN
) )
4172 int newSplitterX
= x
- m_dragOffset
;
4173 int splitterX
= x
- splitterHitOffset
;
4175 // Splitter redraw required?
4176 if ( newSplitterX
!= splitterX
)
4179 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER
);
4180 state
->DoSetSplitterPosition( newSplitterX
, m_draggedSplitter
, false );
4181 state
->m_fSplitterX
= (float) newSplitterX
;
4184 CorrectEditorWidgetSizeX();
4198 int ih
= m_lineHeight
;
4201 #if wxPG_SUPPORT_TOOLTIPS
4202 wxPGProperty
* prevHover
= m_propHover
;
4203 unsigned char prevSide
= m_mouseSide
;
4205 int curPropHoverY
= y
- (y
% ih
);
4207 // On which item it hovers
4210 ( sy
< m_propHoverY
|| sy
>= (m_propHoverY
+ih
) )
4213 // Mouse moves on another property
4215 m_propHover
= DoGetItemAtY(y
);
4216 m_propHoverY
= curPropHoverY
;
4219 SendEvent( wxEVT_PG_HIGHLIGHTED
, m_propHover
);
4222 #if wxPG_SUPPORT_TOOLTIPS
4223 // Store which side we are on
4225 if ( columnHit
== 1 )
4227 else if ( columnHit
== 0 )
4231 // If tooltips are enabled, show label or value as a tip
4232 // in case it doesn't otherwise show in full length.
4234 if ( m_windowStyle
& wxPG_TOOLTIPS
)
4236 wxToolTip
* tooltip
= m_canvas
->GetToolTip();
4238 if ( m_propHover
!= prevHover
|| prevSide
!= m_mouseSide
)
4240 if ( m_propHover
&& !m_propHover
->IsCategory() )
4243 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS
)
4245 // Show help string as a tooltip
4246 wxString tipString
= m_propHover
->GetHelpString();
4248 SetToolTip(tipString
);
4252 // Show cropped value string as a tooltip
4256 if ( m_mouseSide
== 1 )
4258 tipString
= m_propHover
->m_label
;
4259 space
= splitterX
-m_marginWidth
-3;
4261 else if ( m_mouseSide
== 2 )
4263 tipString
= m_propHover
->GetDisplayedString();
4265 space
= m_width
- splitterX
;
4266 if ( m_propHover
->m_flags
& wxPG_PROP_CUSTOMIMAGE
)
4267 space
-= wxPG_CUSTOM_IMAGE_WIDTH
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
4273 GetTextExtent( tipString
, &tw
, &th
, 0, 0, &m_font
);
4276 SetToolTip( tipString
);
4283 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4284 m_canvas
->SetToolTip( m_emptyString
);
4286 m_canvas
->SetToolTip( NULL
);
4297 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4298 m_canvas
->SetToolTip( m_emptyString
);
4300 m_canvas
->SetToolTip( NULL
);
4308 if ( splitterHit
== -1 ||
4310 HasFlag(wxPG_STATIC_SPLITTER
) )
4312 // hovering on something else
4313 if ( m_curcursor
!= wxCURSOR_ARROW
)
4314 CustomSetCursor( wxCURSOR_ARROW
);
4318 // Do not allow splitter cursor on caption items.
4319 // (also not if we were dragging and its started
4320 // outside the splitter region)
4322 if ( !m_propHover
->IsCategory() &&
4326 // hovering on splitter
4328 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4329 // reliably detected.
4330 //if ( m_curcursor != wxCURSOR_SIZEWE )
4331 CustomSetCursor( wxCURSOR_SIZEWE
, true );
4337 // hovering on something else
4338 if ( m_curcursor
!= wxCURSOR_ARROW
)
4339 CustomSetCursor( wxCURSOR_ARROW
);
4346 // -----------------------------------------------------------------------
4348 // Also handles Leaving event
4349 bool wxPropertyGrid::HandleMouseUp( int x
, unsigned int WXUNUSED(y
),
4350 wxMouseEvent
&WXUNUSED(event
) )
4352 wxPropertyGridPageState
* state
= m_pState
;
4356 int splitterHitOffset
;
4357 state
->HitTestH( x
, &splitterHit
, &splitterHitOffset
);
4359 // No event type check - basicly calling this method should
4360 // just stop dragging.
4361 // Left up after dragged?
4362 if ( m_dragStatus
>= 1 )
4365 // End Splitter Dragging
4367 // DO NOT ENABLE FOLLOWING LINE!
4368 // (it is only here as a reminder to not to do it)
4371 // Disable splitter auto-centering
4372 m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
4374 // This is necessary to return cursor
4375 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
4377 m_canvas
->ReleaseMouse();
4378 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
4381 // Set back the default cursor, if necessary
4382 if ( splitterHit
== -1 ||
4385 CustomSetCursor( wxCURSOR_ARROW
);
4390 // Control background needs to be cleared
4391 if ( !(m_iFlags
& wxPG_FL_PRIMARY_FILLS_ENTIRE
) && m_selected
)
4392 DrawItem( m_selected
);
4396 m_wndEditor
->Show ( true );
4399 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4400 // Fixes button disappearance bug
4402 m_wndEditor2
->Show ( true );
4405 // This clears the focus.
4406 m_editorFocused
= 0;
4412 // -----------------------------------------------------------------------
4414 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent
& event
, int* px
, int* py
)
4416 int splitterX
= GetSplitterPosition();
4419 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4423 wxWindow
* wnd
= GetEditorControl();
4425 // Hide popup on clicks
4426 if ( event
.GetEventType() != wxEVT_MOTION
)
4427 if ( wnd
&& wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
4429 ((wxOwnerDrawnComboBox
*)wnd
)->HidePopup();
4435 if ( wnd
== (wxWindow
*) NULL
|| m_dragStatus
||
4437 ux
<= (splitterX
+ wxPG_SPLITTERX_DETECTMARGIN2
) ||
4438 ux
>= (r
.x
+r
.width
) ||
4440 event
.m_y
>= (r
.y
+r
.height
)
4450 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4455 // -----------------------------------------------------------------------
4457 void wxPropertyGrid::OnMouseClick( wxMouseEvent
&event
)
4460 if ( OnMouseCommon( event
, &x
, &y
) )
4462 HandleMouseClick(x
,y
,event
);
4467 // -----------------------------------------------------------------------
4469 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent
&event
)
4472 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4473 HandleMouseRightClick(x
,y
,event
);
4477 // -----------------------------------------------------------------------
4479 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent
&event
)
4481 // Always run standard mouse-down handler as well
4482 OnMouseClick(event
);
4485 CalcUnscrolledPosition( event
.m_x
, event
.m_y
, &x
, &y
);
4486 HandleMouseDoubleClick(x
,y
,event
);
4490 // -----------------------------------------------------------------------
4492 void wxPropertyGrid::OnMouseMove( wxMouseEvent
&event
)
4495 if ( OnMouseCommon( event
, &x
, &y
) )
4497 HandleMouseMove(x
,y
,event
);
4502 // -----------------------------------------------------------------------
4504 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent
& WXUNUSED(event
) )
4506 // Called when mouse moves in the empty space below the properties.
4507 CustomSetCursor( wxCURSOR_ARROW
);
4510 // -----------------------------------------------------------------------
4512 void wxPropertyGrid::OnMouseUp( wxMouseEvent
&event
)
4515 if ( OnMouseCommon( event
, &x
, &y
) )
4517 HandleMouseUp(x
,y
,event
);
4522 // -----------------------------------------------------------------------
4524 void wxPropertyGrid::OnMouseEntry( wxMouseEvent
&event
)
4526 // This may get called from child control as well, so event's
4527 // mouse position cannot be relied on.
4529 if ( event
.Entering() )
4531 if ( !(m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4533 // TODO: Fix this (detect parent and only do
4534 // cursor trick if it is a manager).
4535 wxASSERT( GetParent() );
4536 GetParent()->SetCursor(wxNullCursor
);
4538 m_iFlags
|= wxPG_FL_MOUSE_INSIDE
;
4541 GetParent()->SetCursor(wxNullCursor
);
4543 else if ( event
.Leaving() )
4545 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4546 m_canvas
->SetCursor( wxNullCursor
);
4548 // Get real cursor position
4549 wxPoint pt
= ScreenToClient(::wxGetMousePosition());
4551 if ( ( pt
.x
<= 0 || pt
.y
<= 0 || pt
.x
>= m_width
|| pt
.y
>= m_height
) )
4554 if ( (m_iFlags
& wxPG_FL_MOUSE_INSIDE
) )
4556 m_iFlags
&= ~(wxPG_FL_MOUSE_INSIDE
);
4560 wxPropertyGrid::HandleMouseUp ( -1, 10000, event
);
4568 // -----------------------------------------------------------------------
4570 // Common code used by various OnMouseXXXChild methods.
4571 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
)
4573 wxWindow
* topCtrlWnd
= (wxWindow
*)event
.GetEventObject();
4574 wxASSERT( topCtrlWnd
);
4576 event
.GetPosition(&x
,&y
);
4578 int splitterX
= GetSplitterPosition();
4580 wxRect r
= topCtrlWnd
->GetRect();
4581 if ( !m_dragStatus
&&
4582 x
> (splitterX
-r
.x
+wxPG_SPLITTERX_DETECTMARGIN2
) &&
4583 y
>= 0 && y
< r
.height \
4586 if ( m_curcursor
!= wxCURSOR_ARROW
) CustomSetCursor ( wxCURSOR_ARROW
);
4591 CalcUnscrolledPosition( event
.m_x
+ r
.x
, event
.m_y
+ r
.y
, \
4598 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent
&event
)
4601 if ( OnMouseChildCommon(event
,&x
,&y
) )
4603 bool res
= HandleMouseClick(x
,y
,event
);
4604 if ( !res
) event
.Skip();
4608 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent
&event
)
4611 wxASSERT( m_wndEditor
);
4612 // These coords may not be exact (about +-2),
4613 // but that should not matter (right click is about item, not position).
4614 wxPoint pt
= m_wndEditor
->GetPosition();
4615 CalcUnscrolledPosition( event
.m_x
+ pt
.x
, event
.m_y
+ pt
.y
, &x
, &y
);
4616 wxASSERT( m_selected
);
4617 m_propHover
= m_selected
;
4618 bool res
= HandleMouseRightClick(x
,y
,event
);
4619 if ( !res
) event
.Skip();
4622 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent
&event
)
4625 if ( OnMouseChildCommon(event
,&x
,&y
) )
4627 bool res
= HandleMouseMove(x
,y
,event
);
4628 if ( !res
) event
.Skip();
4632 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent
&event
)
4635 if ( OnMouseChildCommon(event
,&x
,&y
) )
4637 bool res
= HandleMouseUp(x
,y
,event
);
4638 if ( !res
) event
.Skip();
4642 // -----------------------------------------------------------------------
4643 // wxPropertyGrid keyboard event handling
4644 // -----------------------------------------------------------------------
4646 int wxPropertyGrid::KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const
4648 // Translates wxKeyEvent to wxPG_ACTION_XXX
4650 int keycode
= event
.GetKeyCode();
4651 int modifiers
= event
.GetModifiers();
4653 wxASSERT( !(modifiers
&~(0xFFFF)) );
4655 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4657 wxPGHashMapI2I::const_iterator it
= m_actionTriggers
.find(hashMapKey
);
4659 if ( it
== m_actionTriggers
.end() )
4664 int second
= (it
->second
>>16) & 0xFFFF;
4668 return (it
->second
& 0xFFFF);
4671 void wxPropertyGrid::AddActionTrigger( int action
, int keycode
, int modifiers
)
4673 wxASSERT( !(modifiers
&~(0xFFFF)) );
4675 int hashMapKey
= (keycode
& 0xFFFF) | ((modifiers
& 0xFFFF) << 16);
4677 wxPGHashMapI2I::iterator it
= m_actionTriggers
.find(hashMapKey
);
4679 if ( it
!= m_actionTriggers
.end() )
4681 // This key combination is already used
4683 // Can add secondary?
4684 wxASSERT_MSG( !(it
->second
&~(0xFFFF)),
4685 wxT("You can only add up to two separate actions per key combination.") );
4687 action
= it
->second
| (action
<<16);
4690 m_actionTriggers
[hashMapKey
] = action
;
4693 void wxPropertyGrid::ClearActionTriggers( int action
)
4695 wxPGHashMapI2I::iterator it
;
4697 for ( it
= m_actionTriggers
.begin(); it
!= m_actionTriggers
.end(); ++it
)
4699 if ( it
->second
== action
)
4701 m_actionTriggers
.erase(it
);
4706 void wxPropertyGrid::HandleKeyEvent( wxKeyEvent
&event
, bool fromChild
)
4709 // Handles key event when editor control is not focused.
4712 wxCHECK2(!m_frozen
, return);
4714 // Travelsal between items, collapsing/expanding, etc.
4715 int keycode
= event
.GetKeyCode();
4716 bool editorFocused
= IsEditorFocused();
4718 if ( keycode
== WXK_TAB
)
4720 wxWindow
* mainControl
;
4722 if ( HasInternalFlag(wxPG_FL_IN_MANAGER
) )
4723 mainControl
= GetParent();
4727 if ( !event
.ShiftDown() )
4729 if ( !editorFocused
&& m_wndEditor
)
4731 DoSelectProperty( m_selected
, wxPG_SEL_FOCUS
);
4735 // Tab traversal workaround for platforms on which
4736 // wxWindow::Navigate() may navigate into first child
4737 // instead of next sibling. Does not work perfectly
4738 // in every scenario (for instance, when property grid
4739 // is either first or last control).
4740 #if defined(__WXGTK__)
4741 wxWindow
* sibling
= mainControl
->GetNextSibling();
4743 sibling
->SetFocusFromKbd();
4745 Navigate(wxNavigationKeyEvent::IsForward
);
4751 if ( editorFocused
)
4757 #if defined(__WXGTK__)
4758 wxWindow
* sibling
= mainControl
->GetPrevSibling();
4760 sibling
->SetFocusFromKbd();
4762 Navigate(wxNavigationKeyEvent::IsBackward
);
4770 // Ignore Alt and Control when they are down alone
4771 if ( keycode
== WXK_ALT
||
4772 keycode
== WXK_CONTROL
)
4779 int action
= KeyEventToActions(event
, &secondAction
);
4781 if ( editorFocused
&& action
== wxPG_ACTION_CANCEL_EDIT
)
4784 // Esc cancels any changes
4785 if ( IsEditorsValueModified() )
4787 EditorsValueWasNotModified();
4789 // Update the control as well
4790 m_selected
->GetEditorClass()->SetControlStringValue( m_selected
,
4792 m_selected
->GetDisplayedString() );
4795 OnValidationFailureReset(m_selected
);
4801 // Except for TAB and ESC, handle child control events in child control
4808 bool wasHandled
= false;
4813 if ( ButtonTriggerKeyTest(action
, event
) )
4816 wxPGProperty
* p
= m_selected
;
4818 // Travel and expand/collapse
4821 if ( p
->GetChildCount() &&
4822 !(p
->m_flags
& wxPG_PROP_DISABLED
)
4825 if ( action
== wxPG_ACTION_COLLAPSE_PROPERTY
|| secondAction
== wxPG_ACTION_COLLAPSE_PROPERTY
)
4827 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Collapse(p
) )
4830 else if ( action
== wxPG_ACTION_EXPAND_PROPERTY
|| secondAction
== wxPG_ACTION_EXPAND_PROPERTY
)
4832 if ( (m_windowStyle
& wxPG_HIDE_MARGIN
) || Expand(p
) )
4839 if ( action
== wxPG_ACTION_PREV_PROPERTY
|| secondAction
== wxPG_ACTION_PREV_PROPERTY
)
4843 else if ( action
== wxPG_ACTION_NEXT_PROPERTY
|| secondAction
== wxPG_ACTION_NEXT_PROPERTY
)
4849 if ( selectDir
>= -1 )
4851 p
= wxPropertyGridIterator::OneStep( m_pState
, wxPG_ITERATE_VISIBLE
, p
, selectDir
);
4853 DoSelectProperty(p
);
4859 // If nothing was selected, select the first item now
4860 // (or navigate out of tab).
4861 if ( action
!= wxPG_ACTION_CANCEL_EDIT
&& secondAction
!= wxPG_ACTION_CANCEL_EDIT
)
4863 wxPGProperty
* p
= wxPropertyGridInterface::GetFirst();
4864 if ( p
) DoSelectProperty(p
);
4873 // -----------------------------------------------------------------------
4875 void wxPropertyGrid::OnKey( wxKeyEvent
&event
)
4877 HandleKeyEvent(event
, false);
4880 // -----------------------------------------------------------------------
4882 bool wxPropertyGrid::ButtonTriggerKeyTest( int action
, wxKeyEvent
& event
)
4887 action
= KeyEventToActions(event
, &secondAction
);
4890 // Does the keycode trigger button?
4891 if ( action
== wxPG_ACTION_PRESS_BUTTON
&&
4894 wxCommandEvent
evt(wxEVT_COMMAND_BUTTON_CLICKED
, m_wndEditor2
->GetId());
4895 GetEventHandler()->AddPendingEvent(evt
);
4902 // -----------------------------------------------------------------------
4904 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent
&event
)
4906 HandleKeyEvent(event
, true);
4909 // -----------------------------------------------------------------------
4910 // wxPropertyGrid miscellaneous event handling
4911 // -----------------------------------------------------------------------
4913 void wxPropertyGrid::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
4916 // Check if the focus is in this control or one of its children
4917 wxWindow
* newFocused
= wxWindow::FindFocus();
4919 if ( newFocused
!= m_curFocused
)
4920 HandleFocusChange( newFocused
);
4923 bool wxPropertyGrid::IsEditorFocused() const
4925 wxWindow
* focus
= wxWindow::FindFocus();
4927 if ( focus
== m_wndEditor
|| focus
== m_wndEditor2
||
4928 focus
== GetEditorControl() )
4934 // Called by focus event handlers. newFocused is the window that becomes focused.
4935 void wxPropertyGrid::HandleFocusChange( wxWindow
* newFocused
)
4937 unsigned int oldFlags
= m_iFlags
;
4939 m_iFlags
&= ~(wxPG_FL_FOCUSED
);
4941 wxWindow
* parent
= newFocused
;
4943 // This must be one of nextFocus' parents.
4946 // Use m_eventObject, which is either wxPropertyGrid or
4947 // wxPropertyGridManager, as appropriate.
4948 if ( parent
== m_eventObject
)
4950 m_iFlags
|= wxPG_FL_FOCUSED
;
4953 parent
= parent
->GetParent();
4956 m_curFocused
= newFocused
;
4958 if ( (m_iFlags
& wxPG_FL_FOCUSED
) !=
4959 (oldFlags
& wxPG_FL_FOCUSED
) )
4961 if ( !(m_iFlags
& wxPG_FL_FOCUSED
) )
4963 // Need to store changed value
4964 CommitChangesFromEditor();
4970 // Preliminary code for tab-order respecting
4971 // tab-traversal (but should be moved to
4974 wxWindow* prevFocus = event.GetWindow();
4975 wxWindow* useThis = this;
4976 if ( m_iFlags & wxPG_FL_IN_MANAGER )
4977 useThis = GetParent();
4980 prevFocus->GetParent() == useThis->GetParent() )
4982 wxList& children = useThis->GetParent()->GetChildren();
4984 wxNode* node = children.Find(prevFocus);
4986 if ( node->GetNext() &&
4987 useThis == node->GetNext()->GetData() )
4988 DoSelectProperty(GetFirst());
4989 else if ( node->GetPrevious () &&
4990 useThis == node->GetPrevious()->GetData() )
4991 DoSelectProperty(GetLastProperty());
4998 if ( m_selected
&& (m_iFlags
& wxPG_FL_INITIALIZED
) )
4999 DrawItem( m_selected
);
5003 void wxPropertyGrid::OnFocusEvent( wxFocusEvent
& event
)
5005 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
5006 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5007 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5008 //else if ( event.GetWindow() )
5010 HandleFocusChange(event
.GetWindow());
5015 // -----------------------------------------------------------------------
5017 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent
& event
)
5019 HandleFocusChange((wxWindow
*)event
.GetEventObject());
5022 // event.Skip() being commented out is aworkaround for bug reported
5023 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5027 // -----------------------------------------------------------------------
5029 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent
&event
)
5031 m_iFlags
|= wxPG_FL_SCROLLED
;
5036 // -----------------------------------------------------------------------
5038 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent
& WXUNUSED(event
) )
5040 if ( m_iFlags
& wxPG_FL_MOUSE_CAPTURED
)
5042 m_iFlags
&= ~(wxPG_FL_MOUSE_CAPTURED
);
5046 // -----------------------------------------------------------------------
5047 // Property editor related functions
5048 // -----------------------------------------------------------------------
5050 // noDefCheck = true prevents infinite recursion.
5051 wxPGEditor
* wxPropertyGrid::RegisterEditorClass( wxPGEditor
* editorClass
,
5054 wxASSERT( editorClass
);
5056 if ( !noDefCheck
&& wxPGGlobalVars
->m_mapEditorClasses
.empty() )
5057 RegisterDefaultEditors();
5059 wxString name
= editorClass
->GetName();
5061 // Existing editor under this name?
5062 wxPGHashMapS2P::iterator vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5064 if ( vt_it
!= wxPGGlobalVars
->m_mapEditorClasses
.end() )
5066 // If this name was already used, try class name.
5067 name
= editorClass
->GetClassInfo()->GetClassName();
5068 vt_it
= wxPGGlobalVars
->m_mapEditorClasses
.find(name
);
5071 wxCHECK_MSG( vt_it
== wxPGGlobalVars
->m_mapEditorClasses
.end(),
5072 (wxPGEditor
*) vt_it
->second
,
5073 "Editor with given name was already registered" );
5075 wxPGGlobalVars
->m_mapEditorClasses
[name
] = (void*)editorClass
;
5080 // Use this in RegisterDefaultEditors.
5081 #define wxPGRegisterDefaultEditorClass(EDITOR) \
5082 if ( wxPGEditor_##EDITOR == (wxPGEditor*) NULL ) \
5084 wxPGEditor_##EDITOR = wxPropertyGrid::RegisterEditorClass( \
5085 new wxPG##EDITOR##Editor, true ); \
5088 // Registers all default editor classes
5089 void wxPropertyGrid::RegisterDefaultEditors()
5091 wxPGRegisterDefaultEditorClass( TextCtrl
);
5092 wxPGRegisterDefaultEditorClass( Choice
);
5093 wxPGRegisterDefaultEditorClass( ComboBox
);
5094 wxPGRegisterDefaultEditorClass( TextCtrlAndButton
);
5095 #if wxPG_INCLUDE_CHECKBOX
5096 wxPGRegisterDefaultEditorClass( CheckBox
);
5098 wxPGRegisterDefaultEditorClass( ChoiceAndButton
);
5100 // Register SpinCtrl etc. editors before use
5101 RegisterAdditionalEditors();
5104 // -----------------------------------------------------------------------
5105 // wxPGStringTokenizer
5106 // Needed to handle C-style string lists (e.g. "str1" "str2")
5107 // -----------------------------------------------------------------------
5109 wxPGStringTokenizer::wxPGStringTokenizer( const wxString
& str
, wxChar delimeter
)
5110 : m_str(&str
), m_curPos(str
.begin()), m_delimeter(delimeter
)
5114 wxPGStringTokenizer::~wxPGStringTokenizer()
5118 bool wxPGStringTokenizer::HasMoreTokens()
5120 const wxString
& str
= *m_str
;
5122 wxString::const_iterator i
= m_curPos
;
5124 wxUniChar delim
= m_delimeter
;
5126 wxUniChar prev_a
= wxT('\0');
5128 bool inToken
= false;
5130 while ( i
!= str
.end() )
5139 m_readyToken
.clear();
5144 if ( prev_a
!= wxT('\\') )
5148 if ( a
!= wxT('\\') )
5168 m_curPos
= str
.end();
5176 wxString
wxPGStringTokenizer::GetNextToken()
5178 return m_readyToken
;
5181 // -----------------------------------------------------------------------
5183 // -----------------------------------------------------------------------
5185 wxPGChoiceEntry::wxPGChoiceEntry()
5186 : wxPGCell(), m_value(wxPG_INVALID_VALUE
)
5190 // -----------------------------------------------------------------------
5192 // -----------------------------------------------------------------------
5194 wxPGChoicesData::wxPGChoicesData()
5199 wxPGChoicesData::~wxPGChoicesData()
5204 void wxPGChoicesData::Clear()
5209 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData
* data
)
5211 wxASSERT( m_items
.size() == 0 );
5213 m_items
= data
->m_items
;
5216 wxPGChoiceEntry
& wxPGChoicesData::Insert( int index
,
5217 const wxPGChoiceEntry
& item
)
5219 wxVector
<wxPGChoiceEntry
>::iterator it
;
5223 index
= (int) m_items
.size();
5227 it
= m_items
.begin() + index
;
5230 m_items
.insert(it
, item
);
5232 wxPGChoiceEntry
& ownEntry
= m_items
[index
];
5234 // Need to fix value?
5235 if ( ownEntry
.GetValue() == wxPG_INVALID_VALUE
)
5236 ownEntry
.SetValue(index
);
5241 // -----------------------------------------------------------------------
5243 // -----------------------------------------------------------------------
5245 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
5249 wxPGChoiceEntry
entry(label
, value
);
5250 return m_data
->Insert( -1, entry
);
5253 // -----------------------------------------------------------------------
5255 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
5259 wxPGChoiceEntry
entry(label
, value
);
5260 entry
.SetBitmap(bitmap
);
5261 return m_data
->Insert( -1, entry
);
5264 // -----------------------------------------------------------------------
5266 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
5269 return m_data
->Insert( index
, entry
);
5272 // -----------------------------------------------------------------------
5274 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
5278 wxPGChoiceEntry
entry(label
, value
);
5279 return m_data
->Insert( index
, entry
);
5282 // -----------------------------------------------------------------------
5284 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
5290 while ( index
< GetCount() )
5292 int cmpRes
= GetLabel(index
).Cmp(label
);
5298 wxPGChoiceEntry
entry(label
, value
);
5299 return m_data
->Insert( index
, entry
);
5302 // -----------------------------------------------------------------------
5304 void wxPGChoices::Add( const wxChar
** labels
, const ValArrItem
* values
)
5308 unsigned int itemcount
= 0;
5309 const wxChar
** p
= &labels
[0];
5310 while ( *p
) { p
++; itemcount
++; }
5313 for ( i
= 0; i
< itemcount
; i
++ )
5318 wxPGChoiceEntry
entry(labels
[i
], value
);
5319 m_data
->Insert( i
, entry
);
5323 // -----------------------------------------------------------------------
5325 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
5330 unsigned int itemcount
= arr
.size();
5332 for ( i
= 0; i
< itemcount
; i
++ )
5335 if ( &arrint
&& arrint
.size() )
5337 wxPGChoiceEntry
entry(arr
[i
], value
);
5338 m_data
->Insert( i
, entry
);
5342 // -----------------------------------------------------------------------
5344 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
5346 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
5347 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
5348 m_data
->m_items
.begin()+nIndex
+count
);
5351 // -----------------------------------------------------------------------
5353 int wxPGChoices::Index( const wxString
& str
) const
5358 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5360 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
5361 if ( entry
.HasText() && entry
.GetText() == str
)
5368 // -----------------------------------------------------------------------
5370 int wxPGChoices::Index( int val
) const
5375 for ( i
=0; i
< m_data
->GetCount(); i
++ )
5377 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
5378 if ( entry
.GetValue() == val
)
5385 // -----------------------------------------------------------------------
5387 wxArrayString
wxPGChoices::GetLabels() const
5392 if ( this && IsOk() )
5393 for ( i
=0; i
<GetCount(); i
++ )
5394 arr
.push_back(GetLabel(i
));
5399 // -----------------------------------------------------------------------
5401 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
5408 for ( i
=0; i
< strings
.size(); i
++ )
5410 int index
= Index(strings
[i
]);
5412 arr
.Add(GetValue(index
));
5414 arr
.Add(wxPG_INVALID_VALUE
);
5421 // -----------------------------------------------------------------------
5423 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
5424 wxArrayString
* unmatched
) const
5431 for ( i
=0; i
< strings
.size(); i
++ )
5433 const wxString
& str
= strings
[i
];
5434 int index
= Index(str
);
5437 else if ( unmatched
)
5438 unmatched
->Add(str
);
5445 // -----------------------------------------------------------------------
5447 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
5451 if ( data
!= wxPGChoicesEmptyData
)
5458 // -----------------------------------------------------------------------
5460 void wxPGChoices::Init()
5462 m_data
= wxPGChoicesEmptyData
;
5465 // -----------------------------------------------------------------------
5467 void wxPGChoices::Free()
5469 if ( m_data
!= wxPGChoicesEmptyData
)
5472 m_data
= wxPGChoicesEmptyData
;
5476 // -----------------------------------------------------------------------
5477 // wxPropertyGridEvent
5478 // -----------------------------------------------------------------------
5480 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent
, wxCommandEvent
)
5483 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED
)
5484 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING
)
5485 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED
)
5486 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED
)
5487 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK
)
5488 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED
)
5489 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED
)
5490 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED
)
5491 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK
)
5494 // -----------------------------------------------------------------------
5496 void wxPropertyGridEvent::Init()
5498 m_validationInfo
= NULL
;
5500 m_wasVetoed
= false;
5503 // -----------------------------------------------------------------------
5505 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType
, int id
)
5506 : wxCommandEvent(commandType
,id
)
5512 // -----------------------------------------------------------------------
5514 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent
& event
)
5515 : wxCommandEvent(event
)
5517 m_eventType
= event
.GetEventType();
5518 m_eventObject
= event
.m_eventObject
;
5520 m_property
= event
.m_property
;
5521 m_validationInfo
= event
.m_validationInfo
;
5522 m_canVeto
= event
.m_canVeto
;
5523 m_wasVetoed
= event
.m_wasVetoed
;
5526 // -----------------------------------------------------------------------
5528 wxPropertyGridEvent::~wxPropertyGridEvent()
5532 // -----------------------------------------------------------------------
5534 wxEvent
* wxPropertyGridEvent::Clone() const
5536 return new wxPropertyGridEvent( *this );
5539 // -----------------------------------------------------------------------
5540 // wxPropertyGridPopulator
5541 // -----------------------------------------------------------------------
5543 wxPropertyGridPopulator::wxPropertyGridPopulator()
5547 wxPGGlobalVars
->m_offline
++;
5550 // -----------------------------------------------------------------------
5552 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState
* state
)
5555 m_propHierarchy
.clear();
5558 // -----------------------------------------------------------------------
5560 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid
* pg
)
5566 // -----------------------------------------------------------------------
5568 wxPropertyGridPopulator::~wxPropertyGridPopulator()
5571 // Free unused sets of choices
5572 wxPGHashMapS2P::iterator it
;
5574 for( it
= m_dictIdChoices
.begin(); it
!= m_dictIdChoices
.end(); ++it
)
5576 wxPGChoicesData
* data
= (wxPGChoicesData
*) it
->second
;
5583 m_pg
->GetPanel()->Refresh();
5585 wxPGGlobalVars
->m_offline
--;
5588 // -----------------------------------------------------------------------
5590 wxPGProperty
* wxPropertyGridPopulator::Add( const wxString
& propClass
,
5591 const wxString
& propLabel
,
5592 const wxString
& propName
,
5593 const wxString
* propValue
,
5594 wxPGChoices
* pChoices
)
5596 wxClassInfo
* classInfo
= wxClassInfo::FindClass(propClass
);
5597 wxPGProperty
* parent
= GetCurParent();
5599 if ( parent
->HasFlag(wxPG_PROP_AGGREGATE
) )
5601 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent
->GetName().c_str()));
5605 if ( !classInfo
|| !classInfo
->IsKindOf(CLASSINFO(wxPGProperty
)) )
5607 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass
.c_str()));
5611 wxPGProperty
* property
= (wxPGProperty
*) classInfo
->CreateObject();
5613 property
->SetLabel(propLabel
);
5614 property
->DoSetName(propName
);
5616 if ( pChoices
&& pChoices
->IsOk() )
5617 property
->SetChoices(*pChoices
);
5619 m_state
->DoInsert(parent
, -1, property
);
5622 property
->SetValueFromString( *propValue
, wxPG_FULL_VALUE
|
5623 wxPG_PROGRAMMATIC_VALUE
);
5628 // -----------------------------------------------------------------------
5630 void wxPropertyGridPopulator::AddChildren( wxPGProperty
* property
)
5632 m_propHierarchy
.push_back(property
);
5633 DoScanForChildren();
5634 m_propHierarchy
.pop_back();
5637 // -----------------------------------------------------------------------
5639 wxPGChoices
wxPropertyGridPopulator::ParseChoices( const wxString
& choicesString
,
5640 const wxString
& idString
)
5642 wxPGChoices choices
;
5645 if ( choicesString
[0] == wxT('@') )
5647 wxString ids
= choicesString
.substr(1);
5648 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(ids
);
5649 if ( it
== m_dictIdChoices
.end() )
5650 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids
.c_str()));
5652 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5657 if ( idString
.length() )
5659 wxPGHashMapS2P::iterator it
= m_dictIdChoices
.find(idString
);
5660 if ( it
!= m_dictIdChoices
.end() )
5662 choices
.AssignData((wxPGChoicesData
*)it
->second
);
5669 // Parse choices string
5670 wxString::const_iterator it
= choicesString
.begin();
5674 bool labelValid
= false;
5676 for ( ; it
!= choicesString
.end(); ++it
)
5682 if ( c
== wxT('"') )
5687 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
5688 choices
.Add(label
, l
);
5691 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
5696 else if ( c
== wxT('=') )
5703 else if ( state
== 2 && (wxIsalnum(c
) || c
== wxT('x')) )
5710 if ( c
== wxT('"') )
5723 if ( !value
.ToLong(&l
, 0) ) l
= wxPG_INVALID_VALUE
;
5724 choices
.Add(label
, l
);
5727 if ( !choices
.IsOk() )
5729 choices
.EnsureData();
5733 if ( idString
.length() )
5734 m_dictIdChoices
[idString
] = choices
.GetData();
5741 // -----------------------------------------------------------------------
5743 bool wxPropertyGridPopulator::ToLongPCT( const wxString
& s
, long* pval
, long max
)
5745 if ( s
.Last() == wxT('%') )
5747 wxString s2
= s
.substr(0,s
.length()-1);
5749 if ( s2
.ToLong(&val
, 10) )
5751 *pval
= (val
*max
)/100;
5757 return s
.ToLong(pval
, 10);
5760 // -----------------------------------------------------------------------
5762 bool wxPropertyGridPopulator::AddAttribute( const wxString
& name
,
5763 const wxString
& type
,
5764 const wxString
& value
)
5766 int l
= m_propHierarchy
.size();
5770 wxPGProperty
* p
= m_propHierarchy
[l
-1];
5771 wxString valuel
= value
.Lower();
5774 if ( type
.length() == 0 )
5779 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
5781 else if ( valuel
== wxT("false") || valuel
== wxT("no") || valuel
== wxT("0") )
5783 else if ( value
.ToLong(&v
, 0) )
5790 if ( type
== wxT("string") )
5794 else if ( type
== wxT("int") )
5797 value
.ToLong(&v
, 0);
5800 else if ( type
== wxT("bool") )
5802 if ( valuel
== wxT("true") || valuel
== wxT("yes") || valuel
== wxT("1") )
5809 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type
.c_str()));
5814 p
->SetAttribute( name
, variant
);
5819 // -----------------------------------------------------------------------
5821 void wxPropertyGridPopulator::ProcessError( const wxString
& msg
)
5823 wxLogError(_("Error in resource: %s"),msg
.c_str());
5826 // -----------------------------------------------------------------------
5828 #endif // wxUSE_PROPGRID