1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/propgrid/editors.cpp
3 // Purpose: wxPropertyGrid editors
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/dcclient.h"
32 #include "wx/dcmemory.h"
33 #include "wx/button.h"
36 #include "wx/cursor.h"
37 #include "wx/dialog.h"
38 #include "wx/settings.h"
39 #include "wx/msgdlg.h"
40 #include "wx/choice.h"
41 #include "wx/stattext.h"
42 #include "wx/scrolwin.h"
43 #include "wx/dirdlg.h"
45 #include "wx/textdlg.h"
46 #include "wx/filedlg.h"
47 #include "wx/statusbr.h"
54 #include "wx/dcbuffer.h"
55 #include "wx/bmpbuttn.h"
58 // This define is necessary to prevent macro clearing
59 #define __wxPG_SOURCE_FILE__
61 #include "wx/propgrid/propgrid.h"
62 #include "wx/propgrid/editors.h"
63 #include "wx/propgrid/props.h"
65 #if wxPG_USE_RENDERER_NATIVE
66 #include "wx/renderer.h"
69 // How many pixels between textctrl and button
71 #define wxPG_TEXTCTRL_AND_BUTTON_SPACING 4
73 #define wxPG_TEXTCTRL_AND_BUTTON_SPACING 2
76 #define wxPG_BUTTON_SIZEDEC 0
78 #include "wx/odcombo.h"
80 // -----------------------------------------------------------------------
82 #if defined(__WXMSW__)
84 #define wxPG_NAT_BUTTON_BORDER_ANY 1
85 #define wxPG_NAT_BUTTON_BORDER_X 1
86 #define wxPG_NAT_BUTTON_BORDER_Y 1
88 #define wxPG_CHECKMARK_XADJ 1
89 #define wxPG_CHECKMARK_YADJ (-1)
90 #define wxPG_CHECKMARK_WADJ 0
91 #define wxPG_CHECKMARK_HADJ 0
92 #define wxPG_CHECKMARK_DEFLATE 0
94 #define wxPG_TEXTCTRLYADJUST (m_spacingy+0)
96 #elif defined(__WXGTK__)
98 #define wxPG_CHECKMARK_XADJ 0
99 #define wxPG_CHECKMARK_YADJ 0
100 #define wxPG_CHECKMARK_WADJ (-1)
101 #define wxPG_CHECKMARK_HADJ (-1)
102 #define wxPG_CHECKMARK_DEFLATE 3
104 #define wxPG_NAT_BUTTON_BORDER_ANY 1
105 #define wxPG_NAT_BUTTON_BORDER_X 1
106 #define wxPG_NAT_BUTTON_BORDER_Y 1
108 #define wxPG_TEXTCTRLYADJUST 0
110 #elif defined(__WXMAC__)
112 #define wxPG_CHECKMARK_XADJ 0
113 #define wxPG_CHECKMARK_YADJ 0
114 #define wxPG_CHECKMARK_WADJ 0
115 #define wxPG_CHECKMARK_HADJ 0
116 #define wxPG_CHECKMARK_DEFLATE 0
118 #define wxPG_NAT_BUTTON_BORDER_ANY 0
119 #define wxPG_NAT_BUTTON_BORDER_X 0
120 #define wxPG_NAT_BUTTON_BORDER_Y 0
122 #define wxPG_TEXTCTRLYADJUST 0
126 #define wxPG_CHECKMARK_XADJ 0
127 #define wxPG_CHECKMARK_YADJ 0
128 #define wxPG_CHECKMARK_WADJ 0
129 #define wxPG_CHECKMARK_HADJ 0
130 #define wxPG_CHECKMARK_DEFLATE 0
132 #define wxPG_NAT_BUTTON_BORDER_ANY 0
133 #define wxPG_NAT_BUTTON_BORDER_X 0
134 #define wxPG_NAT_BUTTON_BORDER_Y 0
136 #define wxPG_TEXTCTRLYADJUST 0
142 #define wxPG_CHOICEXADJUST -3 // required because wxComboCtrl reserves 3pixels for wxTextCtrl's focus ring
143 #define wxPG_CHOICEYADJUST -3
145 #define wxPG_CHOICEXADJUST 0
146 #define wxPG_CHOICEYADJUST 0
149 // Number added to image width for SetCustomPaintWidth
150 #define ODCB_CUST_PAINT_MARGIN 6
152 // Milliseconds to wait for two mouse-ups after focus inorder
153 // to trigger a double-click.
154 #define DOUBLE_CLICK_CONVERSION_TRESHOLD 500
156 // -----------------------------------------------------------------------
158 // -----------------------------------------------------------------------
160 IMPLEMENT_ABSTRACT_CLASS(wxPGEditor
, wxObject
)
163 wxPGEditor::~wxPGEditor()
167 wxString
wxPGEditor::GetName() const
169 return GetClassInfo()->GetClassName();
172 void wxPGEditor::DrawValue( wxDC
& dc
, const wxRect
& rect
, wxPGProperty
* property
, const wxString
& text
) const
174 if ( !property
->IsValueUnspecified() )
175 dc
.DrawText( text
, rect
.x
+wxPG_XBEFORETEXT
, rect
.y
);
178 bool wxPGEditor::GetValueFromControl( wxVariant
&, wxPGProperty
*, wxWindow
* ) const
183 void wxPGEditor::SetControlStringValue( wxPGProperty
* WXUNUSED(property
), wxWindow
*, const wxString
& ) const
188 void wxPGEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
*, int ) const
193 int wxPGEditor::InsertItem( wxWindow
*, const wxString
&, int ) const
199 void wxPGEditor::DeleteItem( wxWindow
*, int ) const
205 void wxPGEditor::OnFocus( wxPGProperty
*, wxWindow
* ) const
210 bool wxPGEditor::CanContainCustomImage() const
215 // -----------------------------------------------------------------------
216 // wxPGTextCtrlEditor
217 // -----------------------------------------------------------------------
219 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(TextCtrl
,wxPGTextCtrlEditor
,wxPGEditor
)
222 wxPGWindowList
wxPGTextCtrlEditor::CreateControls( wxPropertyGrid
* propGrid
,
223 wxPGProperty
* property
,
225 const wxSize
& sz
) const
230 // If has children, and limited editing is specified, then don't create.
231 if ( (property
->GetFlags() & wxPG_PROP_NOEDITOR
) &&
232 property
->GetChildCount() )
235 if ( !property
->IsValueUnspecified() )
236 text
= property
->GetValueAsString(property
->HasFlag(wxPG_PROP_READONLY
) ?
237 0 : wxPG_EDITABLE_VALUE
);
240 if ( (property
->GetFlags() & wxPG_PROP_PASSWORD
) &&
241 property
->IsKindOf(CLASSINFO(wxStringProperty
)) )
242 flags
|= wxTE_PASSWORD
;
244 wxWindow
* wnd
= propGrid
->GenerateEditorTextCtrl(pos
,sz
,text
,NULL
,flags
,
245 property
->GetMaxLength());
251 void wxPGTextCtrlEditor::DrawValue( wxDC
& dc
, wxPGProperty
* property
, const wxRect
& rect
) const
253 if ( !property
->IsValueUnspecified() )
255 wxString drawStr
= property
->GetDisplayedString();
257 // Code below should no longer be needed, as the obfuscation
258 // is now done in GetValueAsString.
259 /*if ( (property->GetFlags() & wxPG_PROP_PASSWORD) &&
260 property->IsKindOf(WX_PG_CLASSINFO(wxStringProperty)) )
262 size_t a = drawStr.length();
264 drawStr.Append(wxS('*'),a);
266 dc
.DrawText( drawStr
, rect
.x
+wxPG_XBEFORETEXT
, rect
.y
);
271 void wxPGTextCtrlEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
273 wxTextCtrl
* tc
= wxDynamicCast(ctrl
, wxTextCtrl
);
278 if ( tc
->HasFlag(wxTE_PASSWORD
) )
279 s
= property
->GetValueAsString(wxPG_FULL_VALUE
);
281 s
= property
->GetDisplayedString();
286 // Fix indentation, just in case (change in font boldness is one good
291 // Provided so that, for example, ComboBox editor can use the same code
292 // (multiple inheritance would get way too messy).
293 bool wxPGTextCtrlEditor::OnTextCtrlEvent( wxPropertyGrid
* propGrid
,
294 wxPGProperty
* WXUNUSED(property
),
301 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
303 if ( propGrid
->IsEditorsValueModified() )
308 else if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
311 // Pass this event outside wxPropertyGrid so that,
312 // if necessary, program can tell when user is editing
314 // FIXME: Is it safe to change event id in the middle of event
315 // processing (seems to work, but...)?
317 event
.SetId(propGrid
->GetId());
319 propGrid
->EditorsValueWasModified();
325 bool wxPGTextCtrlEditor::OnEvent( wxPropertyGrid
* propGrid
,
326 wxPGProperty
* property
,
328 wxEvent
& event
) const
330 return wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid
,property
,ctrl
,event
);
334 bool wxPGTextCtrlEditor::GetTextCtrlValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
)
336 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
337 wxString textVal
= tc
->GetValue();
339 if ( property
->UsesAutoUnspecified() && !textVal
.length() )
345 bool res
= property
->StringToValue(variant
, textVal
, wxPG_EDITABLE_VALUE
);
347 // Changing unspecified always causes event (returning
348 // true here should be enough to trigger it).
349 // TODO: Move to propgrid.cpp
350 if ( !res
&& variant
.IsNull() )
357 bool wxPGTextCtrlEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
359 return wxPGTextCtrlEditor::GetTextCtrlValueFromControl(variant
, property
, ctrl
);
363 void wxPGTextCtrlEditor::SetValueToUnspecified( wxPGProperty
* property
, wxWindow
* ctrl
) const
365 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
367 wxPropertyGrid
* pg
= property
->GetGrid();
368 wxASSERT(pg
); // Really, property grid should exist if editor does
370 tc
->SetValue(wxEmptyString
);
374 void wxPGTextCtrlEditor::SetControlStringValue( wxPGProperty
* property
, wxWindow
* ctrl
, const wxString
& txt
) const
376 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
378 wxPropertyGrid
* pg
= property
->GetGrid();
379 wxASSERT(pg
); // Really, property grid should exist if editor does
385 void wxPGTextCtrlEditor::OnFocus( wxPGProperty
*, wxWindow
* wnd
) const
387 wxTextCtrl
* tc
= wxStaticCast(wnd
, wxTextCtrl
);
389 tc
->SetSelection(-1,-1);
393 wxPGTextCtrlEditor::~wxPGTextCtrlEditor() { }
396 // -----------------------------------------------------------------------
398 // -----------------------------------------------------------------------
401 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(Choice
,wxPGChoiceEditor
,wxPGEditor
)
404 // This is a special enhanced double-click processor class.
405 // In essence, it allows for double-clicks for which the
406 // first click "created" the control.
407 class wxPGDoubleClickProcessor
: public wxEvtHandler
411 wxPGDoubleClickProcessor( wxOwnerDrawnComboBox
* combo
, wxPGProperty
* property
)
414 m_timeLastMouseUp
= 0;
416 m_property
= property
;
417 m_downReceived
= false;
422 void OnMouseEvent( wxMouseEvent
& event
)
424 wxLongLong t
= ::wxGetLocalTimeMillis();
425 int evtType
= event
.GetEventType();
427 if ( m_property
->HasFlag(wxPG_PROP_USE_DCC
) &&
428 m_property
->IsKindOf(CLASSINFO(wxBoolProperty
)) &&
429 !m_combo
->IsPopupShown() )
431 // Just check that it is in the text area
432 wxPoint pt
= event
.GetPosition();
433 if ( m_combo
->GetTextRect().Contains(pt
) )
435 if ( evtType
== wxEVT_LEFT_DOWN
)
437 // Set value to avoid up-events without corresponding downs
438 m_downReceived
= true;
440 else if ( evtType
== wxEVT_LEFT_DCLICK
)
442 // We'll make our own double-clicks
443 event
.SetEventType(0);
446 else if ( evtType
== wxEVT_LEFT_UP
)
448 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
450 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
452 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
454 event
.SetEventType(wxEVT_LEFT_DCLICK
);
455 m_timeLastMouseUp
= 1;
459 m_timeLastMouseUp
= t
;
469 void OnSetFocus( wxFocusEvent
& event
)
471 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
476 wxLongLong m_timeLastMouseUp
;
477 wxOwnerDrawnComboBox
* m_combo
;
478 wxPGProperty
* m_property
; // Selected property
481 DECLARE_EVENT_TABLE()
484 BEGIN_EVENT_TABLE(wxPGDoubleClickProcessor
, wxEvtHandler
)
485 EVT_MOUSE_EVENTS(wxPGDoubleClickProcessor::OnMouseEvent
)
486 EVT_SET_FOCUS(wxPGDoubleClickProcessor::OnSetFocus
)
491 class wxPGComboBox
: public wxOwnerDrawnComboBox
496 : wxOwnerDrawnComboBox()
498 m_dclickProcessor
= NULL
;
499 m_sizeEventCalled
= false;
504 if ( m_dclickProcessor
)
506 RemoveEventHandler(m_dclickProcessor
);
507 delete m_dclickProcessor
;
511 bool Create(wxWindow
*parent
,
513 const wxString
& value
,
516 const wxArrayString
& choices
,
518 const wxValidator
& validator
= wxDefaultValidator
,
519 const wxString
& name
= wxS("wxOwnerDrawnComboBox"))
521 if ( !wxOwnerDrawnComboBox::Create( parent
,
532 m_dclickProcessor
= new
533 wxPGDoubleClickProcessor( this, GetGrid()->GetSelection() );
535 PushEventHandler(m_dclickProcessor
);
540 virtual void OnDrawItem( wxDC
& dc
,
545 wxPropertyGrid
* pg
= GetGrid();
546 pg
->OnComboItemPaint( this, item
, &dc
, (wxRect
&)rect
, flags
);
549 virtual wxCoord
OnMeasureItem( size_t item
) const
551 wxPropertyGrid
* pg
= GetGrid();
555 pg
->OnComboItemPaint( this, item
, NULL
, rect
, 0 );
559 wxPropertyGrid
* GetGrid() const
561 wxPropertyGrid
* pg
= wxDynamicCast(GetParent()->GetParent(),
567 virtual wxCoord
OnMeasureItemWidth( size_t item
) const
569 wxPropertyGrid
* pg
= GetGrid();
573 pg
->OnComboItemPaint( this, item
, NULL
, rect
, 0 );
577 virtual void PositionTextCtrl( int textCtrlXAdjust
,
578 int WXUNUSED(textCtrlYAdjust
) )
580 wxPropertyGrid
* pg
= GetGrid();
581 #ifdef wxPG_TEXTCTRLXADJUST
582 textCtrlXAdjust
= wxPG_TEXTCTRLXADJUST
-
583 (wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1) - 1,
585 wxOwnerDrawnComboBox::PositionTextCtrl(
587 pg
->GetSpacingY() + 2
592 wxPGDoubleClickProcessor
* m_dclickProcessor
;
593 bool m_sizeEventCalled
;
597 void wxPropertyGrid::OnComboItemPaint( const wxPGComboBox
* pCb
,
604 wxASSERT( IsKindOf(CLASSINFO(wxPropertyGrid
)) );
606 wxPGProperty
* p
= GetSelection();
609 const wxPGChoices
& choices
= p
->GetChoices();
610 const wxPGCommonValue
* comVal
= NULL
;
611 int comVals
= p
->GetDisplayedCommonValueCount();
612 int comValIndex
= -1;
615 if ( choices
.IsOk() )
616 choiceCount
= choices
.GetCount();
618 if ( item
>= choiceCount
&& comVals
> 0 )
620 comValIndex
= item
- choiceCount
;
621 comVal
= GetCommonValue(comValIndex
);
622 if ( !p
->IsValueUnspecified() )
623 text
= comVal
->GetLabel();
627 if ( !(flags
& wxODCB_PAINTING_CONTROL
) )
629 text
= pCb
->GetString(item
);
633 if ( !p
->IsValueUnspecified() )
634 text
= p
->GetValueAsString(0);
643 const wxBitmap
* itemBitmap
= NULL
;
645 if ( item
>= 0 && choices
.IsOk() && choices
.Item(item
).GetBitmap().Ok() && comValIndex
== -1 )
646 itemBitmap
= &choices
.Item(item
).GetBitmap();
649 // Decide what custom image size to use
652 cis
.x
= itemBitmap
->GetWidth();
653 cis
.y
= itemBitmap
->GetHeight();
657 cis
= GetImageSize(p
, item
);
662 // Default measure behaviour (no flexible, custom paint image only)
663 if ( rect
.width
< 0 )
666 pCb
->GetTextExtent(text
, &x
, &y
, 0, 0);
667 rect
.width
= cis
.x
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
+ 9 + x
;
670 rect
.height
= cis
.y
+ 2;
674 wxPGPaintData paintdata
;
675 paintdata
.m_parent
= NULL
;
676 paintdata
.m_choiceItem
= item
;
678 // This is by the current (1.0.0b) spec - if painting control, item is -1
679 if ( (flags
& wxODCB_PAINTING_CONTROL
) )
680 paintdata
.m_choiceItem
= -1;
683 pDc
->SetBrush(*wxWHITE_BRUSH
);
691 wxPoint
pt(rect
.x
+ wxPG_CONTROL_MARGIN
- wxPG_CHOICEXADJUST
- 1,
694 int renderFlags
= wxPGCellRenderer::DontUseCellColours
;
696 if ( flags
& wxODCB_PAINTING_CONTROL
)
697 renderFlags
|= wxPGCellRenderer::Control
;
699 renderFlags
|= wxPGCellRenderer::ChoicePopup
;
701 if ( flags
& wxODCB_PAINTING_SELECTED
)
702 renderFlags
|= wxPGCellRenderer::Selected
;
704 if ( cis
.x
> 0 && (p
->HasFlag(wxPG_PROP_CUSTOMIMAGE
) || !(flags
& wxODCB_PAINTING_CONTROL
)) &&
705 ( !p
->m_valueBitmap
|| item
== pCb
->GetSelection() ) &&
706 ( item
>= 0 || (flags
& wxODCB_PAINTING_CONTROL
) ) &&
710 pt
.x
+= wxCC_CUSTOM_IMAGE_MARGIN1
;
711 wxRect
r(pt
.x
,pt
.y
,cis
.x
,cis
.y
);
713 if ( flags
& wxODCB_PAINTING_CONTROL
)
716 r
.height
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
719 paintdata
.m_drawnWidth
= r
.width
;
721 dc
.SetPen(m_colPropFore
);
722 if ( comValIndex
>= 0 )
724 const wxPGCommonValue
* cv
= GetCommonValue(comValIndex
);
725 wxPGCellRenderer
* renderer
= cv
->GetRenderer();
726 r
.width
= rect
.width
;
727 renderer
->Render( dc
, r
, this, p
, m_selColumn
, comValIndex
, renderFlags
);
730 else if ( item
>= 0 )
732 p
->OnCustomPaint( dc
, r
, paintdata
);
736 dc
.DrawRectangle( r
);
739 pt
.x
+= paintdata
.m_drawnWidth
+ wxCC_CUSTOM_IMAGE_MARGIN2
- 1;
743 // TODO: This aligns text so that it seems to be horizontally
744 // on the same line as property values. Not really
745 // sure if its needed, but seems to not cause any harm.
748 if ( item
< 0 && (flags
& wxODCB_PAINTING_CONTROL
) )
749 item
= pCb
->GetSelection();
751 if ( choices
.IsOk() && item
>= 0 && comValIndex
< 0 )
753 const wxPGChoiceEntry
& cell
= choices
.Item(item
);
754 wxPGCellRenderer
* renderer
= wxPGGlobalVars
->m_defaultRenderer
;
755 int imageOffset
= renderer
->PreDrawCell( dc
, rect
, cell
, renderFlags
);
757 imageOffset
+= wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
766 pt
.y
+= (rect
.height
-m_fontHeight
)/2 - 1;
770 dc
.DrawText( text
, pt
.x
+ wxPG_XBEFORETEXT
, pt
.y
);
778 p
->OnCustomPaint( dc
, rect
, paintdata
);
779 rect
.height
= paintdata
.m_drawnHeight
+ 2;
780 rect
.width
= cis
.x
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
+ 9;
784 bool wxPGChoiceEditor_SetCustomPaintWidth( wxPropertyGrid
* propGrid
, wxPGComboBox
* cb
, int cmnVal
)
786 wxPGProperty
* property
= propGrid
->GetSelectedProperty();
787 wxASSERT( property
);
794 // Yes, a common value is being selected
795 property
->SetCommonValue( cmnVal
);
796 imageSize
= propGrid
->GetCommonValue(cmnVal
)->
797 GetRenderer()->GetImageSize(property
, 1, cmnVal
);
802 imageSize
= propGrid
->GetImageSize(property
, -1);
807 imageSize
.x
+= ODCB_CUST_PAINT_MARGIN
;
808 cb
->SetCustomPaintWidth( imageSize
.x
);
813 // CreateControls calls this with CB_READONLY in extraStyle
814 wxWindow
* wxPGChoiceEditor::CreateControlsBase( wxPropertyGrid
* propGrid
,
815 wxPGProperty
* property
,
818 long extraStyle
) const
820 const wxPGChoices
& choices
= property
->GetChoices();
822 int index
= property
->GetChoiceSelection();
824 bool isUnspecified
= property
->IsValueUnspecified();
826 if ( !isUnspecified
)
827 defString
= property
->GetDisplayedString();
829 wxArrayString labels
= choices
.GetLabels();
835 po
.y
+= wxPG_CHOICEYADJUST
;
836 si
.y
-= (wxPG_CHOICEYADJUST
*2);
838 po
.x
+= wxPG_CHOICEXADJUST
;
839 si
.x
-= wxPG_CHOICEXADJUST
;
840 wxWindow
* ctrlParent
= propGrid
->GetPanel();
842 int odcbFlags
= extraStyle
| wxBORDER_NONE
| wxTE_PROCESS_ENTER
;
844 if ( (property
->GetFlags() & wxPG_PROP_USE_DCC
) &&
845 (property
->IsKindOf(CLASSINFO(wxBoolProperty
)) ) )
846 odcbFlags
|= wxODCB_DCLICK_CYCLES
;
849 // If common value specified, use appropriate index
850 unsigned int cmnVals
= property
->GetDisplayedCommonValueCount();
853 if ( !isUnspecified
)
855 int cmnVal
= property
->GetCommonValue();
858 index
= labels
.size() + cmnVal
;
863 for ( i
=0; i
<cmnVals
; i
++ )
864 labels
.Add(propGrid
->GetCommonValueLabel(i
));
867 cb
= new wxPGComboBox();
871 cb
->Create(ctrlParent
,
879 cb
->SetButtonPosition(si
.y
,0,wxRIGHT
);
880 cb
->SetMargins(wxPG_XBEFORETEXT
-1);
882 wxPGChoiceEditor_SetCustomPaintWidth( propGrid
, cb
, property
->GetCommonValue() );
884 if ( index
>= 0 && index
< (int)cb
->GetCount() )
886 cb
->SetSelection( index
);
887 if ( defString
.length() )
888 cb
->SetText( defString
);
890 else if ( !(extraStyle
& wxCB_READONLY
) && defString
.length() )
891 cb
->SetValue( defString
);
893 cb
->SetSelection( -1 );
899 return (wxWindow
*) cb
;
903 void wxPGChoiceEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
906 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
907 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
908 int ind
= property
->GetChoiceSelection();
909 cb
->SetSelection(ind
);
912 wxPGWindowList
wxPGChoiceEditor::CreateControls( wxPropertyGrid
* propGrid
, wxPGProperty
* property
,
913 const wxPoint
& pos
, const wxSize
& sz
) const
915 return CreateControlsBase(propGrid
,property
,pos
,sz
,wxCB_READONLY
);
919 int wxPGChoiceEditor::InsertItem( wxWindow
* ctrl
, const wxString
& label
, int index
) const
922 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
923 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
926 index
= cb
->GetCount();
928 return cb
->Insert(label
,index
);
932 void wxPGChoiceEditor::DeleteItem( wxWindow
* ctrl
, int index
) const
935 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
936 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
941 bool wxPGChoiceEditor::OnEvent( wxPropertyGrid
* propGrid
, wxPGProperty
* property
,
942 wxWindow
* ctrl
, wxEvent
& event
) const
944 if ( event
.GetEventType() == wxEVT_COMMAND_COMBOBOX_SELECTED
)
946 wxPGComboBox
* cb
= (wxPGComboBox
*)ctrl
;
947 int index
= cb
->GetSelection();
948 int cmnValIndex
= -1;
949 int cmnVals
= property
->GetDisplayedCommonValueCount();
950 int items
= cb
->GetCount();
952 if ( index
>= (items
-cmnVals
) )
954 // Yes, a common value is being selected
955 cmnValIndex
= index
- (items
-cmnVals
);
956 property
->SetCommonValue( cmnValIndex
);
958 // Truly set value to unspecified?
959 if ( propGrid
->GetUnspecifiedCommonValue() == cmnValIndex
)
961 if ( !property
->IsValueUnspecified() )
962 propGrid
->SetInternalFlag(wxPG_FL_VALUE_CHANGE_IN_EVENT
);
963 property
->SetValueToUnspecified();
964 if ( !cb
->HasFlag(wxCB_READONLY
) )
965 cb
->GetTextCtrl()->SetValue(wxEmptyString
);
969 return wxPGChoiceEditor_SetCustomPaintWidth( propGrid
, cb
, cmnValIndex
);
975 bool wxPGChoiceEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
977 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
979 int index
= cb
->GetSelection();
981 if ( index
!= property
->GetChoiceSelection() ||
982 // Changing unspecified always causes event (returning
983 // true here should be enough to trigger it).
984 property
->IsValueUnspecified()
987 return property
->IntToValue( variant
, index
, 0 );
993 void wxPGChoiceEditor::SetControlStringValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, const wxString
& txt
) const
995 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1001 void wxPGChoiceEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, int value
) const
1003 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1005 cb
->SetSelection(value
);
1009 void wxPGChoiceEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
) const
1011 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1012 cb
->SetSelection(-1);
1016 bool wxPGChoiceEditor::CanContainCustomImage() const
1022 wxPGChoiceEditor::~wxPGChoiceEditor() { }
1025 // -----------------------------------------------------------------------
1026 // wxPGComboBoxEditor
1027 // -----------------------------------------------------------------------
1030 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(ComboBox
,
1035 void wxPGComboBoxEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
1037 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1038 cb
->SetValue(property
->GetValueAsString(wxPG_EDITABLE_VALUE
));
1040 // TODO: If string matches any selection, then select that.
1044 wxPGWindowList
wxPGComboBoxEditor::CreateControls( wxPropertyGrid
* propGrid
,
1045 wxPGProperty
* property
,
1047 const wxSize
& sz
) const
1049 return CreateControlsBase(propGrid
,property
,pos
,sz
,0);
1053 bool wxPGComboBoxEditor::OnEvent( wxPropertyGrid
* propGrid
,
1054 wxPGProperty
* property
,
1056 wxEvent
& event
) const
1058 wxOwnerDrawnComboBox
* cb
= NULL
;
1059 wxWindow
* textCtrl
= NULL
;
1063 cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1064 textCtrl
= cb
->GetTextCtrl();
1067 if ( wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid
,property
,textCtrl
,event
) )
1070 return wxPGChoiceEditor::OnEvent(propGrid
,property
,ctrl
,event
);
1074 bool wxPGComboBoxEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1076 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1077 wxString textVal
= cb
->GetValue();
1079 if ( property
->UsesAutoUnspecified() && !textVal
.length() )
1085 bool res
= property
->StringToValue(variant
, textVal
, wxPG_EDITABLE_VALUE
);
1087 // Changing unspecified always causes event (returning
1088 // true here should be enough to trigger it).
1089 if ( !res
&& variant
.IsNull() )
1096 void wxPGComboBoxEditor::OnFocus( wxPGProperty
*, wxWindow
* ctrl
) const
1098 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1099 cb
->GetTextCtrl()->SetSelection(-1,-1);
1103 wxPGComboBoxEditor::~wxPGComboBoxEditor() { }
1106 // -----------------------------------------------------------------------
1107 // wxPGChoiceAndButtonEditor
1108 // -----------------------------------------------------------------------
1111 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(ChoiceAndButton
,
1112 wxPGChoiceAndButtonEditor
,
1116 wxPGWindowList
wxPGChoiceAndButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
1117 wxPGProperty
* property
,
1119 const wxSize
& sz
) const
1121 // Use one two units smaller to match size of the combo's dropbutton.
1122 // (normally a bigger button is used because it looks better)
1125 wxSize
bt_sz(bt_wid
,bt_wid
);
1127 // Position of button.
1128 wxPoint
bt_pos(pos
.x
+sz
.x
-bt_sz
.x
,pos
.y
);
1135 wxWindow
* bt
= propGrid
->GenerateEditorButton( bt_pos
, bt_sz
);
1138 wxSize
ch_sz(sz
.x
-bt
->GetSize().x
,sz
.y
);
1141 ch_sz
.x
-= wxPG_TEXTCTRL_AND_BUTTON_SPACING
;
1144 wxWindow
* ch
= wxPGEditor_Choice
->CreateControls(propGrid
,property
,
1145 pos
,ch_sz
).m_primary
;
1151 return wxPGWindowList(ch
, bt
);
1155 wxPGChoiceAndButtonEditor::~wxPGChoiceAndButtonEditor() { }
1158 // -----------------------------------------------------------------------
1159 // wxPGTextCtrlAndButtonEditor
1160 // -----------------------------------------------------------------------
1162 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(TextCtrlAndButton
,
1163 wxPGTextCtrlAndButtonEditor
,
1167 wxPGWindowList
wxPGTextCtrlAndButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
1168 wxPGProperty
* property
,
1170 const wxSize
& sz
) const
1173 wxWindow
* wnd
= propGrid
->GenerateEditorTextCtrlAndButton( pos
, sz
, &wnd2
,
1174 property
->GetFlags() & wxPG_PROP_NOEDITOR
, property
);
1176 return wxPGWindowList(wnd
, wnd2
);
1180 wxPGTextCtrlAndButtonEditor::~wxPGTextCtrlAndButtonEditor() { }
1183 // -----------------------------------------------------------------------
1184 // wxPGCheckBoxEditor
1185 // -----------------------------------------------------------------------
1187 #if wxPG_INCLUDE_CHECKBOX
1189 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(CheckBox
,
1194 // Check box state flags
1197 wxSCB_STATE_UNCHECKED
= 0,
1198 wxSCB_STATE_CHECKED
= 1,
1199 wxSCB_STATE_BOLD
= 2,
1200 wxSCB_STATE_UNSPECIFIED
= 4
1203 const int wxSCB_SETVALUE_CYCLE
= 2;
1206 static void DrawSimpleCheckBox( wxDC
& dc
, const wxRect
& rect
, int box_hei
,
1207 int state
, const wxColour
& lineCol
)
1210 wxRect
r(rect
.x
+wxPG_XBEFORETEXT
,rect
.y
+((rect
.height
-box_hei
)/2),
1212 wxColour useCol
= lineCol
;
1214 if ( state
& wxSCB_STATE_UNSPECIFIED
)
1216 useCol
= wxColour(220, 220, 220);
1219 // Draw check mark first because it is likely to overdraw the
1220 // surrounding rectangle.
1221 if ( state
& wxSCB_STATE_CHECKED
)
1223 wxRect
r2(r
.x
+wxPG_CHECKMARK_XADJ
,
1224 r
.y
+wxPG_CHECKMARK_YADJ
,
1225 r
.width
+wxPG_CHECKMARK_WADJ
,
1226 r
.height
+wxPG_CHECKMARK_HADJ
);
1227 #if wxPG_CHECKMARK_DEFLATE
1228 r2
.Deflate(wxPG_CHECKMARK_DEFLATE
);
1230 dc
.DrawCheckMark(r2
);
1232 // This would draw a simple cross check mark.
1233 // dc.DrawLine(r.x,r.y,r.x+r.width-1,r.y+r.height-1);
1234 // dc.DrawLine(r.x,r.y+r.height-1,r.x+r.width-1,r.y);
1237 if ( !(state
& wxSCB_STATE_BOLD
) )
1239 // Pen for thin rectangle.
1244 // Pen for bold rectangle.
1245 wxPen
linepen(useCol
,2,wxSOLID
);
1246 linepen
.SetJoin(wxJOIN_MITER
); // This prevents round edges.
1254 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1256 dc
.DrawRectangle(r
);
1257 dc
.SetPen(*wxTRANSPARENT_PEN
);
1261 // Real simple custom-drawn checkbox-without-label class.
1263 class wxSimpleCheckBox
: public wxControl
1267 void SetValue( int value
);
1269 wxSimpleCheckBox( wxWindow
* parent
,
1271 const wxPoint
& pos
= wxDefaultPosition
,
1272 const wxSize
& size
= wxDefaultSize
)
1273 : wxControl(parent
,id
,pos
,size
,wxBORDER_NONE
|wxWANTS_CHARS
)
1275 // Due to SetOwnFont stuff necessary for GTK+ 1.2, we need to have this
1276 SetFont( parent
->GetFont() );
1281 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
1284 virtual ~wxSimpleCheckBox();
1290 void OnPaint( wxPaintEvent
& event
);
1291 void OnLeftClick( wxMouseEvent
& event
);
1292 void OnKeyDown( wxKeyEvent
& event
);
1294 void OnResize( wxSizeEvent
& event
)
1300 static wxBitmap
* ms_doubleBuffer
;
1302 DECLARE_EVENT_TABLE()
1305 BEGIN_EVENT_TABLE(wxSimpleCheckBox
, wxControl
)
1306 EVT_PAINT(wxSimpleCheckBox::OnPaint
)
1307 EVT_LEFT_DOWN(wxSimpleCheckBox::OnLeftClick
)
1308 EVT_LEFT_DCLICK(wxSimpleCheckBox::OnLeftClick
)
1309 EVT_KEY_DOWN(wxSimpleCheckBox::OnKeyDown
)
1310 EVT_SIZE(wxSimpleCheckBox::OnResize
)
1313 wxSimpleCheckBox::~wxSimpleCheckBox()
1315 delete ms_doubleBuffer
;
1316 ms_doubleBuffer
= NULL
;
1319 wxBitmap
* wxSimpleCheckBox::ms_doubleBuffer
= NULL
;
1321 void wxSimpleCheckBox::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1323 wxSize clientSize
= GetClientSize();
1324 wxAutoBufferedPaintDC
dc(this);
1327 wxRect
rect(0,0,clientSize
.x
,clientSize
.y
);
1331 wxColour bgcol
= GetBackgroundColour();
1332 dc
.SetBrush( bgcol
);
1334 dc
.DrawRectangle( rect
);
1336 wxColour txcol
= GetForegroundColour();
1338 int state
= m_state
;
1339 if ( !(state
& wxSCB_STATE_UNSPECIFIED
) &&
1340 GetFont().GetWeight() == wxBOLD
)
1341 state
|= wxSCB_STATE_BOLD
;
1343 DrawSimpleCheckBox(dc
,rect
,m_boxHeight
,state
,txcol
);
1346 void wxSimpleCheckBox::OnLeftClick( wxMouseEvent
& event
)
1348 if ( (event
.m_x
> (wxPG_XBEFORETEXT
-2)) &&
1349 (event
.m_x
<= (wxPG_XBEFORETEXT
-2+m_boxHeight
)) )
1351 SetValue(wxSCB_SETVALUE_CYCLE
);
1355 void wxSimpleCheckBox::OnKeyDown( wxKeyEvent
& event
)
1357 if ( event
.GetKeyCode() == WXK_SPACE
)
1359 SetValue(wxSCB_SETVALUE_CYCLE
);
1363 void wxSimpleCheckBox::SetValue( int value
)
1365 if ( value
== wxSCB_SETVALUE_CYCLE
)
1367 if ( m_state
& wxSCB_STATE_CHECKED
)
1368 m_state
&= ~wxSCB_STATE_CHECKED
;
1370 m_state
|= wxSCB_STATE_CHECKED
;
1378 wxCommandEvent
evt(wxEVT_COMMAND_CHECKBOX_CLICKED
,GetParent()->GetId());
1380 wxPropertyGrid
* propGrid
= (wxPropertyGrid
*) GetParent()->GetParent();
1381 wxASSERT( propGrid
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
1382 propGrid
->HandleCustomEditorEvent(evt
);
1385 wxPGWindowList
wxPGCheckBoxEditor::CreateControls( wxPropertyGrid
* propGrid
,
1386 wxPGProperty
* property
,
1388 const wxSize
& size
) const
1391 pt
.x
-= wxPG_XBEFOREWIDGET
;
1393 sz
.x
= propGrid
->GetFontHeight() + (wxPG_XBEFOREWIDGET
*2) + 4;
1395 wxSimpleCheckBox
* cb
= new wxSimpleCheckBox(propGrid
->GetPanel(),
1396 wxPG_SUBID1
, pt
, sz
);
1398 cb
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
1400 UpdateControl(property
, cb
);
1402 if ( !property
->IsValueUnspecified() )
1404 // If mouse cursor was on the item, toggle the value now.
1405 if ( propGrid
->GetInternalFlags() & wxPG_FL_ACTIVATION_BY_CLICK
)
1407 wxPoint pt
= cb
->ScreenToClient(::wxGetMousePosition());
1408 if ( pt
.x
<= (wxPG_XBEFORETEXT
-2+cb
->m_boxHeight
) )
1410 if ( cb
->m_state
& wxSCB_STATE_CHECKED
)
1411 cb
->m_state
&= ~wxSCB_STATE_CHECKED
;
1413 cb
->m_state
|= wxSCB_STATE_CHECKED
;
1415 // Makes sure wxPG_EVT_CHANGING etc. is sent for this initial
1417 propGrid
->ChangePropertyValue(property
,
1418 wxPGVariant_Bool(cb
->m_state
));
1423 propGrid
->SetInternalFlag( wxPG_FL_FIXED_WIDTH_EDITOR
);
1428 void wxPGCheckBoxEditor::DrawValue( wxDC
& dc
, const wxRect
& rect
,
1429 wxPGProperty
* property
,
1430 const wxString
& WXUNUSED(text
) ) const
1432 int state
= wxSCB_STATE_UNCHECKED
;
1433 wxColour rectCol
= dc
.GetTextForeground();
1435 if ( !property
->IsValueUnspecified() )
1437 state
= property
->GetChoiceSelection();
1438 if ( dc
.GetFont().GetWeight() == wxBOLD
)
1439 state
|= wxSCB_STATE_BOLD
;
1443 state
|= wxSCB_STATE_UNSPECIFIED
;
1446 DrawSimpleCheckBox(dc
, rect
, dc
.GetCharHeight(), state
, rectCol
);
1449 void wxPGCheckBoxEditor::UpdateControl( wxPGProperty
* property
,
1450 wxWindow
* ctrl
) const
1452 wxSimpleCheckBox
* cb
= (wxSimpleCheckBox
*) ctrl
;
1455 if ( !property
->IsValueUnspecified() )
1456 cb
->m_state
= property
->GetChoiceSelection();
1458 cb
->m_state
= wxSCB_STATE_UNSPECIFIED
;
1460 wxPropertyGrid
* propGrid
= property
->GetGrid();
1461 cb
->m_boxHeight
= propGrid
->GetFontHeight();
1466 bool wxPGCheckBoxEditor::OnEvent( wxPropertyGrid
* WXUNUSED(propGrid
), wxPGProperty
* WXUNUSED(property
),
1467 wxWindow
* WXUNUSED(ctrl
), wxEvent
& event
) const
1469 if ( event
.GetEventType() == wxEVT_COMMAND_CHECKBOX_CLICKED
)
1477 bool wxPGCheckBoxEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1479 wxSimpleCheckBox
* cb
= (wxSimpleCheckBox
*)ctrl
;
1481 int index
= cb
->m_state
;
1483 if ( index
!= property
->GetChoiceSelection() ||
1484 // Changing unspecified always causes event (returning
1485 // true here should be enough to trigger it).
1486 property
->IsValueUnspecified()
1489 return property
->IntToValue(variant
, index
, 0);
1495 void wxPGCheckBoxEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, int value
) const
1497 if ( value
!= 0 ) value
= 1;
1498 ((wxSimpleCheckBox
*)ctrl
)->m_state
= value
;
1503 void wxPGCheckBoxEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
) const
1505 ((wxSimpleCheckBox
*)ctrl
)->m_state
= 0;
1510 wxPGCheckBoxEditor::~wxPGCheckBoxEditor() { }
1513 #endif // wxPG_INCLUDE_CHECKBOX
1515 // -----------------------------------------------------------------------
1517 wxWindow
* wxPropertyGrid::GetEditorControl() const
1519 wxWindow
* ctrl
= m_wndEditor
;
1527 // -----------------------------------------------------------------------
1529 void wxPropertyGrid::CorrectEditorWidgetSizeX()
1532 int newSplitterx
= m_pState
->DoGetSplitterPosition(m_selColumn
-1);
1533 int newWidth
= newSplitterx
+ m_pState
->m_colWidths
[m_selColumn
];
1537 // if width change occurred, move secondary wnd by that amount
1538 wxRect r
= m_wndEditor2
->GetRect();
1540 r
.x
= newWidth
- secWid
;
1542 m_wndEditor2
->SetSize( r
);
1544 // if primary is textctrl, then we have to add some extra space
1548 if ( m_wndEditor
&& m_wndEditor
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
1550 secWid
+= wxPG_TEXTCTRL_AND_BUTTON_SPACING
;
1555 wxRect r
= m_wndEditor
->GetRect();
1557 r
.x
= newSplitterx
+m_ctrlXAdjust
;
1559 if ( !(m_iFlags
& wxPG_FL_FIXED_WIDTH_EDITOR
) )
1560 r
.width
= newWidth
- r
.x
- secWid
;
1562 m_wndEditor
->SetSize(r
);
1566 m_wndEditor2
->Refresh();
1569 // -----------------------------------------------------------------------
1571 void wxPropertyGrid::CorrectEditorWidgetPosY()
1573 if ( GetSelection() && (m_wndEditor
|| m_wndEditor2
) )
1575 wxRect r
= GetEditorWidgetRect(GetSelection(), m_selColumn
);
1579 wxPoint pos
= m_wndEditor
->GetPosition();
1581 // Calculate y offset
1582 int offset
= pos
.y
% m_lineHeight
;
1584 m_wndEditor
->Move(pos
.x
, r
.y
+ offset
);
1589 wxPoint pos
= m_wndEditor2
->GetPosition();
1591 m_wndEditor2
->Move(pos
.x
, r
.y
);
1596 // -----------------------------------------------------------------------
1598 // Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1599 // fits into that category as well).
1600 void wxPropertyGrid::FixPosForTextCtrl( wxWindow
* ctrl
,
1601 unsigned int WXUNUSED(forColumn
),
1602 const wxPoint
& offset
)
1604 // Center the control vertically
1605 wxRect finalPos
= ctrl
->GetRect();
1606 int y_adj
= (m_lineHeight
- finalPos
.height
)/2 + wxPG_TEXTCTRLYADJUST
;
1608 // Prevent over-sized control
1609 int sz_dec
= (y_adj
+ finalPos
.height
) - m_lineHeight
;
1610 if ( sz_dec
< 0 ) sz_dec
= 0;
1612 finalPos
.y
+= y_adj
;
1613 finalPos
.height
-= (y_adj
+sz_dec
);
1615 #ifndef wxPG_TEXTCTRLXADJUST
1616 int textCtrlXAdjust
= wxPG_XBEFORETEXT
- 1;
1618 wxTextCtrl
* tc
= static_cast<wxTextCtrl
*>(ctrl
);
1621 int textCtrlXAdjust
= wxPG_TEXTCTRLXADJUST
;
1624 finalPos
.x
+= textCtrlXAdjust
;
1625 finalPos
.width
-= textCtrlXAdjust
;
1627 finalPos
.x
+= offset
.x
;
1628 finalPos
.y
+= offset
.y
;
1630 ctrl
->SetSize(finalPos
);
1633 // -----------------------------------------------------------------------
1635 wxWindow
* wxPropertyGrid::GenerateEditorTextCtrl( const wxPoint
& pos
,
1637 const wxString
& value
,
1638 wxWindow
* secondary
,
1641 unsigned int forColumn
)
1643 wxWindowID id
= wxPG_SUBID1
;
1644 wxPGProperty
* prop
= GetSelection();
1647 int tcFlags
= wxTE_PROCESS_ENTER
| extraStyle
;
1649 if ( prop
->HasFlag(wxPG_PROP_READONLY
) && forColumn
== 1 )
1650 tcFlags
|= wxTE_READONLY
;
1652 wxPoint
p(pos
.x
,pos
.y
);
1653 wxSize
s(sz
.x
,sz
.y
);
1655 // Need to reduce width of text control on Mac
1656 #if defined(__WXMAC__)
1660 // For label editors, trim the size to allow better splitter grabbing
1661 if ( forColumn
!= 1 )
1664 // Take button into acccount
1667 s
.x
-= (secondary
->GetSize().x
+ wxPG_TEXTCTRL_AND_BUTTON_SPACING
);
1668 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
1671 // If the height is significantly higher, then use border, and fill the rect exactly.
1672 bool hasSpecialSize
= false;
1674 if ( (sz
.y
- m_lineHeight
) > 5 )
1675 hasSpecialSize
= true;
1677 wxWindow
* ctrlParent
= GetPanel();
1679 if ( !hasSpecialSize
)
1680 tcFlags
|= wxBORDER_NONE
;
1682 wxTextCtrl
* tc
= new wxTextCtrl();
1684 #if defined(__WXMSW__)
1687 SetupTextCtrlValue(value
);
1688 tc
->Create(ctrlParent
,id
,value
, p
, s
,tcFlags
);
1690 // Center the control vertically
1691 if ( !hasSpecialSize
)
1692 FixPosForTextCtrl(tc
, forColumn
);
1694 if ( forColumn
!= 1 )
1696 tc
->SetBackgroundColour(m_colSelBack
);
1697 tc
->SetForegroundColour(m_colSelFore
);
1706 // Set maximum length
1708 tc
->SetMaxLength( maxLen
);
1710 wxVariant attrVal
= prop
->GetAttribute(wxPG_ATTR_AUTOCOMPLETE
);
1711 if ( !attrVal
.IsNull() )
1713 wxASSERT(attrVal
.GetType() == wxS("arrstring"));
1714 tc
->AutoComplete(attrVal
.GetArrayString());
1720 // -----------------------------------------------------------------------
1722 wxWindow
* wxPropertyGrid::GenerateEditorButton( const wxPoint
& pos
, const wxSize
& sz
)
1724 wxWindowID id
= wxPG_SUBID2
;
1725 wxPGProperty
* selected
= GetSelection();
1729 // Decorations are chunky on Mac, and we can't make the button square, so
1730 // do things a bit differently on this platform.
1732 wxPoint
p(pos
.x
+sz
.x
,
1733 pos
.y
+wxPG_BUTTON_SIZEDEC
-wxPG_NAT_BUTTON_BORDER_Y
);
1736 wxButton
* but
= new wxButton();
1737 but
->Create(GetPanel(),id
,wxS("..."),p
,s
,wxWANTS_CHARS
);
1739 // Now that we know the size, move to the correct position
1740 p
.x
= pos
.x
+ sz
.x
- but
->GetSize().x
- 2;
1744 wxSize
s(sz
.y
-(wxPG_BUTTON_SIZEDEC
*2)+(wxPG_NAT_BUTTON_BORDER_Y
*2),
1745 sz
.y
-(wxPG_BUTTON_SIZEDEC
*2)+(wxPG_NAT_BUTTON_BORDER_Y
*2));
1747 // Reduce button width to lineheight
1748 if ( s
.x
> m_lineHeight
)
1752 // On wxGTK, take fixed button margins into account
1757 wxPoint
p(pos
.x
+sz
.x
-s
.x
,
1758 pos
.y
+wxPG_BUTTON_SIZEDEC
-wxPG_NAT_BUTTON_BORDER_Y
);
1760 wxButton
* but
= new wxButton();
1764 but
->Create(GetPanel(),id
,wxS("..."),p
,s
,wxWANTS_CHARS
);
1767 wxFont font
= GetFont();
1768 font
.SetPointSize(font
.GetPointSize()-2);
1771 but
->SetFont(GetFont());
1775 if ( selected
->HasFlag(wxPG_PROP_READONLY
) )
1781 // -----------------------------------------------------------------------
1783 wxWindow
* wxPropertyGrid::GenerateEditorTextCtrlAndButton( const wxPoint
& pos
,
1785 wxWindow
** psecondary
,
1787 wxPGProperty
* property
)
1789 wxButton
* but
= (wxButton
*)GenerateEditorButton(pos
,sz
);
1790 *psecondary
= (wxWindow
*)but
;
1792 if ( limitedEditing
)
1795 // There is button Show in GenerateEditorTextCtrl as well
1803 if ( !property
->IsValueUnspecified() )
1804 text
= property
->GetValueAsString(property
->HasFlag(wxPG_PROP_READONLY
)?0:wxPG_EDITABLE_VALUE
);
1806 return GenerateEditorTextCtrl(pos
,sz
,text
,but
,property
->m_maxLen
);
1809 // -----------------------------------------------------------------------
1811 wxTextCtrl
* wxPropertyGrid::GetEditorTextCtrl() const
1813 wxWindow
* wnd
= GetEditorControl();
1818 if ( wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
1819 return wxStaticCast(wnd
, wxTextCtrl
);
1821 if ( wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
1823 wxOwnerDrawnComboBox
* cb
= wxStaticCast(wnd
, wxOwnerDrawnComboBox
);
1824 return cb
->GetTextCtrl();
1830 // -----------------------------------------------------------------------
1832 wxPGEditor
* wxPropertyGridInterface::GetEditorByName( const wxString
& editorName
)
1834 wxPGHashMapS2P::const_iterator it
;
1836 it
= wxPGGlobalVars
->m_mapEditorClasses
.find(editorName
);
1837 if ( it
== wxPGGlobalVars
->m_mapEditorClasses
.end() )
1839 return (wxPGEditor
*) it
->second
;
1842 // -----------------------------------------------------------------------
1843 // wxPGEditorDialogAdapter
1844 // -----------------------------------------------------------------------
1846 IMPLEMENT_ABSTRACT_CLASS(wxPGEditorDialogAdapter
, wxObject
)
1848 bool wxPGEditorDialogAdapter::ShowDialog( wxPropertyGrid
* propGrid
, wxPGProperty
* property
)
1850 if ( !propGrid
->EditorValidate() )
1853 bool res
= DoShowDialog( propGrid
, property
);
1857 propGrid
->ValueChangeInEvent( m_value
);
1864 // -----------------------------------------------------------------------
1866 // -----------------------------------------------------------------------
1868 wxPGMultiButton::wxPGMultiButton( wxPropertyGrid
* pg
, const wxSize
& sz
)
1869 : wxWindow( pg
->GetPanel(), wxPG_SUBID2
, wxPoint(-100,-100), wxSize(0, sz
.y
) ),
1870 m_fullEditorSize(sz
), m_buttonsWidth(0)
1872 SetBackgroundColour(pg
->GetCellBackgroundColour());
1875 void wxPGMultiButton::Finalize( wxPropertyGrid
* WXUNUSED(propGrid
),
1876 const wxPoint
& pos
)
1878 Move( pos
.x
+ m_fullEditorSize
.x
- m_buttonsWidth
, pos
.y
);
1881 int wxPGMultiButton::GenId( int id
) const
1885 if ( m_buttons
.size() )
1886 id
= GetButton(m_buttons
.size()-1)->GetId() + 1;
1894 void wxPGMultiButton::Add( const wxBitmap
& bitmap
, int id
)
1897 wxSize sz
= GetSize();
1898 wxButton
* button
= new wxBitmapButton( this, id
, bitmap
,
1900 wxSize(sz
.y
, sz
.y
) );
1901 DoAddButton( button
, sz
);
1905 void wxPGMultiButton::Add( const wxString
& label
, int id
)
1908 wxSize sz
= GetSize();
1909 wxButton
* button
= new wxButton( this, id
, label
, wxPoint(sz
.x
, 0),
1910 wxSize(sz
.y
, sz
.y
) );
1911 DoAddButton( button
, sz
);
1914 void wxPGMultiButton::DoAddButton( wxWindow
* button
,
1917 m_buttons
.push_back(button
);
1918 int bw
= button
->GetSize().x
;
1919 SetSize(wxSize(sz
.x
+bw
,sz
.y
));
1920 m_buttonsWidth
+= bw
;
1923 // -----------------------------------------------------------------------
1925 #endif // wxUSE_PROPGRID