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"
81 #include "wx/msw/private.h"
84 // -----------------------------------------------------------------------
86 #if defined(__WXMSW__)
88 #define wxPG_NAT_BUTTON_BORDER_ANY 1
89 #define wxPG_NAT_BUTTON_BORDER_X 1
90 #define wxPG_NAT_BUTTON_BORDER_Y 1
92 #define wxPG_CHECKMARK_XADJ 1
93 #define wxPG_CHECKMARK_YADJ (-1)
94 #define wxPG_CHECKMARK_WADJ 0
95 #define wxPG_CHECKMARK_HADJ 0
96 #define wxPG_CHECKMARK_DEFLATE 0
98 #define wxPG_TEXTCTRLYADJUST (m_spacingy+0)
100 #elif defined(__WXGTK__)
102 #define wxPG_CHECKMARK_XADJ 0
103 #define wxPG_CHECKMARK_YADJ 0
104 #define wxPG_CHECKMARK_WADJ (-1)
105 #define wxPG_CHECKMARK_HADJ (-1)
106 #define wxPG_CHECKMARK_DEFLATE 3
108 #define wxPG_NAT_BUTTON_BORDER_ANY 1
109 #define wxPG_NAT_BUTTON_BORDER_X 1
110 #define wxPG_NAT_BUTTON_BORDER_Y 1
112 #define wxPG_TEXTCTRLYADJUST 0
114 #elif defined(__WXMAC__)
116 #define wxPG_CHECKMARK_XADJ 0
117 #define wxPG_CHECKMARK_YADJ 0
118 #define wxPG_CHECKMARK_WADJ 0
119 #define wxPG_CHECKMARK_HADJ 0
120 #define wxPG_CHECKMARK_DEFLATE 0
122 #define wxPG_NAT_BUTTON_BORDER_ANY 0
123 #define wxPG_NAT_BUTTON_BORDER_X 0
124 #define wxPG_NAT_BUTTON_BORDER_Y 0
126 #define wxPG_TEXTCTRLYADJUST 0
130 #define wxPG_CHECKMARK_XADJ 0
131 #define wxPG_CHECKMARK_YADJ 0
132 #define wxPG_CHECKMARK_WADJ 0
133 #define wxPG_CHECKMARK_HADJ 0
134 #define wxPG_CHECKMARK_DEFLATE 0
136 #define wxPG_NAT_BUTTON_BORDER_ANY 0
137 #define wxPG_NAT_BUTTON_BORDER_X 0
138 #define wxPG_NAT_BUTTON_BORDER_Y 0
140 #define wxPG_TEXTCTRLYADJUST 0
146 #define wxPG_CHOICEXADJUST -3 // required because wxComboCtrl reserves 3pixels for wxTextCtrl's focus ring
147 #define wxPG_CHOICEYADJUST -3
149 #define wxPG_CHOICEXADJUST 0
150 #define wxPG_CHOICEYADJUST 0
153 #define ODCB_CUST_PAINT_MARGIN 6 // Number added to image width for SetCustomPaintWidth
155 // Milliseconds to wait for two mouse-ups after focus inorder
156 // to trigger a double-click.
157 #define DOUBLE_CLICK_CONVERSION_TRESHOLD 500
159 // -----------------------------------------------------------------------
161 // -----------------------------------------------------------------------
163 IMPLEMENT_ABSTRACT_CLASS(wxPGEditor
, wxObject
)
166 wxPGEditor::~wxPGEditor()
170 wxString
wxPGEditor::GetName() const
172 return GetClassInfo()->GetClassName();
175 void wxPGEditor::DrawValue( wxDC
& dc
, const wxRect
& rect
, wxPGProperty
* property
, const wxString
& text
) const
177 if ( !property
->IsValueUnspecified() )
178 dc
.DrawText( text
, rect
.x
+wxPG_XBEFORETEXT
, rect
.y
);
181 bool wxPGEditor::GetValueFromControl( wxVariant
&, wxPGProperty
*, wxWindow
* ) const
186 void wxPGEditor::SetControlStringValue( wxPGProperty
* WXUNUSED(property
), wxWindow
*, const wxString
& ) const
191 void wxPGEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
*, int ) const
196 int wxPGEditor::InsertItem( wxWindow
*, const wxString
&, int ) const
202 void wxPGEditor::DeleteItem( wxWindow
*, int ) const
208 void wxPGEditor::OnFocus( wxPGProperty
*, wxWindow
* ) const
213 bool wxPGEditor::CanContainCustomImage() const
218 // -----------------------------------------------------------------------
219 // wxPGTextCtrlEditor
220 // -----------------------------------------------------------------------
222 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(TextCtrl
,wxPGTextCtrlEditor
,wxPGEditor
)
225 wxPGWindowList
wxPGTextCtrlEditor::CreateControls( wxPropertyGrid
* propGrid
,
226 wxPGProperty
* property
,
228 const wxSize
& sz
) const
233 // If has children, and limited editing is specified, then don't create.
234 if ( (property
->GetFlags() & wxPG_PROP_NOEDITOR
) &&
235 property
->GetChildCount() )
236 return (wxWindow
*) NULL
;
238 if ( !property
->IsValueUnspecified() )
239 text
= property
->GetValueAsString(property
->HasFlag(wxPG_PROP_READONLY
) ?
240 0 : wxPG_EDITABLE_VALUE
);
243 if ( (property
->GetFlags() & wxPG_PROP_PASSWORD
) &&
244 property
->IsKindOf(CLASSINFO(wxStringProperty
)) )
245 flags
|= wxTE_PASSWORD
;
247 wxWindow
* wnd
= propGrid
->GenerateEditorTextCtrl(pos
,sz
,text
,(wxWindow
*)NULL
,flags
,
248 property
->GetMaxLength());
254 void wxPGTextCtrlEditor::DrawValue( wxDC
& dc
, wxPGProperty
* property
, const wxRect
& rect
) const
256 if ( !property
->IsValueUnspecified() )
258 wxString drawStr
= property
->GetDisplayedString();
260 // Code below should no longer be needed, as the obfuscation
261 // is now done in GetValueAsString.
262 /*if ( (property->GetFlags() & wxPG_PROP_PASSWORD) &&
263 property->IsKindOf(WX_PG_CLASSINFO(wxStringProperty)) )
265 size_t a = drawStr.length();
267 drawStr.Append(wxS('*'),a);
269 dc
.DrawText( drawStr
, rect
.x
+wxPG_XBEFORETEXT
, rect
.y
);
274 void wxPGTextCtrlEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
276 wxTextCtrl
* tc
= wxDynamicCast(ctrl
, wxTextCtrl
);
281 if ( tc
->HasFlag(wxTE_PASSWORD
) )
282 s
= property
->GetValueAsString(wxPG_FULL_VALUE
);
284 s
= property
->GetDisplayedString();
290 // Provided so that, for example, ComboBox editor can use the same code
291 // (multiple inheritance would get way too messy).
292 bool wxPGTextCtrlEditor::OnTextCtrlEvent( wxPropertyGrid
* propGrid
,
293 wxPGProperty
* WXUNUSED(property
),
300 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
302 if ( propGrid
->IsEditorsValueModified() )
307 else if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
310 // Pass this event outside wxPropertyGrid so that,
311 // if necessary, program can tell when user is editing
313 // FIXME: Is it safe to change event id in the middle of event
314 // processing (seems to work, but...)?
316 event
.SetId(propGrid
->GetId());
318 propGrid
->EditorsValueWasModified();
324 bool wxPGTextCtrlEditor::OnEvent( wxPropertyGrid
* propGrid
,
325 wxPGProperty
* property
,
327 wxEvent
& event
) const
329 return wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid
,property
,ctrl
,event
);
333 bool wxPGTextCtrlEditor::GetTextCtrlValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
)
335 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
336 wxString textVal
= tc
->GetValue();
338 if ( property
->UsesAutoUnspecified() && !textVal
.length() )
344 bool res
= property
->StringToValue(variant
, textVal
, wxPG_EDITABLE_VALUE
);
346 // Changing unspecified always causes event (returning
347 // true here should be enough to trigger it).
348 // TODO: Move to propgrid.cpp
349 if ( !res
&& variant
.IsNull() )
356 bool wxPGTextCtrlEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
358 return wxPGTextCtrlEditor::GetTextCtrlValueFromControl(variant
, property
, ctrl
);
362 void wxPGTextCtrlEditor::SetValueToUnspecified( wxPGProperty
* property
, wxWindow
* ctrl
) const
364 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
366 wxPropertyGrid
* pg
= property
->GetGrid();
367 wxASSERT(pg
); // Really, property grid should exist if editor does
369 tc
->SetValue(wxEmptyString
);
373 void wxPGTextCtrlEditor::SetControlStringValue( wxPGProperty
* property
, wxWindow
* ctrl
, const wxString
& txt
) const
375 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
377 wxPropertyGrid
* pg
= property
->GetGrid();
378 wxASSERT(pg
); // Really, property grid should exist if editor does
384 void wxPGTextCtrlEditor::OnFocus( wxPGProperty
*, wxWindow
* wnd
) const
386 wxTextCtrl
* tc
= wxStaticCast(wnd
, wxTextCtrl
);
388 tc
->SetSelection(-1,-1);
392 wxPGTextCtrlEditor::~wxPGTextCtrlEditor() { }
395 // -----------------------------------------------------------------------
397 // -----------------------------------------------------------------------
400 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(Choice
,wxPGChoiceEditor
,wxPGEditor
)
403 // This is a special enhanced double-click processor class.
404 // In essence, it allows for double-clicks for which the
405 // first click "created" the control.
406 class wxPGDoubleClickProcessor
: public wxEvtHandler
410 wxPGDoubleClickProcessor( wxOwnerDrawnComboBox
* combo
, wxPGProperty
* property
)
413 m_timeLastMouseUp
= 0;
415 m_property
= property
;
416 m_downReceived
= false;
421 void OnMouseEvent( wxMouseEvent
& event
)
423 wxLongLong t
= ::wxGetLocalTimeMillis();
424 int evtType
= event
.GetEventType();
426 if ( m_property
->HasFlag(wxPG_PROP_USE_DCC
) &&
427 m_property
->IsKindOf(CLASSINFO(wxBoolProperty
)) &&
428 !m_combo
->IsPopupShown() )
430 // Just check that it is in the text area
431 wxPoint pt
= event
.GetPosition();
432 if ( m_combo
->GetTextRect().Contains(pt
) )
434 if ( evtType
== wxEVT_LEFT_DOWN
)
436 // Set value to avoid up-events without corresponding downs
437 m_downReceived
= true;
439 else if ( evtType
== wxEVT_LEFT_DCLICK
)
441 // We'll make our own double-clicks
442 event
.SetEventType(0);
445 else if ( evtType
== wxEVT_LEFT_UP
)
447 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
449 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
451 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
453 event
.SetEventType(wxEVT_LEFT_DCLICK
);
454 m_timeLastMouseUp
= 1;
458 m_timeLastMouseUp
= t
;
468 void OnSetFocus( wxFocusEvent
& event
)
470 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
475 wxLongLong m_timeLastMouseUp
;
476 wxOwnerDrawnComboBox
* m_combo
;
477 wxPGProperty
* m_property
; // Selected property
480 DECLARE_EVENT_TABLE()
483 BEGIN_EVENT_TABLE(wxPGDoubleClickProcessor
, wxEvtHandler
)
484 EVT_MOUSE_EVENTS(wxPGDoubleClickProcessor::OnMouseEvent
)
485 EVT_SET_FOCUS(wxPGDoubleClickProcessor::OnSetFocus
)
490 class wxPGComboBox
: public wxOwnerDrawnComboBox
495 : wxOwnerDrawnComboBox()
497 m_dclickProcessor
= (wxPGDoubleClickProcessor
*) NULL
;
498 m_sizeEventCalled
= false;
503 if ( m_dclickProcessor
)
505 RemoveEventHandler(m_dclickProcessor
);
506 delete m_dclickProcessor
;
510 bool Create(wxWindow
*parent
,
512 const wxString
& value
,
515 const wxArrayString
& choices
,
517 const wxValidator
& validator
= wxDefaultValidator
,
518 const wxString
& name
= wxS("wxOwnerDrawnComboBox"))
520 if ( !wxOwnerDrawnComboBox::Create( parent
,
531 m_dclickProcessor
= new
532 wxPGDoubleClickProcessor( this, GetGrid()->GetSelection() );
534 PushEventHandler(m_dclickProcessor
);
539 virtual void OnDrawItem( wxDC
& dc
,
544 wxPropertyGrid
* pg
= GetGrid();
545 pg
->OnComboItemPaint( this, item
, &dc
, (wxRect
&)rect
, flags
);
548 virtual wxCoord
OnMeasureItem( size_t item
) const
550 wxPropertyGrid
* pg
= GetGrid();
554 pg
->OnComboItemPaint( this, item
, NULL
, rect
, 0 );
558 wxPropertyGrid
* GetGrid() const
560 wxPropertyGrid
* pg
= wxDynamicCast(GetParent()->GetParent(),
566 virtual wxCoord
OnMeasureItemWidth( size_t item
) const
568 wxPropertyGrid
* pg
= GetGrid();
572 pg
->OnComboItemPaint( this, item
, NULL
, rect
, 0 );
576 virtual void PositionTextCtrl( int WXUNUSED(textCtrlXAdjust
),
577 int WXUNUSED(textCtrlYAdjust
) )
579 wxPropertyGrid
* pg
= GetGrid();
580 wxOwnerDrawnComboBox::PositionTextCtrl(
581 wxPG_TEXTCTRLXADJUST
-
582 (wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1) - 1,
583 pg
->GetSpacingY() + 2
588 wxPGDoubleClickProcessor
* m_dclickProcessor
;
589 bool m_sizeEventCalled
;
593 void wxPropertyGrid::OnComboItemPaint( const wxPGComboBox
* pCb
,
600 wxASSERT( IsKindOf(CLASSINFO(wxPropertyGrid
)) );
602 wxPGProperty
* p
= m_selected
;
605 const wxPGChoices
& choices
= p
->GetChoices();
606 const wxPGCommonValue
* comVal
= NULL
;
607 int comVals
= p
->GetDisplayedCommonValueCount();
608 int comValIndex
= -1;
611 if ( choices
.IsOk() )
612 choiceCount
= choices
.GetCount();
614 if ( item
>= choiceCount
&& comVals
> 0 )
616 comValIndex
= item
- choiceCount
;
617 comVal
= GetCommonValue(comValIndex
);
618 if ( !p
->IsValueUnspecified() )
619 text
= comVal
->GetLabel();
623 if ( !(flags
& wxODCB_PAINTING_CONTROL
) )
625 text
= pCb
->GetString(item
);
629 if ( !p
->IsValueUnspecified() )
630 text
= p
->GetValueAsString(0);
639 const wxBitmap
* itemBitmap
= NULL
;
641 if ( item
>= 0 && choices
.IsOk() && choices
.Item(item
).GetBitmap().Ok() && comValIndex
== -1 )
642 itemBitmap
= &choices
.Item(item
).GetBitmap();
645 // Decide what custom image size to use
648 cis
.x
= itemBitmap
->GetWidth();
649 cis
.y
= itemBitmap
->GetHeight();
653 cis
= GetImageSize(p
, item
);
658 // Default measure behaviour (no flexible, custom paint image only)
659 if ( rect
.width
< 0 )
662 GetTextExtent(text
, &x
, &y
, 0, 0, &m_font
);
663 rect
.width
= cis
.x
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
+ 9 + x
;
666 rect
.height
= cis
.y
+ 2;
670 wxPGPaintData paintdata
;
671 paintdata
.m_parent
= NULL
;
672 paintdata
.m_choiceItem
= item
;
674 // This is by the current (1.0.0b) spec - if painting control, item is -1
675 if ( (flags
& wxODCB_PAINTING_CONTROL
) )
676 paintdata
.m_choiceItem
= -1;
679 pDc
->SetBrush(*wxWHITE_BRUSH
);
687 wxPoint
pt(rect
.x
+ wxPG_CONTROL_MARGIN
- wxPG_CHOICEXADJUST
- 1,
690 int renderFlags
= wxPGCellRenderer::DontUseCellColours
;
692 if ( flags
& wxODCB_PAINTING_CONTROL
)
693 renderFlags
|= wxPGCellRenderer::Control
;
695 renderFlags
|= wxPGCellRenderer::ChoicePopup
;
697 if ( flags
& wxODCB_PAINTING_SELECTED
)
698 renderFlags
|= wxPGCellRenderer::Selected
;
700 if ( cis
.x
> 0 && (p
->HasFlag(wxPG_PROP_CUSTOMIMAGE
) || !(flags
& wxODCB_PAINTING_CONTROL
)) &&
701 ( !p
->m_valueBitmap
|| item
== pCb
->GetSelection() ) &&
702 ( item
>= 0 || (flags
& wxODCB_PAINTING_CONTROL
) ) &&
706 pt
.x
+= wxCC_CUSTOM_IMAGE_MARGIN1
;
707 wxRect
r(pt
.x
,pt
.y
,cis
.x
,cis
.y
);
709 if ( flags
& wxODCB_PAINTING_CONTROL
)
712 r
.height
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
715 paintdata
.m_drawnWidth
= r
.width
;
717 dc
.SetPen(m_colPropFore
);
718 if ( comValIndex
>= 0 )
720 const wxPGCommonValue
* cv
= GetCommonValue(comValIndex
);
721 wxPGCellRenderer
* renderer
= cv
->GetRenderer();
722 r
.width
= rect
.width
;
723 renderer
->Render( dc
, r
, this, p
, m_selColumn
, comValIndex
, renderFlags
);
726 else if ( item
>= 0 )
728 p
->OnCustomPaint( dc
, r
, paintdata
);
732 dc
.DrawRectangle( r
);
735 pt
.x
+= paintdata
.m_drawnWidth
+ wxCC_CUSTOM_IMAGE_MARGIN2
- 1;
739 // TODO: This aligns text so that it seems to be horizontally
740 // on the same line as property values. Not really
741 // sure if its needed, but seems to not cause any harm.
744 if ( item
< 0 && (flags
& wxODCB_PAINTING_CONTROL
) )
745 item
= pCb
->GetSelection();
747 if ( choices
.IsOk() && item
>= 0 && comValIndex
< 0 )
749 const wxPGChoiceEntry
& cell
= choices
.Item(item
);
750 wxPGCellRenderer
* renderer
= wxPGGlobalVars
->m_defaultRenderer
;
751 int imageOffset
= renderer
->PreDrawCell( dc
, rect
, cell
, renderFlags
);
753 imageOffset
+= wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
762 pt
.y
+= (rect
.height
-m_fontHeight
)/2 - 1;
766 dc
.DrawText( text
, pt
.x
+ wxPG_XBEFORETEXT
, pt
.y
);
774 p
->OnCustomPaint( dc
, rect
, paintdata
);
775 rect
.height
= paintdata
.m_drawnHeight
+ 2;
776 rect
.width
= cis
.x
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
+ 9;
780 bool wxPGChoiceEditor_SetCustomPaintWidth( wxPropertyGrid
* propGrid
, wxPGComboBox
* cb
, int cmnVal
)
782 wxPGProperty
* property
= propGrid
->GetSelectedProperty();
783 wxASSERT( property
);
787 // Yes, a common value is being selected
788 property
->SetCommonValue( cmnVal
);
789 wxSize imageSize
= propGrid
->GetCommonValue(cmnVal
)->
790 GetRenderer()->GetImageSize(property
, 1, cmnVal
);
791 if ( imageSize
.x
) imageSize
.x
+= ODCB_CUST_PAINT_MARGIN
;
792 cb
->SetCustomPaintWidth( imageSize
.x
);
797 wxSize imageSize
= propGrid
->GetImageSize(property
, -1);
798 if ( imageSize
.x
) imageSize
.x
+= ODCB_CUST_PAINT_MARGIN
;
799 cb
->SetCustomPaintWidth( imageSize
.x
);
804 // CreateControls calls this with CB_READONLY in extraStyle
805 wxWindow
* wxPGChoiceEditor::CreateControlsBase( wxPropertyGrid
* propGrid
,
806 wxPGProperty
* property
,
809 long extraStyle
) const
811 const wxPGChoices
& choices
= property
->GetChoices();
813 int index
= property
->GetChoiceSelection();
815 bool isUnspecified
= property
->IsValueUnspecified();
817 if ( !isUnspecified
)
818 defString
= property
->GetDisplayedString();
820 wxArrayString labels
= choices
.GetLabels();
826 po
.y
+= wxPG_CHOICEYADJUST
;
827 si
.y
-= (wxPG_CHOICEYADJUST
*2);
829 po
.x
+= wxPG_CHOICEXADJUST
;
830 si
.x
-= wxPG_CHOICEXADJUST
;
831 wxWindow
* ctrlParent
= propGrid
->GetPanel();
833 int odcbFlags
= extraStyle
| wxBORDER_NONE
| wxTE_PROCESS_ENTER
;
836 // If common value specified, use appropriate index
837 unsigned int cmnVals
= property
->GetDisplayedCommonValueCount();
840 if ( !isUnspecified
)
842 int cmnVal
= property
->GetCommonValue();
845 index
= labels
.size() + cmnVal
;
850 for ( i
=0; i
<cmnVals
; i
++ )
851 labels
.Add(propGrid
->GetCommonValueLabel(i
));
854 cb
= new wxPGComboBox();
858 cb
->Create(ctrlParent
,
866 cb
->SetButtonPosition(si
.y
,0,wxRIGHT
);
867 cb
->SetTextIndent(wxPG_XBEFORETEXT
-1);
869 wxPGChoiceEditor_SetCustomPaintWidth( propGrid
, cb
, property
->GetCommonValue() );
871 if ( index
>= 0 && index
< (int)cb
->GetCount() )
873 cb
->SetSelection( index
);
874 if ( defString
.length() )
875 cb
->SetText( defString
);
877 else if ( !(extraStyle
& wxCB_READONLY
) && defString
.length() )
878 cb
->SetValue( defString
);
880 cb
->SetSelection( -1 );
886 return (wxWindow
*) cb
;
890 void wxPGChoiceEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
893 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
894 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
895 int ind
= property
->GetChoiceSelection();
896 cb
->SetSelection(ind
);
899 wxPGWindowList
wxPGChoiceEditor::CreateControls( wxPropertyGrid
* propGrid
, wxPGProperty
* property
,
900 const wxPoint
& pos
, const wxSize
& sz
) const
902 return CreateControlsBase(propGrid
,property
,pos
,sz
,wxCB_READONLY
);
906 int wxPGChoiceEditor::InsertItem( wxWindow
* ctrl
, const wxString
& label
, int index
) const
909 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
910 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
913 index
= cb
->GetCount();
915 return cb
->Insert(label
,index
);
919 void wxPGChoiceEditor::DeleteItem( wxWindow
* ctrl
, int index
) const
922 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
923 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
928 bool wxPGChoiceEditor::OnEvent( wxPropertyGrid
* propGrid
, wxPGProperty
* property
,
929 wxWindow
* ctrl
, wxEvent
& event
) const
931 if ( event
.GetEventType() == wxEVT_COMMAND_COMBOBOX_SELECTED
)
933 wxPGComboBox
* cb
= (wxPGComboBox
*)ctrl
;
934 int index
= cb
->GetSelection();
935 int cmnValIndex
= -1;
936 int cmnVals
= property
->GetDisplayedCommonValueCount();
937 int items
= cb
->GetCount();
939 if ( index
>= (items
-cmnVals
) )
941 // Yes, a common value is being selected
942 cmnValIndex
= index
- (items
-cmnVals
);
943 property
->SetCommonValue( cmnValIndex
);
945 // Truly set value to unspecified?
946 if ( propGrid
->GetUnspecifiedCommonValue() == cmnValIndex
)
948 if ( !property
->IsValueUnspecified() )
949 propGrid
->SetInternalFlag(wxPG_FL_VALUE_CHANGE_IN_EVENT
);
950 property
->SetValueToUnspecified();
951 if ( !cb
->HasFlag(wxCB_READONLY
) )
952 cb
->GetTextCtrl()->SetValue(wxEmptyString
);
956 return wxPGChoiceEditor_SetCustomPaintWidth( propGrid
, cb
, cmnValIndex
);
962 bool wxPGChoiceEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
964 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
966 int index
= cb
->GetSelection();
968 if ( index
!= property
->GetChoiceSelection() ||
969 // Changing unspecified always causes event (returning
970 // true here should be enough to trigger it).
971 property
->IsValueUnspecified()
974 return property
->IntToValue( variant
, index
, 0 );
980 void wxPGChoiceEditor::SetControlStringValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, const wxString
& txt
) const
982 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
988 void wxPGChoiceEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, int value
) const
990 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
992 cb
->SetSelection(value
);
996 void wxPGChoiceEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
) const
998 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
999 cb
->SetSelection(-1);
1003 bool wxPGChoiceEditor::CanContainCustomImage() const
1009 wxPGChoiceEditor::~wxPGChoiceEditor() { }
1012 // -----------------------------------------------------------------------
1013 // wxPGComboBoxEditor
1014 // -----------------------------------------------------------------------
1017 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(ComboBox
,
1022 void wxPGComboBoxEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
1024 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1025 cb
->SetValue(property
->GetValueAsString(wxPG_EDITABLE_VALUE
));
1027 // TODO: If string matches any selection, then select that.
1031 wxPGWindowList
wxPGComboBoxEditor::CreateControls( wxPropertyGrid
* propGrid
,
1032 wxPGProperty
* property
,
1034 const wxSize
& sz
) const
1036 return CreateControlsBase(propGrid
,property
,pos
,sz
,0);
1040 bool wxPGComboBoxEditor::OnEvent( wxPropertyGrid
* propGrid
,
1041 wxPGProperty
* property
,
1043 wxEvent
& event
) const
1045 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*) NULL
;
1046 wxWindow
* textCtrl
= (wxWindow
*) NULL
;
1050 cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1051 textCtrl
= cb
->GetTextCtrl();
1054 if ( wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid
,property
,textCtrl
,event
) )
1057 return wxPGChoiceEditor::OnEvent(propGrid
,property
,ctrl
,event
);
1061 bool wxPGComboBoxEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1063 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1064 wxString textVal
= cb
->GetValue();
1066 if ( property
->UsesAutoUnspecified() && !textVal
.length() )
1072 bool res
= property
->StringToValue(variant
, textVal
, wxPG_EDITABLE_VALUE
);
1074 // Changing unspecified always causes event (returning
1075 // true here should be enough to trigger it).
1076 if ( !res
&& variant
.IsNull() )
1083 void wxPGComboBoxEditor::OnFocus( wxPGProperty
*, wxWindow
* ctrl
) const
1085 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1086 cb
->GetTextCtrl()->SetSelection(-1,-1);
1090 wxPGComboBoxEditor::~wxPGComboBoxEditor() { }
1093 // -----------------------------------------------------------------------
1094 // wxPGChoiceAndButtonEditor
1095 // -----------------------------------------------------------------------
1098 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(ChoiceAndButton
,
1099 wxPGChoiceAndButtonEditor
,
1103 wxPGWindowList
wxPGChoiceAndButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
1104 wxPGProperty
* property
,
1106 const wxSize
& sz
) const
1108 // Use one two units smaller to match size of the combo's dropbutton.
1109 // (normally a bigger button is used because it looks better)
1112 wxSize
bt_sz(bt_wid
,bt_wid
);
1114 // Position of button.
1115 wxPoint
bt_pos(pos
.x
+sz
.x
-bt_sz
.x
,pos
.y
);
1122 wxWindow
* bt
= propGrid
->GenerateEditorButton( bt_pos
, bt_sz
);
1125 wxSize
ch_sz(sz
.x
-bt
->GetSize().x
,sz
.y
);
1128 ch_sz
.x
-= wxPG_TEXTCTRL_AND_BUTTON_SPACING
;
1131 wxWindow
* ch
= wxPGEditor_Choice
->CreateControls(propGrid
,property
,
1132 pos
,ch_sz
).m_primary
;
1138 return wxPGWindowList(ch
, bt
);
1142 wxPGChoiceAndButtonEditor::~wxPGChoiceAndButtonEditor() { }
1145 // -----------------------------------------------------------------------
1146 // wxPGTextCtrlAndButtonEditor
1147 // -----------------------------------------------------------------------
1149 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(TextCtrlAndButton
,
1150 wxPGTextCtrlAndButtonEditor
,
1154 wxPGWindowList
wxPGTextCtrlAndButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
1155 wxPGProperty
* property
,
1157 const wxSize
& sz
) const
1160 wxWindow
* wnd
= propGrid
->GenerateEditorTextCtrlAndButton( pos
, sz
, &wnd2
,
1161 property
->GetFlags() & wxPG_PROP_NOEDITOR
, property
);
1163 return wxPGWindowList(wnd
, wnd2
);
1167 wxPGTextCtrlAndButtonEditor::~wxPGTextCtrlAndButtonEditor() { }
1170 // -----------------------------------------------------------------------
1171 // wxPGCheckBoxEditor
1172 // -----------------------------------------------------------------------
1174 #if wxPG_INCLUDE_CHECKBOX
1176 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(CheckBox
,
1181 // state argument: 0x01 = set if checked
1182 // 0x02 = set if rectangle should be bold
1183 static void DrawSimpleCheckBox( wxDC
& dc
, const wxRect
& rect
, int box_hei
, int state
, const wxColour
& linecol
)
1187 wxRect
r(rect
.x
+wxPG_XBEFORETEXT
,rect
.y
+((rect
.height
-box_hei
)/2),box_hei
,box_hei
);
1189 // Draw check mark first because it is likely to overdraw the
1190 // surrounding rectangle.
1193 wxRect
r2(r
.x
+wxPG_CHECKMARK_XADJ
,
1194 r
.y
+wxPG_CHECKMARK_YADJ
,
1195 r
.width
+wxPG_CHECKMARK_WADJ
,
1196 r
.height
+wxPG_CHECKMARK_HADJ
);
1197 #if wxPG_CHECKMARK_DEFLATE
1198 r2
.Deflate(wxPG_CHECKMARK_DEFLATE
);
1200 dc
.DrawCheckMark(r2
);
1202 // This would draw a simple cross check mark.
1203 // dc.DrawLine(r.x,r.y,r.x+r.width-1,r.y+r.height-1);
1204 // dc.DrawLine(r.x,r.y+r.height-1,r.x+r.width-1,r.y);
1210 // Pen for thin rectangle.
1215 // Pen for bold rectangle.
1216 wxPen
linepen(linecol
,2,wxSOLID
);
1217 linepen
.SetJoin(wxJOIN_MITER
); // This prevents round edges.
1225 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1227 dc
.DrawRectangle(r
);
1228 dc
.SetPen(*wxTRANSPARENT_PEN
);
1232 // Real simple custom-drawn checkbox-without-label class.
1234 class wxSimpleCheckBox
: public wxControl
1238 void SetValue( int value
);
1240 wxSimpleCheckBox( wxWindow
* parent
,
1242 const wxPoint
& pos
= wxDefaultPosition
,
1243 const wxSize
& size
= wxDefaultSize
)
1244 : wxControl(parent
,id
,pos
,size
,wxBORDER_NONE
|wxWANTS_CHARS
)
1246 // Due to SetOwnFont stuff necessary for GTK+ 1.2, we need to have this
1247 SetFont( parent
->GetFont() );
1250 wxPropertyGrid
* pg
= (wxPropertyGrid
*) parent
->GetParent();
1251 wxASSERT( pg
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
1252 m_boxHeight
= pg
->GetFontHeight();
1253 SetBackgroundStyle( wxBG_STYLE_COLOUR
);
1256 virtual ~wxSimpleCheckBox();
1258 virtual bool ProcessEvent(wxEvent
& event
);
1263 static wxBitmap
* ms_doubleBuffer
;
1267 wxSimpleCheckBox::~wxSimpleCheckBox()
1269 delete ms_doubleBuffer
;
1270 ms_doubleBuffer
= NULL
;
1274 wxBitmap
* wxSimpleCheckBox::ms_doubleBuffer
= (wxBitmap
*) NULL
;
1276 // value = 2 means toggle (sorry, too lazy to do constants)
1277 void wxSimpleCheckBox::SetValue( int value
)
1282 if ( m_state
> 1 ) m_state
= 0;
1290 wxCommandEvent
evt(wxEVT_COMMAND_CHECKBOX_CLICKED
,GetParent()->GetId());
1292 wxPropertyGrid
* propGrid
= (wxPropertyGrid
*) GetParent()->GetParent();
1293 wxASSERT( propGrid
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
1294 propGrid
->HandleCustomEditorEvent(evt
);
1298 bool wxSimpleCheckBox::ProcessEvent(wxEvent
& event
)
1300 wxPropertyGrid
* propGrid
= (wxPropertyGrid
*) GetParent()->GetParent();
1301 wxASSERT( propGrid
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
1303 if ( ( (event
.GetEventType() == wxEVT_LEFT_DOWN
|| event
.GetEventType() == wxEVT_LEFT_DCLICK
)
1304 && ((wxMouseEvent
&)event
).m_x
> (wxPG_XBEFORETEXT
-2)
1305 && ((wxMouseEvent
&)event
).m_x
<= (wxPG_XBEFORETEXT
-2+m_boxHeight
) )
1311 else if ( event
.GetEventType() == wxEVT_PAINT
)
1313 wxSize clientSize
= GetClientSize();
1317 // Buffered paint DC doesn't seem to do much good
1318 if ( !ms_doubleBuffer ||
1319 clientSize.x > ms_doubleBuffer->GetWidth() ||
1320 clientSize.y > ms_doubleBuffer->GetHeight() )
1322 delete ms_doubleBuffer;
1323 ms_doubleBuffer = new wxBitmap(clientSize.x+25,clientSize.y+25);
1326 wxBufferedPaintDC dc(this,*ms_doubleBuffer);
1329 wxRect
rect(0,0,clientSize
.x
,clientSize
.y
);
1334 m_boxHeight
= propGrid
->GetFontHeight();
1336 wxColour bgcol
= GetBackgroundColour();
1337 dc
.SetBrush( bgcol
);
1339 dc
.DrawRectangle( rect
);
1341 wxColour txcol
= GetForegroundColour();
1343 int state
= m_state
;
1344 if ( m_font
.GetWeight() == wxBOLD
)
1347 DrawSimpleCheckBox(dc
,rect
,m_boxHeight
,state
,txcol
);
1349 // If focused, indicate it somehow.
1351 if ( wxWindow::FindFocus() == this )
1356 wxPGDrawFocusRect(dc,rect);
1362 else if ( event
.GetEventType() == wxEVT_SIZE
||
1363 event
.GetEventType() == wxEVT_SET_FOCUS
||
1364 event
.GetEventType() == wxEVT_KILL_FOCUS
1369 else if ( event
.GetEventType() == wxEVT_KEY_DOWN
)
1371 wxKeyEvent
& keyEv
= (wxKeyEvent
&) event
;
1373 if ( keyEv
.GetKeyCode() == WXK_SPACE
)
1379 return wxControl::ProcessEvent(event
);
1383 wxPGWindowList
wxPGCheckBoxEditor::CreateControls( wxPropertyGrid
* propGrid
,
1384 wxPGProperty
* property
,
1386 const wxSize
& size
) const
1389 pt
.x
-= wxPG_XBEFOREWIDGET
;
1391 sz
.x
= propGrid
->GetFontHeight() + (wxPG_XBEFOREWIDGET
*2) + 4;
1393 wxSimpleCheckBox
* cb
= new wxSimpleCheckBox(propGrid
->GetPanel(),wxPG_SUBID1
,pt
,sz
);
1395 cb
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
1397 if ( property
->GetChoiceSelection() > 0 &&
1398 !property
->IsValueUnspecified() )
1401 // If mouse cursor was on the item, toggle the value now.
1402 if ( propGrid
->GetInternalFlags() & wxPG_FL_ACTIVATION_BY_CLICK
)
1404 wxPoint pt
= cb
->ScreenToClient(::wxGetMousePosition());
1405 if ( pt
.x
<= (wxPG_XBEFORETEXT
-2+cb
->m_boxHeight
) )
1409 if ( cb
->m_state
> 1 )
1412 // Makes sure wxPG_EVT_CHANGING etc. is sent for this initial click
1413 propGrid
->ChangePropertyValue(property
, wxPGVariant_Bool(cb
->m_state
));
1417 propGrid
->SetInternalFlag( wxPG_FL_FIXED_WIDTH_EDITOR
);
1423 class wxPGCheckBoxRenderer : public wxPGDefaultRenderer
1427 virtual void Render( wxDC& dc, const wxRect& rect,
1428 const wxPropertyGrid* WXUNUSED(propertyGrid), wxPGProperty* property,
1429 int WXUNUSED(column), int WXUNUSED(item), int WXUNUSED(flags) ) const
1432 if ( !(property->GetFlags() & wxPG_PROP_UNSPECIFIED) )
1434 state = ((wxPGProperty*)property)->GetChoiceInfo((wxPGChoiceInfo*)NULL);
1435 if ( dc.GetFont().GetWeight() == wxBOLD ) state |= 2;
1437 DrawSimpleCheckBox(dc,rect,dc.GetCharHeight(),state,dc.GetTextForeground());
1443 wxPGCheckBoxRenderer g_wxPGCheckBoxRenderer;
1445 wxPGCellRenderer* wxPGCheckBoxEditor::GetCellRenderer() const
1447 return &g_wxPGCheckBoxRenderer;
1451 void wxPGCheckBoxEditor::DrawValue( wxDC
& dc
, const wxRect
& rect
, wxPGProperty
* property
, const wxString
& WXUNUSED(text
) ) const
1454 if ( !property
->IsValueUnspecified() )
1456 state
= property
->GetChoiceSelection();
1457 if ( dc
.GetFont().GetWeight() == wxBOLD
) state
|= 2;
1459 DrawSimpleCheckBox(dc
,rect
,dc
.GetCharHeight(),state
,dc
.GetTextForeground());
1462 void wxPGCheckBoxEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
1465 ((wxSimpleCheckBox
*)ctrl
)->m_state
= property
->GetChoiceSelection();
1470 bool wxPGCheckBoxEditor::OnEvent( wxPropertyGrid
* WXUNUSED(propGrid
), wxPGProperty
* WXUNUSED(property
),
1471 wxWindow
* WXUNUSED(ctrl
), wxEvent
& event
) const
1473 if ( event
.GetEventType() == wxEVT_COMMAND_CHECKBOX_CLICKED
)
1481 bool wxPGCheckBoxEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1483 wxSimpleCheckBox
* cb
= (wxSimpleCheckBox
*)ctrl
;
1485 int index
= cb
->m_state
;
1487 if ( index
!= property
->GetChoiceSelection() ||
1488 // Changing unspecified always causes event (returning
1489 // true here should be enough to trigger it).
1490 property
->IsValueUnspecified()
1493 return property
->IntToValue(variant
, index
, 0);
1499 void wxPGCheckBoxEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, int value
) const
1501 if ( value
!= 0 ) value
= 1;
1502 ((wxSimpleCheckBox
*)ctrl
)->m_state
= value
;
1507 void wxPGCheckBoxEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
) const
1509 ((wxSimpleCheckBox
*)ctrl
)->m_state
= 0;
1514 wxPGCheckBoxEditor::~wxPGCheckBoxEditor() { }
1517 #endif // wxPG_INCLUDE_CHECKBOX
1519 // -----------------------------------------------------------------------
1521 wxWindow
* wxPropertyGrid::GetEditorControl() const
1523 wxWindow
* ctrl
= m_wndEditor
;
1531 // -----------------------------------------------------------------------
1533 void wxPropertyGrid::CorrectEditorWidgetSizeX()
1535 if ( m_selColumn
== -1 )
1539 int newSplitterx
= m_pState
->DoGetSplitterPosition(m_selColumn
-1);
1540 int newWidth
= newSplitterx
+ m_pState
->m_colWidths
[m_selColumn
];
1544 // if width change occurred, move secondary wnd by that amount
1545 wxRect r
= m_wndEditor2
->GetRect();
1547 r
.x
= newWidth
- secWid
;
1549 m_wndEditor2
->SetSize( r
);
1551 // if primary is textctrl, then we have to add some extra space
1555 if ( m_wndEditor
&& m_wndEditor
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
1557 secWid
+= wxPG_TEXTCTRL_AND_BUTTON_SPACING
;
1562 wxRect r
= m_wndEditor
->GetRect();
1564 r
.x
= newSplitterx
+m_ctrlXAdjust
;
1566 if ( !(m_iFlags
& wxPG_FL_FIXED_WIDTH_EDITOR
) )
1567 r
.width
= newWidth
- r
.x
- secWid
;
1569 m_wndEditor
->SetSize(r
);
1573 m_wndEditor2
->Refresh();
1576 // -----------------------------------------------------------------------
1578 void wxPropertyGrid::CorrectEditorWidgetPosY()
1580 if ( m_selected
&& (m_wndEditor
|| m_wndEditor2
) )
1582 wxRect r
= GetEditorWidgetRect(m_selected
, m_selColumn
);
1586 wxPoint pos
= m_wndEditor
->GetPosition();
1588 // Calculate y offset
1589 int offset
= pos
.y
% m_lineHeight
;
1591 m_wndEditor
->Move(pos
.x
, r
.y
+ offset
);
1596 wxPoint pos
= m_wndEditor2
->GetPosition();
1598 m_wndEditor2
->Move(pos
.x
, r
.y
);
1603 // -----------------------------------------------------------------------
1605 // Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1606 // fits into that category as well).
1607 void wxPropertyGrid::FixPosForTextCtrl( wxWindow
* ctrl
, const wxPoint
& offset
)
1609 // Center the control vertically
1610 wxRect finalPos
= ctrl
->GetRect();
1611 int y_adj
= (m_lineHeight
- finalPos
.height
)/2 + wxPG_TEXTCTRLYADJUST
;
1613 // Prevent over-sized control
1614 int sz_dec
= (y_adj
+ finalPos
.height
) - m_lineHeight
;
1615 if ( sz_dec
< 0 ) sz_dec
= 0;
1617 finalPos
.y
+= y_adj
;
1618 finalPos
.height
-= (y_adj
+sz_dec
);
1620 const int textCtrlXAdjust
= wxPG_TEXTCTRLXADJUST
;
1622 finalPos
.x
+= textCtrlXAdjust
;
1623 finalPos
.width
-= textCtrlXAdjust
;
1625 finalPos
.x
+= offset
.x
;
1626 finalPos
.y
+= offset
.y
;
1628 ctrl
->SetSize(finalPos
);
1631 // -----------------------------------------------------------------------
1633 wxWindow
* wxPropertyGrid::GenerateEditorTextCtrl( const wxPoint
& pos
,
1635 const wxString
& value
,
1636 wxWindow
* secondary
,
1640 wxWindowID id
= wxPG_SUBID1
;
1641 wxPGProperty
* selected
= m_selected
;
1644 int tcFlags
= wxTE_PROCESS_ENTER
| extraStyle
;
1646 if ( selected
->HasFlag(wxPG_PROP_READONLY
) )
1647 tcFlags
|= wxTE_READONLY
;
1649 wxPoint
p(pos
.x
,pos
.y
);
1650 wxSize
s(sz
.x
,sz
.y
);
1652 // Need to reduce width of text control on Mac
1653 #if defined(__WXMAC__)
1657 // Take button into acccount
1660 s
.x
-= (secondary
->GetSize().x
+ wxPG_TEXTCTRL_AND_BUTTON_SPACING
);
1661 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
1664 // If the height is significantly higher, then use border, and fill the rect exactly.
1665 bool hasSpecialSize
= false;
1667 if ( (sz
.y
- m_lineHeight
) > 5 )
1668 hasSpecialSize
= true;
1670 wxWindow
* ctrlParent
= GetPanel();
1672 if ( !hasSpecialSize
)
1673 tcFlags
|= wxBORDER_NONE
;
1675 wxTextCtrl
* tc
= new wxTextCtrl();
1677 #if defined(__WXMSW__)
1680 SetupTextCtrlValue(value
);
1681 tc
->Create(ctrlParent
,id
,value
, p
, s
,tcFlags
);
1685 // Center the control vertically
1686 if ( !hasSpecialSize
)
1687 FixPosForTextCtrl(ed
);
1695 // Set maximum length
1697 tc
->SetMaxLength( maxLen
);
1699 return (wxWindow
*) ed
;
1702 // -----------------------------------------------------------------------
1704 wxWindow
* wxPropertyGrid::GenerateEditorButton( const wxPoint
& pos
, const wxSize
& sz
)
1706 wxWindowID id
= wxPG_SUBID2
;
1707 wxPGProperty
* selected
= m_selected
;
1711 // Decorations are chunky on Mac, and we can't make the button square, so
1712 // do things a bit differently on this platform.
1714 wxPoint
p(pos
.x
+sz
.x
,
1715 pos
.y
+wxPG_BUTTON_SIZEDEC
-wxPG_NAT_BUTTON_BORDER_Y
);
1718 wxButton
* but
= new wxButton();
1719 but
->Create(GetPanel(),id
,wxS("..."),p
,s
,wxWANTS_CHARS
);
1721 // Now that we know the size, move to the correct position
1722 p
.x
= pos
.x
+ sz
.x
- but
->GetSize().x
- 2;
1726 wxSize
s(sz
.y
-(wxPG_BUTTON_SIZEDEC
*2)+(wxPG_NAT_BUTTON_BORDER_Y
*2),
1727 sz
.y
-(wxPG_BUTTON_SIZEDEC
*2)+(wxPG_NAT_BUTTON_BORDER_Y
*2));
1729 // Reduce button width to lineheight
1730 if ( s
.x
> m_lineHeight
)
1734 // On wxGTK, take fixed button margins into account
1739 wxPoint
p(pos
.x
+sz
.x
-s
.x
,
1740 pos
.y
+wxPG_BUTTON_SIZEDEC
-wxPG_NAT_BUTTON_BORDER_Y
);
1742 wxButton
* but
= new wxButton();
1746 but
->Create(GetPanel(),id
,wxS("..."),p
,s
,wxWANTS_CHARS
);
1749 wxFont font
= GetFont();
1750 font
.SetPointSize(font
.GetPointSize()-2);
1753 but
->SetFont(GetFont());
1757 if ( selected
->HasFlag(wxPG_PROP_READONLY
) )
1763 // -----------------------------------------------------------------------
1765 wxWindow
* wxPropertyGrid::GenerateEditorTextCtrlAndButton( const wxPoint
& pos
,
1767 wxWindow
** psecondary
,
1769 wxPGProperty
* property
)
1771 wxButton
* but
= (wxButton
*)GenerateEditorButton(pos
,sz
);
1772 *psecondary
= (wxWindow
*)but
;
1774 if ( limitedEditing
)
1777 // There is button Show in GenerateEditorTextCtrl as well
1780 return (wxWindow
*) NULL
;
1785 if ( !property
->IsValueUnspecified() )
1786 text
= property
->GetValueAsString(property
->HasFlag(wxPG_PROP_READONLY
)?0:wxPG_EDITABLE_VALUE
);
1788 return GenerateEditorTextCtrl(pos
,sz
,text
,but
,property
->m_maxLen
);
1791 // -----------------------------------------------------------------------
1793 wxTextCtrl
* wxPropertyGrid::GetEditorTextCtrl() const
1795 wxWindow
* wnd
= GetEditorControl();
1800 if ( wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
1801 return wxStaticCast(wnd
, wxTextCtrl
);
1803 if ( wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
1805 wxOwnerDrawnComboBox
* cb
= wxStaticCast(wnd
, wxOwnerDrawnComboBox
);
1806 return cb
->GetTextCtrl();
1812 // -----------------------------------------------------------------------
1814 wxPGEditor
* wxPropertyGridInterface::GetEditorByName( const wxString
& editorName
)
1816 wxPGHashMapS2P::const_iterator it
;
1818 it
= wxPGGlobalVars
->m_mapEditorClasses
.find(editorName
);
1819 if ( it
== wxPGGlobalVars
->m_mapEditorClasses
.end() )
1821 return (wxPGEditor
*) it
->second
;
1824 // -----------------------------------------------------------------------
1825 // wxPGEditorDialogAdapter
1826 // -----------------------------------------------------------------------
1828 IMPLEMENT_ABSTRACT_CLASS(wxPGEditorDialogAdapter
, wxObject
)
1830 bool wxPGEditorDialogAdapter::ShowDialog( wxPropertyGrid
* propGrid
, wxPGProperty
* property
)
1832 if ( !propGrid
->EditorValidate() )
1835 bool res
= DoShowDialog( propGrid
, property
);
1839 propGrid
->ValueChangeInEvent( m_value
);
1846 // -----------------------------------------------------------------------
1848 // -----------------------------------------------------------------------
1850 wxPGMultiButton::wxPGMultiButton( wxPropertyGrid
* pg
, const wxSize
& sz
)
1851 : wxWindow( pg
->GetPanel(), wxPG_SUBID2
, wxPoint(-100,-100), wxSize(0, sz
.y
) ),
1852 m_fullEditorSize(sz
), m_buttonsWidth(0)
1854 SetBackgroundColour(pg
->GetCellBackgroundColour());
1857 void wxPGMultiButton::Finalize( wxPropertyGrid
* WXUNUSED(propGrid
),
1858 const wxPoint
& pos
)
1860 Move( pos
.x
+ m_fullEditorSize
.x
- m_buttonsWidth
, pos
.y
);
1863 int wxPGMultiButton::GenId( int id
) const
1867 if ( m_buttons
.size() )
1868 id
= GetButton(m_buttons
.size()-1)->GetId() + 1;
1876 void wxPGMultiButton::Add( const wxBitmap
& bitmap
, int id
)
1879 wxSize sz
= GetSize();
1880 wxButton
* button
= new wxBitmapButton( this, id
, bitmap
, wxPoint(sz
.x
, 0), wxSize(sz
.y
, sz
.y
) );
1881 m_buttons
.push_back(button
);
1882 int bw
= button
->GetSize().x
;
1883 SetSize(wxSize(sz
.x
+bw
,sz
.y
));
1884 m_buttonsWidth
+= bw
;
1888 void wxPGMultiButton::Add( const wxString
& label
, int id
)
1891 wxSize sz
= GetSize();
1892 wxButton
* button
= new wxButton( this, id
, label
, wxPoint(sz
.x
, 0), wxSize(sz
.y
, sz
.y
) );
1893 m_buttons
.push_back(button
);
1894 int bw
= button
->GetSize().x
;
1895 SetSize(wxSize(sz
.x
+bw
,sz
.y
));
1896 m_buttonsWidth
+= bw
;
1899 // -----------------------------------------------------------------------
1901 #endif // wxUSE_PROPGRID