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
,
173 wxPGProperty
* WXUNUSED(property
),
174 const wxString
& text
) const
176 dc
.DrawText( text
, rect
.x
+wxPG_XBEFORETEXT
, rect
.y
);
179 bool wxPGEditor::GetValueFromControl( wxVariant
&, wxPGProperty
*, wxWindow
* ) const
184 void wxPGEditor::SetControlStringValue( wxPGProperty
* WXUNUSED(property
), wxWindow
*, const wxString
& ) const
189 void wxPGEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
*, int ) const
194 int wxPGEditor::InsertItem( wxWindow
*, const wxString
&, int ) const
200 void wxPGEditor::DeleteItem( wxWindow
*, int ) const
206 void wxPGEditor::OnFocus( wxPGProperty
*, wxWindow
* ) const
210 void wxPGEditor::SetControlAppearance( wxPropertyGrid
* pg
,
211 wxPGProperty
* property
,
213 const wxPGCell
& cell
,
214 const wxPGCell
& oCell
,
215 bool WXUNUSED(unspecified
) ) const
217 // Get old editor appearance
218 wxTextCtrl
* tc
= NULL
;
219 wxComboCtrl
* cb
= NULL
;
220 if ( ctrl
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
222 tc
= (wxTextCtrl
*) ctrl
;
226 if ( ctrl
->IsKindOf(CLASSINFO(wxComboCtrl
)) )
228 cb
= (wxComboCtrl
*) ctrl
;
229 tc
= cb
->GetTextCtrl();
236 bool changeText
= false;
238 if ( cell
.HasText() && !pg
->IsEditorFocused() )
240 tcText
= cell
.GetText();
243 else if ( oCell
.HasText() )
245 tcText
= property
->GetValueAsString(
246 property
->HasFlag(wxPG_PROP_READONLY
)?0:wxPG_EDITABLE_VALUE
);
252 // This prevents value from being modified
255 pg
->SetupTextCtrlValue(tcText
);
256 tc
->SetValue(tcText
);
265 // Do not make the mistake of calling GetClassDefaultAttributes()
266 // here. It is static, while GetDefaultAttributes() is virtual
267 // and the correct one to use.
268 wxVisualAttributes vattrs
= ctrl
->GetDefaultAttributes();
271 const wxColour
& fgCol
= cell
.GetFgCol();
274 ctrl
->SetForegroundColour(fgCol
);
276 else if ( oCell
.GetFgCol().IsOk() )
278 ctrl
->SetForegroundColour(vattrs
.colFg
);
282 const wxColour
& bgCol
= cell
.GetBgCol();
285 ctrl
->SetBackgroundColour(bgCol
);
287 else if ( oCell
.GetBgCol().IsOk() )
289 ctrl
->SetBackgroundColour(vattrs
.colBg
);
293 const wxFont
& font
= cell
.GetFont();
298 else if ( oCell
.GetFont().IsOk() )
300 ctrl
->SetFont(vattrs
.font
);
303 // Also call the old SetValueToUnspecified()
304 SetValueToUnspecified(property
, ctrl
);
307 void wxPGEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
),
308 wxWindow
* WXUNUSED(ctrl
) ) const
312 bool wxPGEditor::CanContainCustomImage() const
317 // -----------------------------------------------------------------------
318 // wxPGTextCtrlEditor
319 // -----------------------------------------------------------------------
321 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(TextCtrl
,wxPGTextCtrlEditor
,wxPGEditor
)
324 wxPGWindowList
wxPGTextCtrlEditor::CreateControls( wxPropertyGrid
* propGrid
,
325 wxPGProperty
* property
,
327 const wxSize
& sz
) const
332 // If has children, and limited editing is specified, then don't create.
333 if ( (property
->GetFlags() & wxPG_PROP_NOEDITOR
) &&
334 property
->GetChildCount() )
338 if ( !property
->HasFlag(wxPG_PROP_READONLY
) &&
339 !property
->IsValueUnspecified() )
340 argFlags
|= wxPG_EDITABLE_VALUE
;
341 text
= property
->GetValueAsString(argFlags
);
344 if ( (property
->GetFlags() & wxPG_PROP_PASSWORD
) &&
345 property
->IsKindOf(CLASSINFO(wxStringProperty
)) )
346 flags
|= wxTE_PASSWORD
;
348 wxWindow
* wnd
= propGrid
->GenerateEditorTextCtrl(pos
,sz
,text
,NULL
,flags
,
349 property
->GetMaxLength());
355 void wxPGTextCtrlEditor::DrawValue( wxDC
& dc
, wxPGProperty
* property
, const wxRect
& rect
) const
357 if ( !property
->IsValueUnspecified() )
359 wxString drawStr
= property
->GetDisplayedString();
361 // Code below should no longer be needed, as the obfuscation
362 // is now done in GetValueAsString.
363 /*if ( (property->GetFlags() & wxPG_PROP_PASSWORD) &&
364 property->IsKindOf(WX_PG_CLASSINFO(wxStringProperty)) )
366 size_t a = drawStr.length();
368 drawStr.Append(wxS('*'),a);
370 dc
.DrawText( drawStr
, rect
.x
+wxPG_XBEFORETEXT
, rect
.y
);
375 void wxPGTextCtrlEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
377 wxTextCtrl
* tc
= wxDynamicCast(ctrl
, wxTextCtrl
);
382 if ( tc
->HasFlag(wxTE_PASSWORD
) )
383 s
= property
->GetValueAsString(wxPG_FULL_VALUE
);
385 s
= property
->GetDisplayedString();
387 wxPropertyGrid
* pg
= property
->GetGrid();
389 pg
->SetupTextCtrlValue(s
);
393 // Fix indentation, just in case (change in font boldness is one good
398 // Provided so that, for example, ComboBox editor can use the same code
399 // (multiple inheritance would get way too messy).
400 bool wxPGTextCtrlEditor::OnTextCtrlEvent( wxPropertyGrid
* propGrid
,
401 wxPGProperty
* WXUNUSED(property
),
408 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_ENTER
)
410 if ( propGrid
->IsEditorsValueModified() )
415 else if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
418 // Pass this event outside wxPropertyGrid so that,
419 // if necessary, program can tell when user is editing
421 // FIXME: Is it safe to change event id in the middle of event
422 // processing (seems to work, but...)?
424 event
.SetId(propGrid
->GetId());
426 propGrid
->EditorsValueWasModified();
432 bool wxPGTextCtrlEditor::OnEvent( wxPropertyGrid
* propGrid
,
433 wxPGProperty
* property
,
435 wxEvent
& event
) const
437 return wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid
,property
,ctrl
,event
);
441 bool wxPGTextCtrlEditor::GetTextCtrlValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
)
443 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
444 wxString textVal
= tc
->GetValue();
446 if ( property
->UsesAutoUnspecified() && !textVal
.length() )
452 bool res
= property
->StringToValue(variant
, textVal
, wxPG_EDITABLE_VALUE
);
454 // Changing unspecified always causes event (returning
455 // true here should be enough to trigger it).
456 // TODO: Move to propgrid.cpp
457 if ( !res
&& variant
.IsNull() )
464 bool wxPGTextCtrlEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
466 return wxPGTextCtrlEditor::GetTextCtrlValueFromControl(variant
, property
, ctrl
);
470 void wxPGTextCtrlEditor::SetControlStringValue( wxPGProperty
* property
, wxWindow
* ctrl
, const wxString
& txt
) const
472 wxTextCtrl
* tc
= wxStaticCast(ctrl
, wxTextCtrl
);
474 wxPropertyGrid
* pg
= property
->GetGrid();
475 wxASSERT(pg
); // Really, property grid should exist if editor does
478 pg
->SetupTextCtrlValue(txt
);
484 void wxPGTextCtrlEditor_OnFocus( wxPGProperty
* property
,
487 // Make sure there is correct text (instead of unspecified value
488 // indicator or hint text)
489 int flags
= property
->HasFlag(wxPG_PROP_READONLY
) ?
490 0 : wxPG_EDITABLE_VALUE
;
491 wxString correctText
= property
->GetValueAsString(flags
);
493 if ( tc
->GetValue() != correctText
)
495 property
->GetGrid()->SetupTextCtrlValue(correctText
);
496 tc
->SetValue(correctText
);
499 tc
->SetSelection(-1,-1);
502 void wxPGTextCtrlEditor::OnFocus( wxPGProperty
* property
,
503 wxWindow
* wnd
) const
505 wxTextCtrl
* tc
= wxStaticCast(wnd
, wxTextCtrl
);
506 wxPGTextCtrlEditor_OnFocus(property
, tc
);
509 wxPGTextCtrlEditor::~wxPGTextCtrlEditor() { }
512 // -----------------------------------------------------------------------
514 // -----------------------------------------------------------------------
517 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(Choice
,wxPGChoiceEditor
,wxPGEditor
)
520 // This is a special enhanced double-click processor class.
521 // In essence, it allows for double-clicks for which the
522 // first click "created" the control.
523 class wxPGDoubleClickProcessor
: public wxEvtHandler
527 wxPGDoubleClickProcessor( wxOwnerDrawnComboBox
* combo
, wxPGProperty
* property
)
530 m_timeLastMouseUp
= 0;
532 m_property
= property
;
533 m_downReceived
= false;
538 void OnMouseEvent( wxMouseEvent
& event
)
540 wxLongLong t
= ::wxGetLocalTimeMillis();
541 int evtType
= event
.GetEventType();
543 if ( m_property
->HasFlag(wxPG_PROP_USE_DCC
) &&
544 m_property
->IsKindOf(CLASSINFO(wxBoolProperty
)) &&
545 !m_combo
->IsPopupShown() )
547 // Just check that it is in the text area
548 wxPoint pt
= event
.GetPosition();
549 if ( m_combo
->GetTextRect().Contains(pt
) )
551 if ( evtType
== wxEVT_LEFT_DOWN
)
553 // Set value to avoid up-events without corresponding downs
554 m_downReceived
= true;
556 else if ( evtType
== wxEVT_LEFT_DCLICK
)
558 // We'll make our own double-clicks
559 event
.SetEventType(0);
562 else if ( evtType
== wxEVT_LEFT_UP
)
564 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
566 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
568 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
570 event
.SetEventType(wxEVT_LEFT_DCLICK
);
571 m_timeLastMouseUp
= 1;
575 m_timeLastMouseUp
= t
;
585 void OnSetFocus( wxFocusEvent
& event
)
587 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
592 wxLongLong m_timeLastMouseUp
;
593 wxOwnerDrawnComboBox
* m_combo
;
594 wxPGProperty
* m_property
; // Selected property
597 DECLARE_EVENT_TABLE()
600 BEGIN_EVENT_TABLE(wxPGDoubleClickProcessor
, wxEvtHandler
)
601 EVT_MOUSE_EVENTS(wxPGDoubleClickProcessor::OnMouseEvent
)
602 EVT_SET_FOCUS(wxPGDoubleClickProcessor::OnSetFocus
)
607 class wxPGComboBox
: public wxOwnerDrawnComboBox
612 : wxOwnerDrawnComboBox()
614 m_dclickProcessor
= NULL
;
615 m_sizeEventCalled
= false;
620 if ( m_dclickProcessor
)
622 RemoveEventHandler(m_dclickProcessor
);
623 delete m_dclickProcessor
;
627 bool Create(wxWindow
*parent
,
629 const wxString
& value
,
632 const wxArrayString
& choices
,
634 const wxValidator
& validator
= wxDefaultValidator
,
635 const wxString
& name
= wxS("wxOwnerDrawnComboBox"))
637 if ( !wxOwnerDrawnComboBox::Create( parent
,
648 m_dclickProcessor
= new
649 wxPGDoubleClickProcessor( this, GetGrid()->GetSelection() );
651 PushEventHandler(m_dclickProcessor
);
656 virtual void OnDrawItem( wxDC
& dc
,
661 wxPropertyGrid
* pg
= GetGrid();
663 // Handle hint text via super class
664 if ( (flags
& wxODCB_PAINTING_CONTROL
) &&
665 ShouldUseHintText(flags
) )
667 wxOwnerDrawnComboBox::OnDrawItem(dc
, rect
, item
, flags
);
671 pg
->OnComboItemPaint( this, item
, &dc
, (wxRect
&)rect
, flags
);
675 virtual wxCoord
OnMeasureItem( size_t item
) const
677 wxPropertyGrid
* pg
= GetGrid();
681 pg
->OnComboItemPaint( this, item
, NULL
, rect
, 0 );
685 wxPropertyGrid
* GetGrid() const
687 wxPropertyGrid
* pg
= wxDynamicCast(GetParent(),
693 virtual wxCoord
OnMeasureItemWidth( size_t item
) const
695 wxPropertyGrid
* pg
= GetGrid();
699 pg
->OnComboItemPaint( this, item
, NULL
, rect
, 0 );
703 virtual void PositionTextCtrl( int textCtrlXAdjust
,
704 int WXUNUSED(textCtrlYAdjust
) )
706 wxPropertyGrid
* pg
= GetGrid();
707 #ifdef wxPG_TEXTCTRLXADJUST
708 textCtrlXAdjust
= wxPG_TEXTCTRLXADJUST
-
709 (wxPG_XBEFOREWIDGET
+wxPG_CONTROL_MARGIN
+1) - 1,
711 wxOwnerDrawnComboBox::PositionTextCtrl(
713 pg
->GetSpacingY() + 2
718 wxPGDoubleClickProcessor
* m_dclickProcessor
;
719 bool m_sizeEventCalled
;
723 void wxPropertyGrid::OnComboItemPaint( const wxPGComboBox
* pCb
,
730 wxASSERT( IsKindOf(CLASSINFO(wxPropertyGrid
)) );
732 wxPGProperty
* p
= GetSelection();
735 const wxPGChoices
& choices
= p
->GetChoices();
736 const wxPGCommonValue
* comVal
= NULL
;
737 int comVals
= p
->GetDisplayedCommonValueCount();
738 int comValIndex
= -1;
741 if ( choices
.IsOk() )
742 choiceCount
= choices
.GetCount();
744 if ( item
>= choiceCount
&& comVals
> 0 )
746 comValIndex
= item
- choiceCount
;
747 comVal
= GetCommonValue(comValIndex
);
748 if ( !p
->IsValueUnspecified() )
749 text
= comVal
->GetLabel();
753 if ( !(flags
& wxODCB_PAINTING_CONTROL
) )
755 text
= pCb
->GetString(item
);
759 if ( !p
->IsValueUnspecified() )
760 text
= p
->GetValueAsString(0);
769 const wxBitmap
* itemBitmap
= NULL
;
771 if ( item
>= 0 && choices
.IsOk() && choices
.Item(item
).GetBitmap().Ok() && comValIndex
== -1 )
772 itemBitmap
= &choices
.Item(item
).GetBitmap();
775 // Decide what custom image size to use
778 cis
.x
= itemBitmap
->GetWidth();
779 cis
.y
= itemBitmap
->GetHeight();
783 cis
= GetImageSize(p
, item
);
788 // Default measure behaviour (no flexible, custom paint image only)
789 if ( rect
.width
< 0 )
792 pCb
->GetTextExtent(text
, &x
, &y
, 0, 0);
793 rect
.width
= cis
.x
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
+ 9 + x
;
796 rect
.height
= cis
.y
+ 2;
800 wxPGPaintData paintdata
;
801 paintdata
.m_parent
= NULL
;
802 paintdata
.m_choiceItem
= item
;
804 // This is by the current (1.0.0b) spec - if painting control, item is -1
805 if ( (flags
& wxODCB_PAINTING_CONTROL
) )
806 paintdata
.m_choiceItem
= -1;
809 pDc
->SetBrush(*wxWHITE_BRUSH
);
811 wxPGCellRenderer
* renderer
= NULL
;
812 const wxPGChoiceEntry
* cell
= NULL
;
820 wxPoint
pt(rect
.x
+ wxPG_CONTROL_MARGIN
- wxPG_CHOICEXADJUST
- 1,
823 int renderFlags
= wxPGCellRenderer::DontUseCellColours
;
824 bool useCustomPaintProcedure
;
826 // If custom image had some size, we will start from the assumption
827 // that custom paint procedure is required
829 useCustomPaintProcedure
= true;
831 useCustomPaintProcedure
= false;
833 if ( flags
& wxODCB_PAINTING_SELECTED
)
834 renderFlags
|= wxPGCellRenderer::Selected
;
836 if ( flags
& wxODCB_PAINTING_CONTROL
)
838 renderFlags
|= wxPGCellRenderer::Control
;
840 // If wxPG_PROP_CUSTOMIMAGE was set, then that means any custom
841 // image will not appear on the control row (it may be too
842 // large to fit, for instance). Also do not draw custom image
843 // if no choice was selected.
844 if ( !p
->HasFlag(wxPG_PROP_CUSTOMIMAGE
) || item
< 0 )
845 useCustomPaintProcedure
= false;
849 renderFlags
|= wxPGCellRenderer::ChoicePopup
;
852 // If not drawing a selected popup item, then give property's
853 // m_valueBitmap a chance.
854 if ( p
->m_valueBitmap
&& item
!= pCb
->GetSelection() )
855 useCustomPaintProcedure
= false;
856 // If current choice had a bitmap set by the application, then
857 // use it instead of any custom paint procedure.
858 else if ( itemBitmap
)
859 useCustomPaintProcedure
= false;
861 if ( useCustomPaintProcedure
)
863 pt
.x
+= wxCC_CUSTOM_IMAGE_MARGIN1
;
864 wxRect
r(pt
.x
,pt
.y
,cis
.x
,cis
.y
);
866 if ( flags
& wxODCB_PAINTING_CONTROL
)
869 r
.height
= wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight
);
872 paintdata
.m_drawnWidth
= r
.width
;
874 dc
.SetPen(m_colPropFore
);
875 if ( comValIndex
>= 0 )
877 const wxPGCommonValue
* cv
= GetCommonValue(comValIndex
);
878 wxPGCellRenderer
* renderer
= cv
->GetRenderer();
879 r
.width
= rect
.width
;
880 renderer
->Render( dc
, r
, this, p
, m_selColumn
, comValIndex
, renderFlags
);
883 else if ( item
>= 0 )
885 p
->OnCustomPaint( dc
, r
, paintdata
);
889 dc
.DrawRectangle( r
);
892 pt
.x
+= paintdata
.m_drawnWidth
+ wxCC_CUSTOM_IMAGE_MARGIN2
- 1;
896 // TODO: This aligns text so that it seems to be horizontally
897 // on the same line as property values. Not really
898 // sure if its needed, but seems to not cause any harm.
901 if ( item
< 0 && (flags
& wxODCB_PAINTING_CONTROL
) )
902 item
= pCb
->GetSelection();
904 if ( choices
.IsOk() && item
>= 0 && comValIndex
< 0 )
906 cell
= &choices
.Item(item
);
907 renderer
= wxPGGlobalVars
->m_defaultRenderer
;
908 int imageOffset
= renderer
->PreDrawCell(dc
, rect
, *cell
,
911 imageOffset
+= wxCC_CUSTOM_IMAGE_MARGIN1
+
912 wxCC_CUSTOM_IMAGE_MARGIN2
;
921 pt
.y
+= (rect
.height
-m_fontHeight
)/2 - 1;
925 dc
.DrawText( text
, pt
.x
+ wxPG_XBEFORETEXT
, pt
.y
);
928 renderer
->PostDrawCell(dc
, this, *cell
, renderFlags
);
936 p
->OnCustomPaint( dc
, rect
, paintdata
);
937 rect
.height
= paintdata
.m_drawnHeight
+ 2;
938 rect
.width
= cis
.x
+ wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
+ 9;
942 bool wxPGChoiceEditor_SetCustomPaintWidth( wxPropertyGrid
* propGrid
, wxPGComboBox
* cb
, int cmnVal
)
944 wxPGProperty
* property
= propGrid
->GetSelectedProperty();
945 wxASSERT( property
);
950 // TODO: Do this always when cell has custom text.
951 if ( property
->IsValueUnspecified() )
953 cb
->SetCustomPaintWidth( 0 );
959 // Yes, a common value is being selected
960 property
->SetCommonValue( cmnVal
);
961 imageSize
= propGrid
->GetCommonValue(cmnVal
)->
962 GetRenderer()->GetImageSize(property
, 1, cmnVal
);
967 imageSize
= propGrid
->GetImageSize(property
, -1);
972 imageSize
.x
+= ODCB_CUST_PAINT_MARGIN
;
973 cb
->SetCustomPaintWidth( imageSize
.x
);
978 // CreateControls calls this with CB_READONLY in extraStyle
979 wxWindow
* wxPGChoiceEditor::CreateControlsBase( wxPropertyGrid
* propGrid
,
980 wxPGProperty
* property
,
983 long extraStyle
) const
985 const wxPGChoices
& choices
= property
->GetChoices();
987 int index
= property
->GetChoiceSelection();
990 if ( !property
->HasFlag(wxPG_PROP_READONLY
) &&
991 !property
->IsValueUnspecified() )
992 argFlags
|= wxPG_EDITABLE_VALUE
;
993 defString
= property
->GetValueAsString(argFlags
);
995 wxArrayString labels
= choices
.GetLabels();
1001 po
.y
+= wxPG_CHOICEYADJUST
;
1002 si
.y
-= (wxPG_CHOICEYADJUST
*2);
1004 po
.x
+= wxPG_CHOICEXADJUST
;
1005 si
.x
-= wxPG_CHOICEXADJUST
;
1006 wxWindow
* ctrlParent
= propGrid
->GetPanel();
1008 int odcbFlags
= extraStyle
| wxBORDER_NONE
| wxTE_PROCESS_ENTER
;
1010 if ( (property
->GetFlags() & wxPG_PROP_USE_DCC
) &&
1011 (property
->IsKindOf(CLASSINFO(wxBoolProperty
)) ) )
1012 odcbFlags
|= wxODCB_DCLICK_CYCLES
;
1015 // If common value specified, use appropriate index
1016 unsigned int cmnVals
= property
->GetDisplayedCommonValueCount();
1019 if ( !property
->IsValueUnspecified() )
1021 int cmnVal
= property
->GetCommonValue();
1024 index
= labels
.size() + cmnVal
;
1029 for ( i
=0; i
<cmnVals
; i
++ )
1030 labels
.Add(propGrid
->GetCommonValueLabel(i
));
1033 cb
= new wxPGComboBox();
1037 cb
->Create(ctrlParent
,
1045 cb
->SetButtonPosition(si
.y
,0,wxRIGHT
);
1046 cb
->SetMargins(wxPG_XBEFORETEXT
-1);
1049 cb
->SetHint(property
->GetHintText());
1051 wxPGChoiceEditor_SetCustomPaintWidth( propGrid
, cb
,
1052 property
->GetCommonValue() );
1054 if ( index
>= 0 && index
< (int)cb
->GetCount() )
1056 cb
->SetSelection( index
);
1057 if ( defString
.length() )
1058 cb
->SetText( defString
);
1060 else if ( !(extraStyle
& wxCB_READONLY
) && defString
.length() )
1062 propGrid
->SetupTextCtrlValue(defString
);
1063 cb
->SetValue( defString
);
1067 cb
->SetSelection( -1 );
1074 return (wxWindow
*) cb
;
1078 void wxPGChoiceEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
1081 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1082 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
1083 int ind
= property
->GetChoiceSelection();
1084 cb
->SetSelection(ind
);
1087 wxPGWindowList
wxPGChoiceEditor::CreateControls( wxPropertyGrid
* propGrid
, wxPGProperty
* property
,
1088 const wxPoint
& pos
, const wxSize
& sz
) const
1090 return CreateControlsBase(propGrid
,property
,pos
,sz
,wxCB_READONLY
);
1094 int wxPGChoiceEditor::InsertItem( wxWindow
* ctrl
, const wxString
& label
, int index
) const
1097 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1098 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
1101 index
= cb
->GetCount();
1103 return cb
->Insert(label
,index
);
1107 void wxPGChoiceEditor::DeleteItem( wxWindow
* ctrl
, int index
) const
1110 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1111 wxASSERT( cb
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)));
1116 bool wxPGChoiceEditor::OnEvent( wxPropertyGrid
* propGrid
, wxPGProperty
* property
,
1117 wxWindow
* ctrl
, wxEvent
& event
) const
1119 if ( event
.GetEventType() == wxEVT_COMMAND_COMBOBOX_SELECTED
)
1121 wxPGComboBox
* cb
= (wxPGComboBox
*)ctrl
;
1122 int index
= cb
->GetSelection();
1123 int cmnValIndex
= -1;
1124 int cmnVals
= property
->GetDisplayedCommonValueCount();
1125 int items
= cb
->GetCount();
1127 if ( index
>= (items
-cmnVals
) )
1129 // Yes, a common value is being selected
1130 cmnValIndex
= index
- (items
-cmnVals
);
1131 property
->SetCommonValue( cmnValIndex
);
1133 // Truly set value to unspecified?
1134 if ( propGrid
->GetUnspecifiedCommonValue() == cmnValIndex
)
1136 if ( !property
->IsValueUnspecified() )
1137 propGrid
->SetInternalFlag(wxPG_FL_VALUE_CHANGE_IN_EVENT
);
1138 property
->SetValueToUnspecified();
1139 if ( !cb
->HasFlag(wxCB_READONLY
) )
1141 wxString unspecValueText
;
1142 unspecValueText
= propGrid
->GetUnspecifiedValueText();
1143 propGrid
->SetupTextCtrlValue(unspecValueText
);
1144 cb
->GetTextCtrl()->SetValue(unspecValueText
);
1149 return wxPGChoiceEditor_SetCustomPaintWidth( propGrid
, cb
, cmnValIndex
);
1155 bool wxPGChoiceEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1157 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1159 int index
= cb
->GetSelection();
1161 if ( index
!= property
->GetChoiceSelection() ||
1162 // Changing unspecified always causes event (returning
1163 // true here should be enough to trigger it).
1164 property
->IsValueUnspecified()
1167 return property
->IntToValue( variant
, index
, 0 );
1173 void wxPGChoiceEditor::SetControlStringValue( wxPGProperty
* property
,
1175 const wxString
& txt
) const
1177 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1179 property
->GetGrid()->SetupTextCtrlValue(txt
);
1184 void wxPGChoiceEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, int value
) const
1186 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1188 cb
->SetSelection(value
);
1192 void wxPGChoiceEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
),
1193 wxWindow
* ctrl
) const
1195 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1197 if ( cb
->HasFlag(wxCB_READONLY
) )
1198 cb
->SetSelection(-1);
1202 bool wxPGChoiceEditor::CanContainCustomImage() const
1208 wxPGChoiceEditor::~wxPGChoiceEditor() { }
1211 // -----------------------------------------------------------------------
1212 // wxPGComboBoxEditor
1213 // -----------------------------------------------------------------------
1216 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(ComboBox
,
1221 void wxPGComboBoxEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* ctrl
) const
1223 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1224 wxString s
= property
->GetValueAsString(wxPG_EDITABLE_VALUE
);
1225 property
->GetGrid()->SetupTextCtrlValue(s
);
1228 // TODO: If string matches any selection, then select that.
1232 wxPGWindowList
wxPGComboBoxEditor::CreateControls( wxPropertyGrid
* propGrid
,
1233 wxPGProperty
* property
,
1235 const wxSize
& sz
) const
1237 return CreateControlsBase(propGrid
,property
,pos
,sz
,0);
1241 bool wxPGComboBoxEditor::OnEvent( wxPropertyGrid
* propGrid
,
1242 wxPGProperty
* property
,
1244 wxEvent
& event
) const
1246 wxOwnerDrawnComboBox
* cb
= NULL
;
1247 wxWindow
* textCtrl
= NULL
;
1251 cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1252 textCtrl
= cb
->GetTextCtrl();
1255 if ( wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid
,property
,textCtrl
,event
) )
1258 return wxPGChoiceEditor::OnEvent(propGrid
,property
,ctrl
,event
);
1262 bool wxPGComboBoxEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1264 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1265 wxString textVal
= cb
->GetValue();
1267 if ( property
->UsesAutoUnspecified() && !textVal
.length() )
1273 bool res
= property
->StringToValue(variant
, textVal
, wxPG_EDITABLE_VALUE
);
1275 // Changing unspecified always causes event (returning
1276 // true here should be enough to trigger it).
1277 if ( !res
&& variant
.IsNull() )
1284 void wxPGComboBoxEditor::OnFocus( wxPGProperty
* property
,
1285 wxWindow
* ctrl
) const
1287 wxOwnerDrawnComboBox
* cb
= (wxOwnerDrawnComboBox
*)ctrl
;
1288 wxPGTextCtrlEditor_OnFocus(property
, cb
->GetTextCtrl());
1292 wxPGComboBoxEditor::~wxPGComboBoxEditor() { }
1295 // -----------------------------------------------------------------------
1296 // wxPGChoiceAndButtonEditor
1297 // -----------------------------------------------------------------------
1300 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(ChoiceAndButton
,
1301 wxPGChoiceAndButtonEditor
,
1305 wxPGWindowList
wxPGChoiceAndButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
1306 wxPGProperty
* property
,
1308 const wxSize
& sz
) const
1310 // Use one two units smaller to match size of the combo's dropbutton.
1311 // (normally a bigger button is used because it looks better)
1314 wxSize
bt_sz(bt_wid
,bt_wid
);
1316 // Position of button.
1317 wxPoint
bt_pos(pos
.x
+sz
.x
-bt_sz
.x
,pos
.y
);
1324 wxWindow
* bt
= propGrid
->GenerateEditorButton( bt_pos
, bt_sz
);
1327 wxSize
ch_sz(sz
.x
-bt
->GetSize().x
,sz
.y
);
1330 ch_sz
.x
-= wxPG_TEXTCTRL_AND_BUTTON_SPACING
;
1333 wxWindow
* ch
= wxPGEditor_Choice
->CreateControls(propGrid
,property
,
1334 pos
,ch_sz
).m_primary
;
1340 return wxPGWindowList(ch
, bt
);
1344 wxPGChoiceAndButtonEditor::~wxPGChoiceAndButtonEditor() { }
1347 // -----------------------------------------------------------------------
1348 // wxPGTextCtrlAndButtonEditor
1349 // -----------------------------------------------------------------------
1351 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(TextCtrlAndButton
,
1352 wxPGTextCtrlAndButtonEditor
,
1356 wxPGWindowList
wxPGTextCtrlAndButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
1357 wxPGProperty
* property
,
1359 const wxSize
& sz
) const
1362 wxWindow
* wnd
= propGrid
->GenerateEditorTextCtrlAndButton( pos
, sz
, &wnd2
,
1363 property
->GetFlags() & wxPG_PROP_NOEDITOR
, property
);
1365 return wxPGWindowList(wnd
, wnd2
);
1369 wxPGTextCtrlAndButtonEditor::~wxPGTextCtrlAndButtonEditor() { }
1372 // -----------------------------------------------------------------------
1373 // wxPGCheckBoxEditor
1374 // -----------------------------------------------------------------------
1376 #if wxPG_INCLUDE_CHECKBOX
1378 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(CheckBox
,
1383 // Check box state flags
1386 wxSCB_STATE_UNCHECKED
= 0,
1387 wxSCB_STATE_CHECKED
= 1,
1388 wxSCB_STATE_BOLD
= 2,
1389 wxSCB_STATE_UNSPECIFIED
= 4
1392 const int wxSCB_SETVALUE_CYCLE
= 2;
1395 static void DrawSimpleCheckBox( wxDC
& dc
, const wxRect
& rect
, int box_hei
,
1396 int state
, const wxColour
& lineCol
)
1399 wxRect
r(rect
.x
+wxPG_XBEFORETEXT
,rect
.y
+((rect
.height
-box_hei
)/2),
1401 wxColour useCol
= lineCol
;
1403 if ( state
& wxSCB_STATE_UNSPECIFIED
)
1405 useCol
= wxColour(220, 220, 220);
1408 // Draw check mark first because it is likely to overdraw the
1409 // surrounding rectangle.
1410 if ( state
& wxSCB_STATE_CHECKED
)
1412 wxRect
r2(r
.x
+wxPG_CHECKMARK_XADJ
,
1413 r
.y
+wxPG_CHECKMARK_YADJ
,
1414 r
.width
+wxPG_CHECKMARK_WADJ
,
1415 r
.height
+wxPG_CHECKMARK_HADJ
);
1416 #if wxPG_CHECKMARK_DEFLATE
1417 r2
.Deflate(wxPG_CHECKMARK_DEFLATE
);
1419 dc
.DrawCheckMark(r2
);
1421 // This would draw a simple cross check mark.
1422 // dc.DrawLine(r.x,r.y,r.x+r.width-1,r.y+r.height-1);
1423 // dc.DrawLine(r.x,r.y+r.height-1,r.x+r.width-1,r.y);
1426 if ( !(state
& wxSCB_STATE_BOLD
) )
1428 // Pen for thin rectangle.
1433 // Pen for bold rectangle.
1434 wxPen
linepen(useCol
,2,wxSOLID
);
1435 linepen
.SetJoin(wxJOIN_MITER
); // This prevents round edges.
1443 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1445 dc
.DrawRectangle(r
);
1446 dc
.SetPen(*wxTRANSPARENT_PEN
);
1450 // Real simple custom-drawn checkbox-without-label class.
1452 class wxSimpleCheckBox
: public wxControl
1456 void SetValue( int value
);
1458 wxSimpleCheckBox( wxWindow
* parent
,
1460 const wxPoint
& pos
= wxDefaultPosition
,
1461 const wxSize
& size
= wxDefaultSize
)
1462 : wxControl(parent
,id
,pos
,size
,wxBORDER_NONE
|wxWANTS_CHARS
)
1464 // Due to SetOwnFont stuff necessary for GTK+ 1.2, we need to have this
1465 SetFont( parent
->GetFont() );
1470 SetBackgroundStyle( wxBG_STYLE_CUSTOM
);
1473 virtual ~wxSimpleCheckBox();
1479 void OnPaint( wxPaintEvent
& event
);
1480 void OnLeftClick( wxMouseEvent
& event
);
1481 void OnKeyDown( wxKeyEvent
& event
);
1483 void OnResize( wxSizeEvent
& event
)
1489 static wxBitmap
* ms_doubleBuffer
;
1491 DECLARE_EVENT_TABLE()
1494 BEGIN_EVENT_TABLE(wxSimpleCheckBox
, wxControl
)
1495 EVT_PAINT(wxSimpleCheckBox::OnPaint
)
1496 EVT_LEFT_DOWN(wxSimpleCheckBox::OnLeftClick
)
1497 EVT_LEFT_DCLICK(wxSimpleCheckBox::OnLeftClick
)
1498 EVT_KEY_DOWN(wxSimpleCheckBox::OnKeyDown
)
1499 EVT_SIZE(wxSimpleCheckBox::OnResize
)
1502 wxSimpleCheckBox::~wxSimpleCheckBox()
1504 delete ms_doubleBuffer
;
1505 ms_doubleBuffer
= NULL
;
1508 wxBitmap
* wxSimpleCheckBox::ms_doubleBuffer
= NULL
;
1510 void wxSimpleCheckBox::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1512 wxSize clientSize
= GetClientSize();
1513 wxAutoBufferedPaintDC
dc(this);
1516 wxRect
rect(0,0,clientSize
.x
,clientSize
.y
);
1520 wxColour bgcol
= GetBackgroundColour();
1521 dc
.SetBrush( bgcol
);
1523 dc
.DrawRectangle( rect
);
1525 wxColour txcol
= GetForegroundColour();
1527 int state
= m_state
;
1528 if ( !(state
& wxSCB_STATE_UNSPECIFIED
) &&
1529 GetFont().GetWeight() == wxBOLD
)
1530 state
|= wxSCB_STATE_BOLD
;
1532 DrawSimpleCheckBox(dc
,rect
,m_boxHeight
,state
,txcol
);
1535 void wxSimpleCheckBox::OnLeftClick( wxMouseEvent
& event
)
1537 if ( (event
.m_x
> (wxPG_XBEFORETEXT
-2)) &&
1538 (event
.m_x
<= (wxPG_XBEFORETEXT
-2+m_boxHeight
)) )
1540 SetValue(wxSCB_SETVALUE_CYCLE
);
1544 void wxSimpleCheckBox::OnKeyDown( wxKeyEvent
& event
)
1546 if ( event
.GetKeyCode() == WXK_SPACE
)
1548 SetValue(wxSCB_SETVALUE_CYCLE
);
1552 void wxSimpleCheckBox::SetValue( int value
)
1554 if ( value
== wxSCB_SETVALUE_CYCLE
)
1556 if ( m_state
& wxSCB_STATE_CHECKED
)
1557 m_state
&= ~wxSCB_STATE_CHECKED
;
1559 m_state
|= wxSCB_STATE_CHECKED
;
1567 wxCommandEvent
evt(wxEVT_COMMAND_CHECKBOX_CLICKED
,GetParent()->GetId());
1569 wxPropertyGrid
* propGrid
= (wxPropertyGrid
*) GetParent();
1570 wxASSERT( propGrid
->IsKindOf(CLASSINFO(wxPropertyGrid
)) );
1571 propGrid
->HandleCustomEditorEvent(evt
);
1574 wxPGWindowList
wxPGCheckBoxEditor::CreateControls( wxPropertyGrid
* propGrid
,
1575 wxPGProperty
* property
,
1577 const wxSize
& size
) const
1580 pt
.x
-= wxPG_XBEFOREWIDGET
;
1582 sz
.x
= propGrid
->GetFontHeight() + (wxPG_XBEFOREWIDGET
*2) + 4;
1584 wxSimpleCheckBox
* cb
= new wxSimpleCheckBox(propGrid
->GetPanel(),
1585 wxPG_SUBID1
, pt
, sz
);
1587 cb
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
1589 UpdateControl(property
, cb
);
1591 if ( !property
->IsValueUnspecified() )
1593 // If mouse cursor was on the item, toggle the value now.
1594 if ( propGrid
->GetInternalFlags() & wxPG_FL_ACTIVATION_BY_CLICK
)
1596 wxPoint pt
= cb
->ScreenToClient(::wxGetMousePosition());
1597 if ( pt
.x
<= (wxPG_XBEFORETEXT
-2+cb
->m_boxHeight
) )
1599 if ( cb
->m_state
& wxSCB_STATE_CHECKED
)
1600 cb
->m_state
&= ~wxSCB_STATE_CHECKED
;
1602 cb
->m_state
|= wxSCB_STATE_CHECKED
;
1604 // Makes sure wxPG_EVT_CHANGING etc. is sent for this initial
1606 propGrid
->ChangePropertyValue(property
,
1607 wxPGVariant_Bool(cb
->m_state
));
1612 propGrid
->SetInternalFlag( wxPG_FL_FIXED_WIDTH_EDITOR
);
1617 void wxPGCheckBoxEditor::DrawValue( wxDC
& dc
, const wxRect
& rect
,
1618 wxPGProperty
* property
,
1619 const wxString
& WXUNUSED(text
) ) const
1621 int state
= wxSCB_STATE_UNCHECKED
;
1622 wxColour rectCol
= dc
.GetTextForeground();
1624 if ( !property
->IsValueUnspecified() )
1626 state
= property
->GetChoiceSelection();
1627 if ( dc
.GetFont().GetWeight() == wxBOLD
)
1628 state
|= wxSCB_STATE_BOLD
;
1632 state
|= wxSCB_STATE_UNSPECIFIED
;
1635 DrawSimpleCheckBox(dc
, rect
, dc
.GetCharHeight(), state
, rectCol
);
1638 void wxPGCheckBoxEditor::UpdateControl( wxPGProperty
* property
,
1639 wxWindow
* ctrl
) const
1641 wxSimpleCheckBox
* cb
= (wxSimpleCheckBox
*) ctrl
;
1644 if ( !property
->IsValueUnspecified() )
1645 cb
->m_state
= property
->GetChoiceSelection();
1647 cb
->m_state
= wxSCB_STATE_UNSPECIFIED
;
1649 wxPropertyGrid
* propGrid
= property
->GetGrid();
1650 cb
->m_boxHeight
= propGrid
->GetFontHeight();
1655 bool wxPGCheckBoxEditor::OnEvent( wxPropertyGrid
* WXUNUSED(propGrid
), wxPGProperty
* WXUNUSED(property
),
1656 wxWindow
* WXUNUSED(ctrl
), wxEvent
& event
) const
1658 if ( event
.GetEventType() == wxEVT_COMMAND_CHECKBOX_CLICKED
)
1666 bool wxPGCheckBoxEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* ctrl
) const
1668 wxSimpleCheckBox
* cb
= (wxSimpleCheckBox
*)ctrl
;
1670 int index
= cb
->m_state
;
1672 if ( index
!= property
->GetChoiceSelection() ||
1673 // Changing unspecified always causes event (returning
1674 // true here should be enough to trigger it).
1675 property
->IsValueUnspecified()
1678 return property
->IntToValue(variant
, index
, 0);
1684 void wxPGCheckBoxEditor::SetControlIntValue( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
, int value
) const
1686 if ( value
!= 0 ) value
= 1;
1687 ((wxSimpleCheckBox
*)ctrl
)->m_state
= value
;
1692 void wxPGCheckBoxEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* ctrl
) const
1694 ((wxSimpleCheckBox
*)ctrl
)->m_state
= wxSCB_STATE_UNSPECIFIED
;
1699 wxPGCheckBoxEditor::~wxPGCheckBoxEditor() { }
1702 #endif // wxPG_INCLUDE_CHECKBOX
1704 // -----------------------------------------------------------------------
1706 wxWindow
* wxPropertyGrid::GetEditorControl() const
1708 wxWindow
* ctrl
= m_wndEditor
;
1716 // -----------------------------------------------------------------------
1718 void wxPropertyGrid::CorrectEditorWidgetSizeX()
1721 int newSplitterx
= m_pState
->DoGetSplitterPosition(m_selColumn
-1);
1722 int newWidth
= newSplitterx
+ m_pState
->m_colWidths
[m_selColumn
];
1726 // if width change occurred, move secondary wnd by that amount
1727 wxRect r
= m_wndEditor2
->GetRect();
1729 r
.x
= newWidth
- secWid
;
1731 m_wndEditor2
->SetSize( r
);
1733 // if primary is textctrl, then we have to add some extra space
1737 if ( m_wndEditor
&& m_wndEditor
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
1739 secWid
+= wxPG_TEXTCTRL_AND_BUTTON_SPACING
;
1744 wxRect r
= m_wndEditor
->GetRect();
1746 r
.x
= newSplitterx
+m_ctrlXAdjust
;
1748 if ( !(m_iFlags
& wxPG_FL_FIXED_WIDTH_EDITOR
) )
1749 r
.width
= newWidth
- r
.x
- secWid
;
1751 m_wndEditor
->SetSize(r
);
1755 m_wndEditor2
->Refresh();
1758 // -----------------------------------------------------------------------
1760 void wxPropertyGrid::CorrectEditorWidgetPosY()
1762 if ( GetSelection() && (m_wndEditor
|| m_wndEditor2
) )
1764 wxRect r
= GetEditorWidgetRect(GetSelection(), m_selColumn
);
1768 wxPoint pos
= m_wndEditor
->GetPosition();
1770 // Calculate y offset
1771 int offset
= pos
.y
% m_lineHeight
;
1773 m_wndEditor
->Move(pos
.x
, r
.y
+ offset
);
1778 wxPoint pos
= m_wndEditor2
->GetPosition();
1780 m_wndEditor2
->Move(pos
.x
, r
.y
);
1785 // -----------------------------------------------------------------------
1787 // Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1788 // fits into that category as well).
1789 void wxPropertyGrid::FixPosForTextCtrl( wxWindow
* ctrl
,
1790 unsigned int WXUNUSED(forColumn
),
1791 const wxPoint
& offset
)
1793 // Center the control vertically
1794 wxRect finalPos
= ctrl
->GetRect();
1795 int y_adj
= (m_lineHeight
- finalPos
.height
)/2 + wxPG_TEXTCTRLYADJUST
;
1797 // Prevent over-sized control
1798 int sz_dec
= (y_adj
+ finalPos
.height
) - m_lineHeight
;
1799 if ( sz_dec
< 0 ) sz_dec
= 0;
1801 finalPos
.y
+= y_adj
;
1802 finalPos
.height
-= (y_adj
+sz_dec
);
1804 #ifndef wxPG_TEXTCTRLXADJUST
1805 int textCtrlXAdjust
= wxPG_XBEFORETEXT
- 1;
1807 wxTextCtrl
* tc
= static_cast<wxTextCtrl
*>(ctrl
);
1810 int textCtrlXAdjust
= wxPG_TEXTCTRLXADJUST
;
1813 finalPos
.x
+= textCtrlXAdjust
;
1814 finalPos
.width
-= textCtrlXAdjust
;
1816 finalPos
.x
+= offset
.x
;
1817 finalPos
.y
+= offset
.y
;
1819 ctrl
->SetSize(finalPos
);
1822 // -----------------------------------------------------------------------
1824 wxWindow
* wxPropertyGrid::GenerateEditorTextCtrl( const wxPoint
& pos
,
1826 const wxString
& value
,
1827 wxWindow
* secondary
,
1830 unsigned int forColumn
)
1832 wxWindowID id
= wxPG_SUBID1
;
1833 wxPGProperty
* prop
= GetSelection();
1836 int tcFlags
= wxTE_PROCESS_ENTER
| extraStyle
;
1838 if ( prop
->HasFlag(wxPG_PROP_READONLY
) && forColumn
== 1 )
1839 tcFlags
|= wxTE_READONLY
;
1841 wxPoint
p(pos
.x
,pos
.y
);
1842 wxSize
s(sz
.x
,sz
.y
);
1844 // Need to reduce width of text control on Mac
1845 #if defined(__WXMAC__)
1849 // For label editors, trim the size to allow better splitter grabbing
1850 if ( forColumn
!= 1 )
1853 // Take button into acccount
1856 s
.x
-= (secondary
->GetSize().x
+ wxPG_TEXTCTRL_AND_BUTTON_SPACING
);
1857 m_iFlags
&= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE
);
1860 // If the height is significantly higher, then use border, and fill the rect exactly.
1861 bool hasSpecialSize
= false;
1863 if ( (sz
.y
- m_lineHeight
) > 5 )
1864 hasSpecialSize
= true;
1866 wxWindow
* ctrlParent
= GetPanel();
1868 if ( !hasSpecialSize
)
1869 tcFlags
|= wxBORDER_NONE
;
1871 wxTextCtrl
* tc
= new wxTextCtrl();
1873 #if defined(__WXMSW__)
1876 SetupTextCtrlValue(value
);
1877 tc
->Create(ctrlParent
,id
,value
, p
, s
,tcFlags
);
1879 #if defined(__WXMSW__)
1880 // On Windows, we need to override read-only text ctrl's background
1881 // colour to white. One problem with native 'grey' background is that
1882 // tc->GetBackgroundColour() doesn't seem to return correct value
1884 if ( tcFlags
& wxTE_READONLY
)
1886 wxVisualAttributes vattrs
= tc
->GetDefaultAttributes();
1887 tc
->SetBackgroundColour(vattrs
.colBg
);
1891 // Center the control vertically
1892 if ( !hasSpecialSize
)
1893 FixPosForTextCtrl(tc
, forColumn
);
1895 if ( forColumn
!= 1 )
1897 tc
->SetBackgroundColour(m_colSelBack
);
1898 tc
->SetForegroundColour(m_colSelFore
);
1907 // Set maximum length
1909 tc
->SetMaxLength( maxLen
);
1911 wxVariant attrVal
= prop
->GetAttribute(wxPG_ATTR_AUTOCOMPLETE
);
1912 if ( !attrVal
.IsNull() )
1914 wxASSERT(attrVal
.GetType() == wxS("arrstring"));
1915 tc
->AutoComplete(attrVal
.GetArrayString());
1919 tc
->SetHint(prop
->GetHintText());
1924 // -----------------------------------------------------------------------
1926 wxWindow
* wxPropertyGrid::GenerateEditorButton( const wxPoint
& pos
, const wxSize
& sz
)
1928 wxWindowID id
= wxPG_SUBID2
;
1929 wxPGProperty
* selected
= GetSelection();
1933 // Decorations are chunky on Mac, and we can't make the button square, so
1934 // do things a bit differently on this platform.
1936 wxPoint
p(pos
.x
+sz
.x
,
1937 pos
.y
+wxPG_BUTTON_SIZEDEC
-wxPG_NAT_BUTTON_BORDER_Y
);
1940 wxButton
* but
= new wxButton();
1941 but
->Create(GetPanel(),id
,wxS("..."),p
,s
,wxWANTS_CHARS
);
1943 // Now that we know the size, move to the correct position
1944 p
.x
= pos
.x
+ sz
.x
- but
->GetSize().x
- 2;
1948 wxSize
s(sz
.y
-(wxPG_BUTTON_SIZEDEC
*2)+(wxPG_NAT_BUTTON_BORDER_Y
*2),
1949 sz
.y
-(wxPG_BUTTON_SIZEDEC
*2)+(wxPG_NAT_BUTTON_BORDER_Y
*2));
1951 // Reduce button width to lineheight
1952 if ( s
.x
> m_lineHeight
)
1956 // On wxGTK, take fixed button margins into account
1961 wxPoint
p(pos
.x
+sz
.x
-s
.x
,
1962 pos
.y
+wxPG_BUTTON_SIZEDEC
-wxPG_NAT_BUTTON_BORDER_Y
);
1964 wxButton
* but
= new wxButton();
1968 but
->Create(GetPanel(),id
,wxS("..."),p
,s
,wxWANTS_CHARS
);
1971 wxFont font
= GetFont();
1972 font
.SetPointSize(font
.GetPointSize()-2);
1975 but
->SetFont(GetFont());
1979 if ( selected
->HasFlag(wxPG_PROP_READONLY
) )
1985 // -----------------------------------------------------------------------
1987 wxWindow
* wxPropertyGrid::GenerateEditorTextCtrlAndButton( const wxPoint
& pos
,
1989 wxWindow
** psecondary
,
1991 wxPGProperty
* property
)
1993 wxButton
* but
= (wxButton
*)GenerateEditorButton(pos
,sz
);
1994 *psecondary
= (wxWindow
*)but
;
1996 if ( limitedEditing
)
1999 // There is button Show in GenerateEditorTextCtrl as well
2007 if ( !property
->IsValueUnspecified() )
2008 text
= property
->GetValueAsString(property
->HasFlag(wxPG_PROP_READONLY
)?0:wxPG_EDITABLE_VALUE
);
2010 return GenerateEditorTextCtrl(pos
,sz
,text
,but
,property
->m_maxLen
);
2013 // -----------------------------------------------------------------------
2015 void wxPropertyGrid::SetEditorAppearance( const wxPGCell
& cell
,
2018 wxPGProperty
* property
= GetSelection();
2021 wxWindow
* ctrl
= GetEditorControl();
2025 property
->GetEditorClass()->SetControlAppearance( this,
2032 m_editorAppearance
= cell
;
2035 // -----------------------------------------------------------------------
2037 wxTextCtrl
* wxPropertyGrid::GetEditorTextCtrl() const
2039 wxWindow
* wnd
= GetEditorControl();
2044 if ( wnd
->IsKindOf(CLASSINFO(wxTextCtrl
)) )
2045 return wxStaticCast(wnd
, wxTextCtrl
);
2047 if ( wnd
->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox
)) )
2049 wxOwnerDrawnComboBox
* cb
= wxStaticCast(wnd
, wxOwnerDrawnComboBox
);
2050 return cb
->GetTextCtrl();
2056 // -----------------------------------------------------------------------
2058 wxPGEditor
* wxPropertyGridInterface::GetEditorByName( const wxString
& editorName
)
2060 wxPGHashMapS2P::const_iterator it
;
2062 it
= wxPGGlobalVars
->m_mapEditorClasses
.find(editorName
);
2063 if ( it
== wxPGGlobalVars
->m_mapEditorClasses
.end() )
2065 return (wxPGEditor
*) it
->second
;
2068 // -----------------------------------------------------------------------
2069 // wxPGEditorDialogAdapter
2070 // -----------------------------------------------------------------------
2072 IMPLEMENT_ABSTRACT_CLASS(wxPGEditorDialogAdapter
, wxObject
)
2074 bool wxPGEditorDialogAdapter::ShowDialog( wxPropertyGrid
* propGrid
, wxPGProperty
* property
)
2076 if ( !propGrid
->EditorValidate() )
2079 bool res
= DoShowDialog( propGrid
, property
);
2083 propGrid
->ValueChangeInEvent( m_value
);
2090 // -----------------------------------------------------------------------
2092 // -----------------------------------------------------------------------
2094 wxPGMultiButton::wxPGMultiButton( wxPropertyGrid
* pg
, const wxSize
& sz
)
2095 : wxWindow( pg
->GetPanel(), wxPG_SUBID2
, wxPoint(-100,-100), wxSize(0, sz
.y
) ),
2096 m_fullEditorSize(sz
), m_buttonsWidth(0)
2098 SetBackgroundColour(pg
->GetCellBackgroundColour());
2101 void wxPGMultiButton::Finalize( wxPropertyGrid
* WXUNUSED(propGrid
),
2102 const wxPoint
& pos
)
2104 Move( pos
.x
+ m_fullEditorSize
.x
- m_buttonsWidth
, pos
.y
);
2107 int wxPGMultiButton::GenId( int id
) const
2111 if ( m_buttons
.size() )
2112 id
= GetButton(m_buttons
.size()-1)->GetId() + 1;
2120 void wxPGMultiButton::Add( const wxBitmap
& bitmap
, int id
)
2123 wxSize sz
= GetSize();
2124 wxButton
* button
= new wxBitmapButton( this, id
, bitmap
,
2126 wxSize(sz
.y
, sz
.y
) );
2127 DoAddButton( button
, sz
);
2131 void wxPGMultiButton::Add( const wxString
& label
, int id
)
2134 wxSize sz
= GetSize();
2135 wxButton
* button
= new wxButton( this, id
, label
, wxPoint(sz
.x
, 0),
2136 wxSize(sz
.y
, sz
.y
) );
2137 DoAddButton( button
, sz
);
2140 void wxPGMultiButton::DoAddButton( wxWindow
* button
,
2143 m_buttons
.push_back(button
);
2144 int bw
= button
->GetSize().x
;
2145 SetSize(wxSize(sz
.x
+bw
,sz
.y
));
2146 m_buttonsWidth
+= bw
;
2149 // -----------------------------------------------------------------------
2151 #endif // wxUSE_PROPGRID