1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/propgrid/advprops.cpp
3 // Purpose: wxPropertyGrid Advanced Properties (font, colour, etc.)
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/button.h"
35 #include "wx/cursor.h"
36 #include "wx/dialog.h"
37 #include "wx/settings.h"
38 #include "wx/msgdlg.h"
39 #include "wx/choice.h"
40 #include "wx/stattext.h"
41 #include "wx/textctrl.h"
42 #include "wx/scrolwin.h"
43 #include "wx/dirdlg.h"
44 #include "wx/combobox.h"
46 #include "wx/textdlg.h"
47 #include "wx/filedlg.h"
49 #include "wx/wxcrtvararg.h"
52 #define __wxPG_SOURCE_FILE__
54 #include "wx/propgrid/propgrid.h"
56 #if wxPG_INCLUDE_ADVPROPS
58 #include "wx/propgrid/advprops.h"
61 #include "wx/msw/private.h"
62 #include "wx/msw/dc.h"
65 // -----------------------------------------------------------------------
67 #if defined(__WXMSW__)
68 #define wxPG_CAN_DRAW_CURSOR 1
69 #elif defined(__WXGTK__)
70 #define wxPG_CAN_DRAW_CURSOR 0
71 #elif defined(__WXMAC__)
72 #define wxPG_CAN_DRAW_CURSOR 0
74 #define wxPG_CAN_DRAW_CURSOR 0
78 // -----------------------------------------------------------------------
80 // -----------------------------------------------------------------------
83 bool operator == (const wxFont
&, const wxFont
&)
88 // Implement dynamic class for type value.
89 IMPLEMENT_DYNAMIC_CLASS(wxColourPropertyValue
, wxObject
)
91 bool operator == (const wxColourPropertyValue
& a
, const wxColourPropertyValue
& b
)
93 return ( ( a
.m_colour
== b
.m_colour
) && (a
.m_type
== b
.m_type
) );
96 bool operator == (const wxArrayInt
& array1
, const wxArrayInt
& array2
)
98 if ( array1
.size() != array2
.size() )
101 for ( i
=0; i
<array1
.size(); i
++ )
103 if ( array1
[i
] != array2
[i
] )
109 // -----------------------------------------------------------------------
110 // wxSpinCtrl-based property editor
111 // -----------------------------------------------------------------------
116 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(SpinCtrl
,
121 // Trivial destructor.
122 wxPGSpinCtrlEditor::~wxPGSpinCtrlEditor()
127 // Create controls and initialize event handling.
128 wxPGWindowList
wxPGSpinCtrlEditor::CreateControls( wxPropertyGrid
* propgrid
, wxPGProperty
* property
,
129 const wxPoint
& pos
, const wxSize
& sz
) const
131 const int margin
= 1;
132 wxSize
butSz(18, sz
.y
);
133 wxSize
tcSz(sz
.x
- butSz
.x
- margin
, sz
.y
);
134 wxPoint
butPos(pos
.x
+ tcSz
.x
+ margin
, pos
.y
);
136 wxSpinButton
* wnd2
= new wxSpinButton();
140 wnd2
->Create( propgrid
->GetPanel(), wxPG_SUBID2
, butPos
, butSz
, wxSP_VERTICAL
);
142 wnd2
->SetRange( INT_MIN
, INT_MAX
);
145 wxWindowID id
= wnd2
->GetId();
146 wnd2
->Connect( id
, wxEVT_SCROLL_LINEUP
,
147 wxEventHandler(wxPropertyGrid::OnCustomEditorEvent
),
149 wnd2
->Connect( id
, wxEVT_SCROLL_LINEDOWN
,
150 wxEventHandler(wxPropertyGrid::OnCustomEditorEvent
),
153 // Let's add validator to make sure only numbers can be entered
154 wxTextValidator
validator(wxFILTER_NUMERIC
, &m_tempString
);
156 wxTextCtrl
* wnd1
= (wxTextCtrl
*) wxPGTextCtrlEditor::CreateControls( propgrid
, property
, pos
, tcSz
).m_primary
;
157 wnd1
->SetValidator(validator
);
159 wnd1
->Connect( wnd1
->GetId(), wxEVT_KEY_DOWN
,
160 wxEventHandler(wxPropertyGrid::OnCustomEditorEvent
),
163 return wxPGWindowList(wnd1
, wnd2
);
166 // Control's events are redirected here
167 bool wxPGSpinCtrlEditor::OnEvent( wxPropertyGrid
* propgrid
, wxPGProperty
* property
,
168 wxWindow
* wnd
, wxEvent
& event
) const
170 int evtType
= event
.GetEventType();
172 bool bigStep
= false;
174 if ( evtType
== wxEVT_KEY_DOWN
)
176 wxKeyEvent
& keyEvent
= (wxKeyEvent
&)event
;
177 keycode
= keyEvent
.GetKeyCode();
179 if ( keycode
== WXK_UP
)
180 evtType
= wxEVT_SCROLL_LINEUP
;
181 else if ( keycode
== WXK_DOWN
)
182 evtType
= wxEVT_SCROLL_LINEDOWN
;
183 else if ( keycode
== WXK_PAGEUP
)
185 evtType
= wxEVT_SCROLL_LINEUP
;
188 else if ( keycode
== WXK_PAGEDOWN
)
190 evtType
= wxEVT_SCROLL_LINEDOWN
;
195 if ( evtType
== wxEVT_SCROLL_LINEUP
|| evtType
== wxEVT_SCROLL_LINEDOWN
)
198 // Can't use wnd since it might be clipper window
199 wxTextCtrl
* tc
= wxDynamicCast(propgrid
->GetEditorControl(), wxTextCtrl
);
204 s
= property
->GetValueAsString(wxPG_FULL_VALUE
);
206 int mode
= wxPG_PROPERTY_VALIDATION_SATURATE
;
208 if ( property
->GetAttributeAsLong(wxT("Wrap"), 0) )
209 mode
= wxPG_PROPERTY_VALIDATION_WRAP
;
211 if ( property
->GetValueType() == wxT("double") )
214 double step
= property
->GetAttributeAsDouble(wxT("Step"), 1.0);
217 if ( s
.ToDouble(&v_d
) )
222 if ( evtType
== wxEVT_SCROLL_LINEUP
) v_d
+= step
;
226 wxFloatProperty::DoValidation(property
, v_d
, NULL
, mode
);
228 wxPropertyGrid::DoubleToString(s
, v_d
, 6, true, NULL
);
238 wxLongLong_t step
= property
->GetAttributeAsLong(wxT("Step"), 1);
241 if ( s
.ToLongLong(&v_ll
, 10) )
246 if ( evtType
== wxEVT_SCROLL_LINEUP
) v_ll
+= step
;
250 wxIntProperty::DoValidation(property
, v_ll
, NULL
, mode
);
252 s
= wxLongLong(v_ll
).ToString();
262 int ip
= tc
->GetInsertionPoint();
263 int lp
= tc
->GetLastPosition();
265 tc
->SetInsertionPoint(ip
+(tc
->GetLastPosition()-lp
));
271 return wxPGTextCtrlEditor::OnEvent(propgrid
,property
,wnd
,event
);
274 #endif // wxUSE_SPINBTN
277 // -----------------------------------------------------------------------
278 // wxDatePickerCtrl-based property editor
279 // -----------------------------------------------------------------------
281 #if wxUSE_DATEPICKCTRL
284 #include "wx/datectrl.h"
285 #include "wx/dateevt.h"
287 class wxPGDatePickerCtrlEditor
: public wxPGEditor
289 DECLARE_DYNAMIC_CLASS(wxPGDatePickerCtrlEditor
)
291 virtual ~wxPGDatePickerCtrlEditor();
293 wxString
GetName() const;
294 virtual wxPGWindowList
CreateControls(wxPropertyGrid
* propgrid
,
295 wxPGProperty
* property
,
297 const wxSize
& size
) const;
298 virtual void UpdateControl( wxPGProperty
* property
, wxWindow
* wnd
) const;
299 virtual bool OnEvent( wxPropertyGrid
* propgrid
, wxPGProperty
* property
,
300 wxWindow
* wnd
, wxEvent
& event
) const;
301 virtual bool GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* wnd
) const;
302 virtual void SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* wnd
) const;
306 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(DatePickerCtrl
,
307 wxPGDatePickerCtrlEditor
,
311 wxPGDatePickerCtrlEditor::~wxPGDatePickerCtrlEditor()
315 wxPGWindowList
wxPGDatePickerCtrlEditor::CreateControls( wxPropertyGrid
* propgrid
,
316 wxPGProperty
* property
,
318 const wxSize
& sz
) const
320 wxCHECK_MSG( property
->IsKindOf(CLASSINFO(wxDateProperty
)),
322 wxT("DatePickerCtrl editor can only be used with wxDateProperty or derivative.") );
324 wxDateProperty
* prop
= (wxDateProperty
*) property
;
326 // Use two stage creation to allow cleaner display on wxMSW
327 wxDatePickerCtrl
* ctrl
= new wxDatePickerCtrl();
330 wxSize useSz
= wxDefaultSize
;
335 ctrl
->Create(propgrid
->GetPanel(),
337 prop
->GetDateValue(),
340 prop
->GetDatePickerStyle() | wxNO_BORDER
);
342 // Connect all required events to grid's OnCustomEditorEvent
343 // (all relevenat wxTextCtrl, wxComboBox and wxButton events are
344 // already connected)
345 ctrl
->Connect( wxPG_SUBID1
, wxEVT_DATE_CHANGED
,
346 wxEventHandler(wxPropertyGrid::OnCustomEditorEvent
),
356 // Copies value from property to control
357 void wxPGDatePickerCtrlEditor::UpdateControl( wxPGProperty
* property
, wxWindow
* wnd
) const
359 wxDatePickerCtrl
* ctrl
= (wxDatePickerCtrl
*) wnd
;
360 wxASSERT( ctrl
&& ctrl
->IsKindOf(CLASSINFO(wxDatePickerCtrl
)) );
362 // We assume that property's data type is 'int' (or something similar),
363 // thus allowing us to get raw, unchecked value via DoGetValue.
364 ctrl
->SetValue( property
->GetValue().GetDateTime() );
367 // Control's events are redirected here
368 bool wxPGDatePickerCtrlEditor::OnEvent( wxPropertyGrid
* WXUNUSED(propgrid
),
369 wxPGProperty
* WXUNUSED(property
),
370 wxWindow
* WXUNUSED(wnd
),
371 wxEvent
& event
) const
373 if ( event
.GetEventType() == wxEVT_DATE_CHANGED
)
379 bool wxPGDatePickerCtrlEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* WXUNUSED(property
), wxWindow
* wnd
) const
381 wxDatePickerCtrl
* ctrl
= (wxDatePickerCtrl
*) wnd
;
382 wxASSERT( ctrl
&& ctrl
->IsKindOf(CLASSINFO(wxDatePickerCtrl
)) );
384 variant
= ctrl
->GetValue();
389 void wxPGDatePickerCtrlEditor::SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* WXUNUSED(wnd
) ) const
392 //wxDateProperty* prop = (wxDateProperty*) property;
396 #endif // wxUSE_DATEPICKCTRL
399 // -----------------------------------------------------------------------
401 // -----------------------------------------------------------------------
403 #include "wx/fontdlg.h"
404 #include "wx/fontenum.h"
406 static const wxChar
* gs_fp_es_family_labels
[] = {
407 wxT("Default"), wxT("Decorative"),
408 wxT("Roman"), wxT("Script"),
409 wxT("Swiss"), wxT("Modern"),
413 static long gs_fp_es_family_values
[] = {
414 wxDEFAULT
, wxDECORATIVE
,
419 static const wxChar
* gs_fp_es_style_labels
[] = {
426 static long gs_fp_es_style_values
[] = {
432 static const wxChar
* gs_fp_es_weight_labels
[] = {
439 static long gs_fp_es_weight_values
[] = {
445 // Class body is in advprops.h
448 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxFontProperty
,wxPGProperty
,
449 wxFont
,const wxFont
&,TextCtrlAndButton
)
452 wxFontProperty::wxFontProperty( const wxString
& label
, const wxString
& name
,
453 const wxFont
& value
)
454 : wxPGProperty(label
,name
)
456 SetValue(WXVARIANT(value
));
458 // Initialize font family choices list
459 if ( !wxPGGlobalVars
->m_fontFamilyChoices
)
461 wxFontEnumerator enumerator
;
462 enumerator
.EnumerateFacenames();
464 #if wxMINOR_VERSION > 6
465 wxArrayString faceNames
= enumerator
.GetFacenames();
467 wxArrayString
& faceNames
= *enumerator
.GetFacenames();
472 wxPGGlobalVars
->m_fontFamilyChoices
= new wxPGChoices(faceNames
);
475 wxString
emptyString(wxEmptyString
);
480 SetParentalType(wxPG_PROP_AGGREGATE
);
482 AddChild( new wxIntProperty( _("Point Size"), wxS("Point Size"),(long)font
.GetPointSize() ) );
484 AddChild( new wxEnumProperty(_("Family"), wxS("PointSize"),
485 gs_fp_es_family_labels
,gs_fp_es_family_values
,
488 wxString faceName
= font
.GetFaceName();
489 // If font was not in there, add it now
490 if ( faceName
.length() &&
491 wxPGGlobalVars
->m_fontFamilyChoices
->Index(faceName
) == wxNOT_FOUND
)
492 wxPGGlobalVars
->m_fontFamilyChoices
->AddAsSorted(faceName
);
494 wxPGProperty
* p
= new wxEnumProperty(_("Face Name"), wxS("Face Name"),
495 *wxPGGlobalVars
->m_fontFamilyChoices
);
497 p
->SetValueFromString(faceName
, wxPG_FULL_VALUE
);
501 AddChild( new wxEnumProperty(_("Style"), wxS("Style"),
502 gs_fp_es_style_labels
,gs_fp_es_style_values
,font
.GetStyle()) );
504 AddChild( new wxEnumProperty(_("Weight"), wxS("Weight"),
505 gs_fp_es_weight_labels
,gs_fp_es_weight_values
,font
.GetWeight()) );
507 AddChild( new wxBoolProperty(_("Underlined"), wxS("Underlined"),
508 font
.GetUnderlined()) );
511 wxFontProperty::~wxFontProperty() { }
513 void wxFontProperty::OnSetValue()
520 font
= wxFont(10,wxSWISS
,wxNORMAL
,wxNORMAL
);
525 wxString
wxFontProperty::ValueToString( wxVariant
& value
,
528 return wxPGProperty::ValueToString(value
, argFlags
);
531 bool wxFontProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* WXUNUSED(primary
),
534 if ( propgrid
->IsMainButtonEvent(event
) )
536 // Update value from last minute changes
537 wxVariant useValue
= propgrid
->GetUncommittedPropertyValue();
542 data
.SetInitialFont( font
);
543 data
.SetColour(*wxBLACK
);
545 wxFontDialog
dlg(propgrid
, data
);
546 if ( dlg
.ShowModal() == wxID_OK
)
548 propgrid
->EditorsValueWasModified();
551 variant
<< dlg
.GetFontData().GetChosenFont();
552 SetValueInEvent( variant
);
559 void wxFontProperty::RefreshChildren()
561 if ( !GetChildCount() ) return;
564 Item(0)->SetValue( (long)font
.GetPointSize() );
565 Item(1)->SetValue( (long)font
.GetFamily() );
566 Item(2)->SetValueFromString( font
.GetFaceName(), wxPG_FULL_VALUE
);
567 Item(3)->SetValue( (long)font
.GetStyle() );
568 Item(4)->SetValue( (long)font
.GetWeight() );
569 Item(5)->SetValue( font
.GetUnderlined() );
572 void wxFontProperty::ChildChanged( wxVariant
& thisValue
, int ind
, wxVariant
& childValue
) const
579 font
.SetPointSize( wxPGVariantToInt(childValue
) );
583 int fam
= childValue
.GetLong();
584 if ( fam
< wxDEFAULT
||
587 font
.SetFamily( fam
);
592 int faceIndex
= childValue
.GetLong();
594 if ( faceIndex
>= 0 )
595 faceName
= wxPGGlobalVars
->m_fontFamilyChoices
->GetLabel(faceIndex
);
597 font
.SetFaceName( faceName
);
601 int st
= childValue
.GetLong();
602 if ( st
!= wxFONTSTYLE_NORMAL
&&
603 st
!= wxFONTSTYLE_SLANT
&&
604 st
!= wxFONTSTYLE_ITALIC
)
605 st
= wxFONTWEIGHT_NORMAL
;
610 int wt
= childValue
.GetLong();
611 if ( wt
!= wxFONTWEIGHT_NORMAL
&&
612 wt
!= wxFONTWEIGHT_LIGHT
&&
613 wt
!= wxFONTWEIGHT_BOLD
)
614 wt
= wxFONTWEIGHT_NORMAL
;
615 font
.SetWeight( wt
);
619 font
.SetUnderlined( childValue
.GetBool() );
626 wxSize wxFontProperty::OnMeasureImage() const
628 return wxSize(-1,-1);
631 void wxFontProperty::OnCustomPaint(wxDC& dc,
633 wxPGPaintData& paintData)
636 if ( paintData.m_choiceItem >= 0 )
637 drawFace = wxPGGlobalVars->m_fontFamilyChoices->GetLabel(paintData.m_choiceItem);
639 drawFace = m_value_wxFont.GetFaceName();
641 if ( drawFace.length() )
643 // Draw the background
644 dc.SetBrush( wxColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)) );
645 //dc.SetBrush( *wxWHITE_BRUSH );
646 //dc.SetPen( *wxMEDIUM_GREY_PEN );
647 dc.DrawRectangle( rect );
649 wxFont oldFont = dc.GetFont();
650 wxFont drawFont(oldFont.GetPointSize(),
651 wxDEFAULT,wxNORMAL,wxBOLD,false,drawFace);
652 dc.SetFont(drawFont);
654 dc.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNTEXT) );
655 dc.DrawText( wxT("Aa"), rect.x+2, rect.y+1 );
661 // No file - just draw a white box
662 dc.SetBrush ( *wxWHITE_BRUSH );
663 dc.DrawRectangle ( rect );
669 // -----------------------------------------------------------------------
670 // wxSystemColourProperty
671 // -----------------------------------------------------------------------
673 // wxEnumProperty based classes cannot use wxPG_PROP_CLASS_SPECIFIC_1
674 #define wxPG_PROP_HIDE_CUSTOM_COLOUR wxPG_PROP_CLASS_SPECIFIC_2
676 #include "wx/colordlg.h"
678 //#define wx_cp_es_syscolours_len 25
679 static const wxChar
* gs_cp_es_syscolour_labels
[] = {
682 wxT("ActiveCaption"),
684 wxT("ButtonHighlight"),
693 wxT("HighlightText"),
694 wxT("InactiveBorder"),
695 wxT("InactiveCaption"),
696 wxT("InactiveCaptionText"),
708 static long gs_cp_es_syscolour_values
[] = {
709 wxSYS_COLOUR_APPWORKSPACE
,
710 wxSYS_COLOUR_ACTIVEBORDER
,
711 wxSYS_COLOUR_ACTIVECAPTION
,
712 wxSYS_COLOUR_BTNFACE
,
713 wxSYS_COLOUR_BTNHIGHLIGHT
,
714 wxSYS_COLOUR_BTNSHADOW
,
715 wxSYS_COLOUR_BTNTEXT
,
716 wxSYS_COLOUR_CAPTIONTEXT
,
717 wxSYS_COLOUR_3DDKSHADOW
,
718 wxSYS_COLOUR_3DLIGHT
,
719 wxSYS_COLOUR_BACKGROUND
,
720 wxSYS_COLOUR_GRAYTEXT
,
721 wxSYS_COLOUR_HIGHLIGHT
,
722 wxSYS_COLOUR_HIGHLIGHTTEXT
,
723 wxSYS_COLOUR_INACTIVEBORDER
,
724 wxSYS_COLOUR_INACTIVECAPTION
,
725 wxSYS_COLOUR_INACTIVECAPTIONTEXT
,
727 wxSYS_COLOUR_SCROLLBAR
,
729 wxSYS_COLOUR_INFOTEXT
,
731 wxSYS_COLOUR_WINDOWFRAME
,
732 wxSYS_COLOUR_WINDOWTEXT
,
737 IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxColourPropertyValue
, WXDLLIMPEXP_PROPGRID
)
740 // Class body is in advprops.h
742 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxSystemColourProperty
,wxEnumProperty
,
743 wxColourPropertyValue
,const wxColourPropertyValue
&,Choice
)
746 void wxSystemColourProperty::Init( int type
, const wxColour
& colour
)
748 wxColourPropertyValue cpv
;
751 cpv
.Init( type
, colour
);
753 cpv
.Init( type
, *wxWHITE
);
755 m_flags
|= wxPG_PROP_STATIC_CHOICES
; // Colour selection cannot be changed.
763 static wxPGChoices gs_wxSystemColourProperty_choicesCache
;
766 wxSystemColourProperty::wxSystemColourProperty( const wxString
& label
, const wxString
& name
,
767 const wxColourPropertyValue
& value
)
768 : wxEnumProperty( label
,
770 gs_cp_es_syscolour_labels
,
771 gs_cp_es_syscolour_values
,
772 &gs_wxSystemColourProperty_choicesCache
)
775 Init( value
.m_type
, value
.m_colour
);
777 Init( wxPG_COLOUR_CUSTOM
, *wxWHITE
);
781 wxSystemColourProperty::wxSystemColourProperty( const wxString
& label
, const wxString
& name
,
782 const wxChar
** labels
, const long* values
, wxPGChoices
* choicesCache
,
783 const wxColourPropertyValue
& value
)
784 : wxEnumProperty( label
, name
, labels
, values
, choicesCache
)
787 Init( value
.m_type
, value
.m_colour
);
789 Init( wxPG_COLOUR_CUSTOM
, *wxWHITE
);
793 wxSystemColourProperty::wxSystemColourProperty( const wxString
& label
, const wxString
& name
,
794 const wxChar
** labels
, const long* values
, wxPGChoices
* choicesCache
,
795 const wxColour
& value
)
796 : wxEnumProperty( label
, name
, labels
, values
, choicesCache
)
799 Init( wxPG_COLOUR_CUSTOM
, value
);
801 Init( wxPG_COLOUR_CUSTOM
, *wxWHITE
);
805 wxSystemColourProperty::~wxSystemColourProperty() { }
808 wxColourPropertyValue
wxSystemColourProperty::GetVal( const wxVariant
* pVariant
) const
813 if ( pVariant
->IsNull() )
814 return wxColourPropertyValue(wxPG_COLOUR_UNSPECIFIED
, wxColour());
816 if ( pVariant
->GetType() == wxS("wxColourPropertyValue") )
818 wxColourPropertyValue v
;
824 bool variantProcessed
= true;
826 if ( pVariant
->GetType() == wxS("wxColour*") )
828 wxColour
* pCol
= wxStaticCast(pVariant
->GetWxObjectPtr(), wxColour
);
831 else if ( pVariant
->GetType() == wxS("wxColour") )
835 else if ( pVariant
->GetType() == wxArrayInt_VariantType
)
837 // This code is mostly needed for wxPython bindings, which
838 // may offer tuple of integers as colour value.
842 if ( arr
.size() >= 3 )
850 if ( arr
.size() >= 4 )
853 col
= wxColour(r
, g
, b
, a
);
857 variantProcessed
= false;
862 variantProcessed
= false;
865 if ( !variantProcessed
)
866 return wxColourPropertyValue(wxPG_COLOUR_UNSPECIFIED
, wxColour());
868 wxColourPropertyValue
v2( wxPG_COLOUR_CUSTOM
, col
);
870 int colInd
= ColToInd(col
);
871 if ( colInd
!= wxNOT_FOUND
)
877 wxVariant
wxSystemColourProperty::DoTranslateVal( wxColourPropertyValue
& v
) const
884 int wxSystemColourProperty::ColToInd( const wxColour
& colour
) const
887 size_t i_max
= m_choices
.GetCount() - 1;
889 for ( i
=0; i
<i_max
; i
++ )
891 int ind
= m_choices
[i
].GetValue();
893 if ( colour
== GetColour(ind
) )
895 /*wxLogDebug(wxT("%s(%s): Index %i for ( getcolour(%i,%i,%i), colour(%i,%i,%i))"),
896 GetClassName(),GetLabel().c_str(),
897 (int)i,(int)GetColour(ind).Red(),(int)GetColour(ind).Green(),(int)GetColour(ind).Blue(),
898 (int)colour.Red(),(int)colour.Green(),(int)colour.Blue());*/
906 static inline wxColour
wxColourFromPGLong( long col
)
908 return wxColour((col
&0xFF),((col
>>8)&0xFF),((col
>>16)&0xFF));
912 void wxSystemColourProperty::OnSetValue()
914 // Convert from generic wxobject ptr to wxPGVariantDataColour
915 if ( m_value
.GetType() == wxS("wxColour*") )
917 wxColour
* pCol
= wxStaticCast(m_value
.GetWxObjectPtr(), wxColour
);
921 wxColourPropertyValue val
= GetVal(&m_value
);
923 if ( val
.m_type
== wxPG_COLOUR_UNSPECIFIED
)
931 if ( val
.m_type
< wxPG_COLOUR_WEB_BASE
)
932 val
.m_colour
= GetColour( val
.m_type
);
934 m_value
= TranslateVal(val
);
939 if ( m_value
.GetType() == wxS("wxColourPropertyValue") )
941 wxColourPropertyValue cpv
;
943 wxColour col
= cpv
.m_colour
;
947 SetValueToUnspecified();
948 SetIndex(wxNOT_FOUND
);
952 if ( cpv
.m_type
< wxPG_COLOUR_WEB_BASE
)
954 ind
= GetIndexForValue(cpv
.m_type
);
958 cpv
.m_type
= wxPG_COLOUR_CUSTOM
;
959 ind
= GetCustomColourIndex();
969 SetValueToUnspecified();
970 SetIndex(wxNOT_FOUND
);
976 if ( ind
== wxNOT_FOUND
)
977 ind
= GetCustomColourIndex();
984 wxColour
wxSystemColourProperty::GetColour( int index
) const
986 return wxSystemSettings::GetColour( (wxSystemColour
)index
);
989 wxString
wxSystemColourProperty::ColourToString( const wxColour
& col
, int index
) const
991 if ( index
== wxNOT_FOUND
)
992 return wxString::Format(wxT("(%i,%i,%i)"),
997 return m_choices
.GetLabel(index
);
1000 wxString
wxSystemColourProperty::ValueToString( wxVariant
& value
,
1001 int argFlags
) const
1003 wxColourPropertyValue val
= GetVal(&value
);
1007 if ( argFlags
& wxPG_VALUE_IS_CURRENT
)
1009 // GetIndex() only works reliably if wxPG_VALUE_IS_CURRENT flag is set,
1010 // but we should use it whenever possible.
1013 // If custom colour was selected, use invalid index, so that
1014 // ColourToString() will return properly formatted colour text.
1015 if ( index
== GetCustomColourIndex() )
1016 index
= wxNOT_FOUND
;
1020 index
= m_choices
.Index(val
.m_type
);
1023 return ColourToString(val
.m_colour
, index
);
1027 wxSize
wxSystemColourProperty::OnMeasureImage( int ) const
1029 return wxPG_DEFAULT_IMAGE_SIZE
;
1033 int wxSystemColourProperty::GetCustomColourIndex() const
1035 return m_choices
.GetCount() - 1;
1039 bool wxSystemColourProperty::QueryColourFromUser( wxVariant
& variant
) const
1041 wxASSERT( m_value
.GetType() != wxPG_VARIANT_TYPE_STRING
);
1044 wxPropertyGrid
* propgrid
= GetGrid();
1045 wxASSERT( propgrid
);
1047 // Must only occur when user triggers event
1048 if ( !(propgrid
->GetInternalFlags() & wxPG_FL_IN_ONCUSTOMEDITOREVENT
) )
1051 wxColourPropertyValue val
= GetVal();
1053 val
.m_type
= wxPG_COLOUR_CUSTOM
;
1056 data
.SetChooseFull(true);
1057 data
.SetColour(val
.m_colour
);
1059 for ( i
= 0; i
< 16; i
++)
1061 wxColour
colour(i
*16, i
*16, i
*16);
1062 data
.SetCustomColour(i
, colour
);
1065 wxColourDialog
dialog(propgrid
, &data
);
1066 if ( dialog
.ShowModal() == wxID_OK
)
1068 wxColourData retData
= dialog
.GetColourData();
1069 val
.m_colour
= retData
.GetColour();
1071 variant
= DoTranslateVal(val
);
1073 SetValueInEvent(variant
);
1082 bool wxSystemColourProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
1085 int type
= GetValueForIndex(index
);
1087 if ( type
== wxPG_COLOUR_CUSTOM
)
1089 QueryColourFromUser(variant
);
1093 variant
= TranslateVal( type
, GetColour(type
) );
1099 // Need to do some extra event handling.
1100 bool wxSystemColourProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* WXUNUSED(primary
), wxEvent
& event
)
1102 if ( propgrid
->IsMainButtonEvent(event
) )
1104 // We need to handle button click in case editor has been
1105 // switched to one that has wxButton as well.
1107 if ( QueryColourFromUser(variant
) )
1113 /*class wxPGColourPropertyRenderer : public wxPGDefaultRenderer
1116 virtual void Render( wxDC& dc, const wxRect& rect,
1117 const wxPropertyGrid* propertyGrid, wxPGProperty* property,
1118 int WXUNUSED(column), int item, int WXUNUSED(flags) ) const
1120 wxASSERT( property->IsKindOf(CLASSINFO(wxSystemColourProperty)) );
1121 wxSystemColourProperty* prop = wxStaticCast(property, wxSystemColourProperty);
1123 dc.SetPen(*wxBLACK_PEN);
1125 ( item < (int)(GetCustomColourIndex) || (prop->HasFlag(wxPG_PROP_HIDE_CUSTOM_COLOUR)))
1129 const wxArrayInt& values = prop->GetValues();
1130 if ( values.GetChildCount() )
1131 colInd = values[item];
1134 dc.SetBrush( wxColour( prop->GetColour( colInd ) ) );
1136 else if ( !prop->IsValueUnspecified() )
1137 dc.SetBrush( prop->GetVal().m_colour );
1139 dc.SetBrush( *wxWHITE );
1141 wxRect imageRect = propertyGrid->GetImageRect(property, item);
1142 wxLogDebug(wxT("%i, %i"),imageRect.x,imageRect.y);
1143 dc.DrawRectangle( rect.x+imageRect.x, rect.y+imageRect.y,
1144 imageRect.width, imageRect.height );
1148 text = property->GetValueAsString();
1150 text = property->GetChoiceString(item);
1151 DrawText( dc, rect, imageRect.width, text );
1156 wxPGColourPropertyRenderer g_wxPGColourPropertyRenderer;
1158 wxPGCellRenderer* wxSystemColourProperty::GetCellRenderer( int column ) const
1161 return &g_wxPGColourPropertyRenderer;
1162 return wxEnumProperty::GetCellRenderer(column);
1165 void wxSystemColourProperty::OnCustomPaint( wxDC
& dc
, const wxRect
& rect
,
1166 wxPGPaintData
& paintdata
)
1170 if ( paintdata
.m_choiceItem
>= 0 && paintdata
.m_choiceItem
< (int)m_choices
.GetCount() &&
1171 paintdata
.m_choiceItem
!= GetCustomColourIndex() )
1173 int colInd
= m_choices
[paintdata
.m_choiceItem
].GetValue();
1174 col
= GetColour( colInd
);
1176 else if ( !IsValueUnspecified() )
1178 col
= GetVal().m_colour
;
1184 dc
.DrawRectangle(rect
);
1189 bool wxSystemColourProperty::StringToValue( wxVariant
& value
, const wxString
& text
, int argFlags
) const
1192 // Accept colour format "[Name] [(R,G,B)]"
1193 // Name takes precedence.
1195 wxString colourName
;
1198 int ppos
= text
.Find(wxT("("));
1200 if ( ppos
== wxNOT_FOUND
)
1206 colourName
= text
.substr(0, ppos
);
1207 colourRGB
= text
.substr(ppos
, text
.length()-ppos
);
1210 // Strip spaces from extremities
1211 colourName
.Trim(true);
1212 colourName
.Trim(false);
1213 colourRGB
.Trim(true);
1215 // Validate colourRGB string - (1,1,1) is shortest allowed
1216 if ( colourRGB
.length() < 7 )
1219 if ( colourRGB
.length() == 0 && m_choices
.GetCount() &&
1220 colourName
== m_choices
.GetLabel(GetCustomColourIndex()) )
1222 if ( !(argFlags
& wxPG_EDITABLE_VALUE
))
1224 // This really should not occurr...
1230 QueryColourFromUser(value
);
1234 wxColourPropertyValue val
;
1238 if ( colourName
.length() )
1240 // Try predefined colour first
1241 bool res
= wxEnumProperty::StringToValue(value
, colourName
, argFlags
);
1242 if ( res
&& GetIndex() >= 0 )
1244 val
.m_type
= GetIndex();
1245 if ( val
.m_type
>= 0 && val
.m_type
< m_choices
.GetCount() )
1246 val
.m_type
= m_choices
[val
.m_type
].GetValue();
1248 // Get proper colour for type.
1249 val
.m_colour
= GetColour(val
.m_type
);
1254 if ( colourRGB
.length() && !done
)
1256 // Then check custom colour.
1257 val
.m_type
= wxPG_COLOUR_CUSTOM
;
1259 int r
= -1, g
= -1, b
= -1;
1260 wxSscanf(colourRGB
.c_str(),wxT("(%i,%i,%i)"),&r
,&g
,&b
);
1262 if ( r
>= 0 && r
<= 255 &&
1263 g
>= 0 && g
<= 255 &&
1264 b
>= 0 && b
<= 255 )
1266 val
.m_colour
.Set(r
,g
,b
);
1278 value
= DoTranslateVal(val
);
1285 bool wxSystemColourProperty::DoSetAttribute( const wxString
& name
, wxVariant
& value
)
1287 if ( name
== wxPG_COLOUR_ALLOW_CUSTOM
)
1289 int ival
= wxPGVariantToInt(value
);
1291 SetChoicesExclusive(); // Make sure we don't corrupt colour lists of other properties
1293 if ( ival
&& (m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1295 // Show custom choice
1296 m_choices
.Insert(wxT("Custom"), GetCustomColourIndex(), wxPG_COLOUR_CUSTOM
);
1297 m_flags
&= ~(wxPG_PROP_HIDE_CUSTOM_COLOUR
);
1299 else if ( !ival
&& !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1301 // Hide custom choice
1302 m_choices
.RemoveAt(GetCustomColourIndex());
1303 m_flags
|= wxPG_PROP_HIDE_CUSTOM_COLOUR
;
1311 // -----------------------------------------------------------------------
1313 // -----------------------------------------------------------------------
1315 static const wxChar
* gs_cp_es_normcolour_labels
[] = {
1335 (const wxChar
*) NULL
1338 static unsigned long gs_cp_es_normcolour_colours
[] = {
1340 wxPG_COLOUR(128,0,0),
1341 wxPG_COLOUR(0,0,128),
1342 wxPG_COLOUR(128,0,128),
1343 wxPG_COLOUR(0,128,128),
1344 wxPG_COLOUR(128,128,128),
1345 wxPG_COLOUR(0,128,0),
1346 wxPG_COLOUR(128,128,0),
1347 wxPG_COLOUR(166,124,81),
1348 wxPG_COLOUR(0,0,255),
1349 wxPG_COLOUR(255,0,255),
1350 wxPG_COLOUR(255,0,0),
1351 wxPG_COLOUR(247,148,28),
1352 wxPG_COLOUR(192,192,192),
1353 wxPG_COLOUR(0,255,0),
1354 wxPG_COLOUR(0,255,255),
1355 wxPG_COLOUR(255,255,0),
1356 wxPG_COLOUR(255,255,255),
1360 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxColourProperty
, wxSystemColourProperty
,
1361 wxColour
, const wxColour
&, TextCtrlAndButton
)
1363 static wxPGChoices gs_wxColourProperty_choicesCache
;
1365 wxColourProperty::wxColourProperty( const wxString
& label
,
1366 const wxString
& name
,
1367 const wxColour
& value
)
1368 : wxSystemColourProperty(label
, name
, gs_cp_es_normcolour_labels
,
1370 &gs_wxColourProperty_choicesCache
, value
)
1374 m_flags
|= wxPG_PROP_TRANSLATE_CUSTOM
;
1377 wxColourProperty::~wxColourProperty()
1381 void wxColourProperty::Init( wxColour colour
)
1388 int ind
= ColToInd(colour
);
1390 ind
= m_choices
.GetCount() - 1;
1394 wxString
wxColourProperty::ValueToString( wxVariant
& value
,
1395 int argFlags
) const
1397 const wxPGEditor
* editor
= GetEditorClass();
1398 if ( editor
!= wxPGEditor_Choice
&&
1399 editor
!= wxPGEditor_ChoiceAndButton
&&
1400 editor
!= wxPGEditor_ComboBox
)
1401 argFlags
|= wxPG_PROPERTY_SPECIFIC
;
1403 return wxSystemColourProperty::ValueToString(value
, argFlags
);
1406 wxColour
wxColourProperty::GetColour( int index
) const
1408 return gs_cp_es_normcolour_colours
[m_choices
.GetValue(index
)];
1411 wxVariant
wxColourProperty::DoTranslateVal( wxColourPropertyValue
& v
) const
1414 variant
<< v
.m_colour
;
1418 // -----------------------------------------------------------------------
1420 // -----------------------------------------------------------------------
1422 #define wxPG_CURSOR_IMAGE_WIDTH 32
1424 #define NUM_CURSORS 28
1426 //#define wx_cp_es_syscursors_len 28
1427 static const wxChar
* gs_cp_es_syscursors_labels
[NUM_CURSORS
+1] = {
1439 wxT("Middle Button"),
1445 wxT("Question Arrow"),
1446 wxT("Right Button"),
1447 wxT("Sizing NE-SW"),
1449 wxT("Sizing NW-SE"),
1456 (const wxChar
*) NULL
1459 static long gs_cp_es_syscursors_values
[NUM_CURSORS
] = {
1462 wxCURSOR_RIGHT_ARROW
,
1469 wxCURSOR_LEFT_BUTTON
,
1471 wxCURSOR_MIDDLE_BUTTON
,
1473 wxCURSOR_PAINT_BRUSH
,
1475 wxCURSOR_POINT_LEFT
,
1476 wxCURSOR_POINT_RIGHT
,
1477 wxCURSOR_QUESTION_ARROW
,
1478 wxCURSOR_RIGHT_BUTTON
,
1490 IMPLEMENT_DYNAMIC_CLASS(wxCursorProperty
, wxEnumProperty
)
1492 wxCursorProperty::wxCursorProperty( const wxString
& label
, const wxString
& name
,
1494 : wxEnumProperty( label
,
1496 gs_cp_es_syscursors_labels
,
1497 gs_cp_es_syscursors_values
,
1500 m_flags
|= wxPG_PROP_STATIC_CHOICES
; // Cursor selection cannot be changed.
1503 wxCursorProperty::~wxCursorProperty()
1507 wxSize
wxCursorProperty::OnMeasureImage( int item
) const
1509 #if wxPG_CAN_DRAW_CURSOR
1510 if ( item
!= -1 && item
< NUM_CURSORS
)
1511 return wxSize(wxPG_CURSOR_IMAGE_WIDTH
,wxPG_CURSOR_IMAGE_WIDTH
);
1518 #if wxPG_CAN_DRAW_CURSOR
1520 void wxCursorProperty::OnCustomPaint( wxDC
& dc
,
1522 wxPGPaintData
& paintdata
)
1525 dc
.SetBrush( wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
) );
1527 if ( paintdata
.m_choiceItem
>= 0 )
1529 dc
.DrawRectangle( rect
);
1531 if ( paintdata
.m_choiceItem
< NUM_CURSORS
)
1533 wxStockCursor cursorIndex
=
1534 (wxStockCursor
) gs_cp_es_syscursors_values
[paintdata
.m_choiceItem
];
1537 if ( cursorIndex
== wxCURSOR_NONE
)
1538 cursorIndex
= wxCURSOR_ARROW
;
1540 wxCursor
cursor( cursorIndex
);
1543 HDC hDc
= (HDC
)((const wxMSWDCImpl
*)dc
.GetImpl())->GetHDC();
1547 (HICON
)cursor
.GetHandle(),
1552 DI_COMPAT
| DI_DEFAULTSIZE
| DI_NORMAL
1561 void wxCursorProperty::OnCustomPaint( wxDC
&, const wxRect
&, wxPGPaintData
& ) { }
1562 /*wxPGCellRenderer* wxCursorProperty::GetCellRenderer( int column ) const
1564 return wxEnumProperty::GetCellRenderer(column);
1568 // -----------------------------------------------------------------------
1569 // wxImageFileProperty
1570 // -----------------------------------------------------------------------
1574 const wxString
& wxPGGetDefaultImageWildcard()
1576 // Form the wildcard, if not done yet
1577 if ( !wxPGGlobalVars
->m_pDefaultImageWildcard
.length() )
1582 // TODO: This section may require locking (using global).
1584 wxList
& handlers
= wxImage::GetHandlers();
1586 wxList::iterator node
;
1588 // Let's iterate over the image handler list.
1589 //for ( wxList::Node *node = handlers.GetFirst(); node; node = node->GetNext() )
1590 for ( node
= handlers
.begin(); node
!= handlers
.end(); node
++ )
1592 wxImageHandler
*handler
= (wxImageHandler
*)*node
;
1594 wxString ext_lo
= handler
->GetExtension();
1595 wxString ext_up
= ext_lo
.Upper();
1597 str
.append( ext_up
);
1598 str
.append( wxT(" files (*.") );
1599 str
.append( ext_up
);
1600 str
.append( wxT(")|*.") );
1601 str
.append( ext_lo
);
1602 str
.append( wxT("|") );
1605 str
.append ( wxT("All files (*.*)|*.*") );
1607 wxPGGlobalVars
->m_pDefaultImageWildcard
= str
;
1610 return wxPGGlobalVars
->m_pDefaultImageWildcard
;
1613 IMPLEMENT_DYNAMIC_CLASS(wxImageFileProperty
, wxFileProperty
)
1615 wxImageFileProperty::wxImageFileProperty( const wxString
& label
, const wxString
& name
,
1616 const wxString
& value
)
1617 : wxFileProperty(label
,name
,value
)
1619 SetAttribute( wxPG_FILE_WILDCARD
, wxPGGetDefaultImageWildcard() );
1621 m_pImage
= (wxImage
*) NULL
;
1622 m_pBitmap
= (wxBitmap
*) NULL
;
1625 wxImageFileProperty::~wxImageFileProperty()
1633 void wxImageFileProperty::OnSetValue()
1635 wxFileProperty::OnSetValue();
1649 wxFileName filename
= GetFileName();
1651 // Create the image thumbnail
1652 if ( filename
.FileExists() )
1654 m_pImage
= new wxImage( filename
.GetFullPath() );
1658 wxSize
wxImageFileProperty::OnMeasureImage( int ) const
1660 return wxPG_DEFAULT_IMAGE_SIZE
;
1663 void wxImageFileProperty::OnCustomPaint( wxDC
& dc
,
1667 if ( m_pBitmap
|| (m_pImage
&& m_pImage
->Ok() ) )
1669 // Draw the thumbnail
1671 // Create the bitmap here because required size is not known in OnSetValue().
1674 m_pImage
->Rescale( rect
.width
, rect
.height
);
1675 m_pBitmap
= new wxBitmap( *m_pImage
);
1680 dc
.DrawBitmap( *m_pBitmap
, rect
.x
, rect
.y
, false );
1684 // No file - just draw a white box
1685 dc
.SetBrush( *wxWHITE_BRUSH
);
1686 dc
.DrawRectangle ( rect
);
1690 #endif // wxUSE_IMAGE
1692 // -----------------------------------------------------------------------
1693 // wxMultiChoiceProperty
1694 // -----------------------------------------------------------------------
1698 #include "wx/choicdlg.h"
1700 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxMultiChoiceProperty
,wxPGProperty
,
1701 wxArrayInt
,const wxArrayInt
&,TextCtrlAndButton
)
1703 wxMultiChoiceProperty::wxMultiChoiceProperty( const wxString
& label
,
1704 const wxString
& name
,
1705 const wxPGChoices
& choices
,
1706 const wxArrayString
& value
)
1707 : wxPGProperty(label
,name
)
1709 m_choices
.Assign(choices
);
1713 wxMultiChoiceProperty::wxMultiChoiceProperty( const wxString
& label
,
1714 const wxString
& name
,
1715 const wxArrayString
& strings
,
1716 const wxArrayString
& value
)
1717 : wxPGProperty(label
,name
)
1719 m_choices
.Set(strings
);
1723 wxMultiChoiceProperty::wxMultiChoiceProperty( const wxString
& label
,
1724 const wxString
& name
,
1725 const wxArrayString
& value
)
1726 : wxPGProperty(label
,name
)
1728 wxArrayString strings
;
1729 m_choices
.Set(strings
);
1733 wxMultiChoiceProperty::~wxMultiChoiceProperty()
1737 void wxMultiChoiceProperty::OnSetValue()
1739 GenerateValueAsString(m_value
, &m_display
);
1742 wxString
wxMultiChoiceProperty::ValueToString( wxVariant
& value
,
1743 int argFlags
) const
1745 // If possible, use cached string
1746 if ( argFlags
& wxPG_VALUE_IS_CURRENT
)
1750 GenerateValueAsString(value
, &s
);
1754 void wxMultiChoiceProperty::GenerateValueAsString( wxVariant
& value
,
1755 wxString
* target
) const
1757 wxArrayString strings
;
1759 if ( value
.GetType() == wxPG_VARIANT_TYPE_ARRSTRING
)
1760 strings
= value
.GetArrayString();
1762 wxString
& tempStr
= *target
;
1764 unsigned int itemCount
= strings
.size();
1769 tempStr
.append( wxT("\"") );
1771 for ( i
= 0; i
< itemCount
; i
++ )
1773 tempStr
.append( strings
[i
] );
1774 tempStr
.append( wxT("\"") );
1775 if ( i
< (itemCount
-1) )
1776 tempStr
.append ( wxT(" \"") );
1780 wxArrayInt
wxMultiChoiceProperty::GetValueAsIndices() const
1782 const wxArrayInt
& valueArr
= wxArrayIntRefFromVariant(GetValue());
1785 // Translate values to string indices.
1786 wxArrayInt selections
;
1788 if ( !m_choices
.IsOk() || !m_choices
.GetCount() || !(&valueArr
) )
1790 for ( i
=0; i
<valueArr
.size(); i
++ )
1795 for ( i
=0; i
<valueArr
.size(); i
++ )
1797 int sIndex
= m_choices
.Index(valueArr
[i
]);
1799 selections
.Add(sIndex
);
1806 bool wxMultiChoiceProperty::OnEvent( wxPropertyGrid
* propgrid
,
1807 wxWindow
* WXUNUSED(primary
),
1810 if ( propgrid
->IsMainButtonEvent(event
) )
1813 wxVariant useValue
= propgrid
->GetUncommittedPropertyValue();
1815 wxArrayString labels
= m_choices
.GetLabels();
1816 unsigned int choiceCount
;
1818 if ( m_choices
.IsOk() )
1819 choiceCount
= m_choices
.GetCount();
1823 // launch editor dialog
1824 wxMultiChoiceDialog
dlg( propgrid
,
1825 _("Make a selection:"),
1828 choiceCount
?&labels
[0]:NULL
,
1829 wxCHOICEDLG_STYLE
);
1831 dlg
.Move( propgrid
->GetGoodEditorDialogPosition(this,dlg
.GetSize()) );
1833 wxArrayString strings
= useValue
.GetArrayString();
1834 wxArrayString extraStrings
;
1836 dlg
.SetSelections(m_choices
.GetIndicesForStrings(strings
, &extraStrings
));
1838 if ( dlg
.ShowModal() == wxID_OK
&& choiceCount
)
1840 int userStringMode
= GetAttributeAsLong(wxT("UserStringMode"), 0);
1842 wxArrayInt arrInt
= dlg
.GetSelections();
1846 // Strings that were not in list of choices
1847 wxArrayString value
;
1849 // Translate string indices to strings
1852 if ( userStringMode
== 1 )
1854 for (n
=0;n
<extraStrings
.size();n
++)
1855 value
.push_back(extraStrings
[n
]);
1859 for ( i
=0; i
<arrInt
.size(); i
++ )
1860 value
.Add(m_choices
.GetLabel(arrInt
.Item(i
)));
1862 if ( userStringMode
== 2 )
1864 for (n
=0;n
<extraStrings
.size();n
++)
1865 value
.push_back(extraStrings
[n
]);
1868 variant
= WXVARIANT(value
);
1870 SetValueInEvent(variant
);
1878 bool wxMultiChoiceProperty::StringToValue( wxVariant
& variant
, const wxString
& text
, int ) const
1882 int userStringMode
= GetAttributeAsLong(wxT("UserStringMode"), 0);
1884 WX_PG_TOKENIZER2_BEGIN(text
,wxT('"'))
1885 if ( userStringMode
> 0 || (m_choices
.IsOk() && m_choices
.Index( token
) != wxNOT_FOUND
) )
1887 WX_PG_TOKENIZER2_END()
1889 wxVariant
v( WXVARIANT(arr
) );
1895 #endif // wxUSE_CHOICEDLG
1898 // -----------------------------------------------------------------------
1900 // -----------------------------------------------------------------------
1905 #if wxUSE_DATEPICKCTRL
1906 #define dtCtrl DatePickerCtrl
1908 #define dtCtrl TextCtrl
1911 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxDateProperty
,
1918 wxString
wxDateProperty::ms_defaultDateFormat
;
1921 wxDateProperty::wxDateProperty( const wxString
& label
,
1922 const wxString
& name
,
1923 const wxDateTime
& value
)
1924 : wxPGProperty(label
,name
)
1926 //wxPGRegisterDefaultValueType(wxDateTime)
1928 #if wxUSE_DATEPICKCTRL
1929 wxPGRegisterEditorClass(DatePickerCtrl
);
1931 m_dpStyle
= wxDP_DEFAULT
| wxDP_SHOWCENTURY
;
1939 wxDateProperty::~wxDateProperty()
1943 bool wxDateProperty::StringToValue( wxVariant
& variant
, const wxString
& text
,
1944 int WXUNUSED(argFlags
) ) const
1948 const char* c
= dt
.ParseFormat(text
, wxString(wxDefaultDateTimeFormat
), wxDefaultDateTime
, NULL
);
1959 wxString
wxDateProperty::ValueToString( wxVariant
& value
,
1960 int argFlags
) const
1962 const wxChar
* format
= (const wxChar
*) NULL
;
1964 wxDateTime dateTime
= value
.GetDateTime();
1966 if ( !dateTime
.IsValid() )
1967 return wxT("Invalid");
1969 if ( !ms_defaultDateFormat
.length() )
1971 #if wxUSE_DATEPICKCTRL
1972 bool showCentury
= m_dpStyle
& wxDP_SHOWCENTURY
? true : false;
1974 bool showCentury
= true;
1976 ms_defaultDateFormat
= DetermineDefaultDateFormat( showCentury
);
1979 if ( m_format
.length() &&
1980 !(argFlags
& wxPG_FULL_VALUE
) )
1981 format
= m_format
.c_str();
1983 // Determine default from locale
1984 // NB: This is really simple stuff, but can't figure anything
1985 // better without proper support in wxLocale
1987 format
= ms_defaultDateFormat
.c_str();
1989 return dateTime
.Format(format
);
1992 wxString
wxDateProperty::DetermineDefaultDateFormat( bool showCentury
)
1994 // This code is basicly copied from datectlg.cpp's SetFormat
1999 dt
.ParseFormat(wxT("2003-10-13"), wxT("%Y-%m-%d"));
2000 wxString
str(dt
.Format(wxT("%x")));
2002 const wxChar
*p
= str
.c_str();
2006 if (n
== dt
.GetDay())
2008 format
.Append(wxT("%d"));
2011 else if (n
== (int)dt
.GetMonth()+1)
2013 format
.Append(wxT("%m"));
2016 else if (n
== dt
.GetYear())
2018 format
.Append(wxT("%Y"));
2021 else if (n
== (dt
.GetYear() % 100))
2024 format
.Append(wxT("%Y"));
2026 format
.Append(wxT("%y"));
2030 format
.Append(*p
++);
2036 bool wxDateProperty::DoSetAttribute( const wxString
& name
, wxVariant
& value
)
2038 if ( name
== wxPG_DATE_FORMAT
)
2040 m_format
= value
.GetString();
2043 else if ( name
== wxPG_DATE_PICKER_STYLE
)
2045 m_dpStyle
= value
.GetLong();
2046 ms_defaultDateFormat
.clear(); // This may need recalculation
2052 #endif // wxUSE_DATETIME
2055 // -----------------------------------------------------------------------
2056 // wxPropertyGridInterface
2057 // -----------------------------------------------------------------------
2059 void wxPropertyGridInterface::InitAllTypeHandlers()
2063 // -----------------------------------------------------------------------
2065 void wxPropertyGridInterface::RegisterAdditionalEditors()
2067 // Register editor classes, if necessary.
2068 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
2069 wxPropertyGrid::RegisterDefaultEditors();
2072 wxPGRegisterEditorClass(SpinCtrl
);
2074 #if wxUSE_DATEPICKCTRL
2075 wxPGRegisterEditorClass(DatePickerCtrl
);
2079 // -----------------------------------------------------------------------
2081 #endif // wxPG_INCLUDE_ADVPROPS
2083 #endif // wxUSE_PROPGRID