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 licence
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 #include "wx/odcombo.h"
67 // -----------------------------------------------------------------------
69 #if defined(__WXMSW__)
70 #define wxPG_CAN_DRAW_CURSOR 1
71 #elif defined(__WXGTK__)
72 #define wxPG_CAN_DRAW_CURSOR 0
73 #elif defined(__WXMAC__)
74 #define wxPG_CAN_DRAW_CURSOR 0
76 #define wxPG_CAN_DRAW_CURSOR 0
80 // -----------------------------------------------------------------------
82 // -----------------------------------------------------------------------
85 // Implement dynamic class for type value.
86 IMPLEMENT_DYNAMIC_CLASS(wxColourPropertyValue
, wxObject
)
88 bool operator == (const wxColourPropertyValue
& a
, const wxColourPropertyValue
& b
)
90 return ( ( a
.m_colour
== b
.m_colour
) && (a
.m_type
== b
.m_type
) );
93 bool operator == (const wxArrayInt
& array1
, const wxArrayInt
& array2
)
95 if ( array1
.size() != array2
.size() )
98 for ( i
=0; i
<array1
.size(); i
++ )
100 if ( array1
[i
] != array2
[i
] )
106 // -----------------------------------------------------------------------
107 // wxSpinCtrl-based property editor
108 // -----------------------------------------------------------------------
114 #define IS_MOTION_SPIN_SUPPORTED 1
116 #define IS_MOTION_SPIN_SUPPORTED 0
119 #if IS_MOTION_SPIN_SUPPORTED
122 // This class implements ability to rapidly change "spin" value
123 // by moving mouse when one of the spin buttons is depressed.
124 class wxPGSpinButton
: public wxSpinButton
127 wxPGSpinButton() : wxSpinButton()
130 m_hasCapture
= false;
133 Connect( wxEVT_LEFT_DOWN
,
134 wxMouseEventHandler(wxPGSpinButton::OnMouseEvent
) );
135 Connect( wxEVT_LEFT_UP
,
136 wxMouseEventHandler(wxPGSpinButton::OnMouseEvent
) );
137 Connect( wxEVT_MOTION
,
138 wxMouseEventHandler(wxPGSpinButton::OnMouseEvent
) );
139 Connect( wxEVT_MOUSE_CAPTURE_LOST
,
140 wxMouseCaptureLostEventHandler(wxPGSpinButton::OnMouseCaptureLost
) );
149 wxPoint m_ptPosition
;
151 // Having a separate spins variable allows us to handle validation etc. for
152 // multiple spin events at once (with quick mouse movements there could be
153 // hundreds of 'spins' being done at once). Technically things like this
154 // should be stored in event (wxSpinEvent in this case), but there probably
155 // isn't anything there that can be reliably reused.
160 // SpinButton seems to be a special for mouse capture, so we may need track
161 // privately whether mouse is actually captured.
172 SetCursor(wxCURSOR_SIZENS
);
181 m_hasCapture
= false;
184 wxWindow
*parent
= GetParent();
186 SetCursor(parent
->GetCursor());
188 SetCursor(wxNullCursor
);
191 void OnMouseEvent(wxMouseEvent
& event
)
193 if ( event
.GetEventType() == wxEVT_LEFT_DOWN
)
196 m_ptPosition
= event
.GetPosition();
198 else if ( event
.GetEventType() == wxEVT_LEFT_UP
)
203 else if ( event
.GetEventType() == wxEVT_MOTION
)
207 int dy
= m_ptPosition
.y
- event
.GetPosition().y
;
211 m_ptPosition
= event
.GetPosition();
213 wxSpinEvent
evtscroll( (dy
>= 0) ? wxEVT_SCROLL_LINEUP
:
214 wxEVT_SCROLL_LINEDOWN
,
216 evtscroll
.SetEventObject(this);
218 wxASSERT( m_spins
== 1 );
221 GetEventHandler()->ProcessEvent(evtscroll
);
229 void OnMouseCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
235 #endif // IS_MOTION_SPIN_SUPPORTED
238 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(SpinCtrl
,
243 // Trivial destructor.
244 wxPGSpinCtrlEditor::~wxPGSpinCtrlEditor()
249 // Create controls and initialize event handling.
250 wxPGWindowList
wxPGSpinCtrlEditor::CreateControls( wxPropertyGrid
* propgrid
, wxPGProperty
* property
,
251 const wxPoint
& pos
, const wxSize
& sz
) const
253 const int margin
= 1;
254 wxSize
butSz(18, sz
.y
);
255 wxSize
tcSz(sz
.x
- butSz
.x
- margin
, sz
.y
);
256 wxPoint
butPos(pos
.x
+ tcSz
.x
+ margin
, pos
.y
);
260 #if IS_MOTION_SPIN_SUPPORTED
261 if ( property
->GetAttributeAsLong(wxT("MotionSpin"), 0) )
263 wnd2
= new wxPGSpinButton();
268 wnd2
= new wxSpinButton();
274 wnd2
->Create( propgrid
->GetPanel(), wxPG_SUBID2
, butPos
, butSz
, wxSP_VERTICAL
);
276 wnd2
->SetRange( INT_MIN
, INT_MAX
);
279 wxWindow
* wnd1
= wxPGTextCtrlEditor::CreateControls(propgrid
, property
, pos
, tcSz
).m_primary
;
281 // Let's add validator to make sure only numbers can be entered
282 wxTextValidator
validator(wxFILTER_NUMERIC
, &m_tempString
);
283 wnd1
->SetValidator(validator
);
286 return wxPGWindowList(wnd1
, wnd2
);
289 // Control's events are redirected here
290 bool wxPGSpinCtrlEditor::OnEvent( wxPropertyGrid
* propgrid
, wxPGProperty
* property
,
291 wxWindow
* wnd
, wxEvent
& event
) const
293 int evtType
= event
.GetEventType();
296 bool bigStep
= false;
298 if ( evtType
== wxEVT_KEY_DOWN
)
300 wxKeyEvent
& keyEvent
= (wxKeyEvent
&)event
;
301 keycode
= keyEvent
.GetKeyCode();
303 if ( keycode
== WXK_UP
)
304 evtType
= wxEVT_SCROLL_LINEUP
;
305 else if ( keycode
== WXK_DOWN
)
306 evtType
= wxEVT_SCROLL_LINEDOWN
;
307 else if ( keycode
== WXK_PAGEUP
)
309 evtType
= wxEVT_SCROLL_LINEUP
;
312 else if ( keycode
== WXK_PAGEDOWN
)
314 evtType
= wxEVT_SCROLL_LINEDOWN
;
319 if ( evtType
== wxEVT_SCROLL_LINEUP
|| evtType
== wxEVT_SCROLL_LINEDOWN
)
321 #if IS_MOTION_SPIN_SUPPORTED
322 if ( property
->GetAttributeAsLong(wxT("MotionSpin"), 0) )
324 wxPGSpinButton
* spinButton
=
325 (wxPGSpinButton
*) propgrid
->GetEditorControlSecondary();
328 spins
= spinButton
->GetSpins();
333 // Can't use wnd since it might be clipper window
334 wxTextCtrl
* tc
= wxDynamicCast(propgrid
->GetEditorControl(), wxTextCtrl
);
339 s
= property
->GetValueAsString(wxPG_FULL_VALUE
);
341 int mode
= wxPG_PROPERTY_VALIDATION_SATURATE
;
343 if ( property
->GetAttributeAsLong(wxT("Wrap"), 0) )
344 mode
= wxPG_PROPERTY_VALIDATION_WRAP
;
346 if ( property
->GetValueType() == wxT("double") )
349 double step
= property
->GetAttributeAsDouble(wxT("Step"), 1.0);
352 if ( s
.ToDouble(&v_d
) )
357 step
*= (double) spins
;
359 if ( evtType
== wxEVT_SCROLL_LINEUP
) v_d
+= step
;
363 wxFloatProperty::DoValidation(property
, v_d
, NULL
, mode
);
365 wxPropertyGrid::DoubleToString(s
, v_d
, 6, true, NULL
);
375 wxLongLong_t step
= property
->GetAttributeAsLong(wxT("Step"), 1);
378 if ( s
.ToLongLong(&v_ll
, 10) )
385 if ( evtType
== wxEVT_SCROLL_LINEUP
) v_ll
+= step
;
389 wxIntProperty::DoValidation(property
, v_ll
, NULL
, mode
);
391 s
= wxLongLong(v_ll
).ToString();
401 int ip
= tc
->GetInsertionPoint();
402 int lp
= tc
->GetLastPosition();
404 tc
->SetInsertionPoint(ip
+(tc
->GetLastPosition()-lp
));
410 return wxPGTextCtrlEditor::OnEvent(propgrid
,property
,wnd
,event
);
413 #endif // wxUSE_SPINBTN
416 // -----------------------------------------------------------------------
417 // wxDatePickerCtrl-based property editor
418 // -----------------------------------------------------------------------
420 #if wxUSE_DATEPICKCTRL
423 #include "wx/datectrl.h"
424 #include "wx/dateevt.h"
426 class wxPGDatePickerCtrlEditor
: public wxPGEditor
428 DECLARE_DYNAMIC_CLASS(wxPGDatePickerCtrlEditor
)
430 virtual ~wxPGDatePickerCtrlEditor();
432 wxString
GetName() const;
433 virtual wxPGWindowList
CreateControls(wxPropertyGrid
* propgrid
,
434 wxPGProperty
* property
,
436 const wxSize
& size
) const;
437 virtual void UpdateControl( wxPGProperty
* property
, wxWindow
* wnd
) const;
438 virtual bool OnEvent( wxPropertyGrid
* propgrid
, wxPGProperty
* property
,
439 wxWindow
* wnd
, wxEvent
& event
) const;
440 virtual bool GetValueFromControl( wxVariant
& variant
, wxPGProperty
* property
, wxWindow
* wnd
) const;
441 virtual void SetValueToUnspecified( wxPGProperty
* WXUNUSED(property
), wxWindow
* wnd
) const;
445 WX_PG_IMPLEMENT_INTERNAL_EDITOR_CLASS(DatePickerCtrl
,
446 wxPGDatePickerCtrlEditor
,
450 wxPGDatePickerCtrlEditor::~wxPGDatePickerCtrlEditor()
454 wxPGWindowList
wxPGDatePickerCtrlEditor::CreateControls( wxPropertyGrid
* propgrid
,
455 wxPGProperty
* property
,
457 const wxSize
& sz
) const
459 wxCHECK_MSG( property
->IsKindOf(CLASSINFO(wxDateProperty
)),
461 wxT("DatePickerCtrl editor can only be used with wxDateProperty or derivative.") );
463 wxDateProperty
* prop
= wxDynamicCast(property
, wxDateProperty
);
465 // Use two stage creation to allow cleaner display on wxMSW
466 wxDatePickerCtrl
* ctrl
= new wxDatePickerCtrl();
469 wxSize useSz
= wxDefaultSize
;
475 wxDateTime
dateValue(wxInvalidDateTime
);
477 wxVariant value
= prop
->GetValue();
478 if ( value
.GetType() == wxT("datetime") )
479 dateValue
= value
.GetDateTime();
481 ctrl
->Create(propgrid
->GetPanel(),
486 prop
->GetDatePickerStyle() | wxNO_BORDER
);
495 // Copies value from property to control
496 void wxPGDatePickerCtrlEditor::UpdateControl( wxPGProperty
* property
,
497 wxWindow
* wnd
) const
499 wxDatePickerCtrl
* ctrl
= (wxDatePickerCtrl
*) wnd
;
500 wxASSERT( ctrl
&& ctrl
->IsKindOf(CLASSINFO(wxDatePickerCtrl
)) );
502 wxDateTime
dateValue(wxInvalidDateTime
);
503 wxVariant
v(property
->GetValue());
504 if ( v
.GetType() == wxT("datetime") )
505 dateValue
= v
.GetDateTime();
507 ctrl
->SetValue( dateValue
);
510 // Control's events are redirected here
511 bool wxPGDatePickerCtrlEditor::OnEvent( wxPropertyGrid
* WXUNUSED(propgrid
),
512 wxPGProperty
* WXUNUSED(property
),
513 wxWindow
* WXUNUSED(wnd
),
514 wxEvent
& event
) const
516 if ( event
.GetEventType() == wxEVT_DATE_CHANGED
)
522 bool wxPGDatePickerCtrlEditor::GetValueFromControl( wxVariant
& variant
, wxPGProperty
* WXUNUSED(property
), wxWindow
* wnd
) const
524 wxDatePickerCtrl
* ctrl
= (wxDatePickerCtrl
*) wnd
;
525 wxASSERT( ctrl
&& ctrl
->IsKindOf(CLASSINFO(wxDatePickerCtrl
)) );
527 variant
= ctrl
->GetValue();
532 void wxPGDatePickerCtrlEditor::SetValueToUnspecified( wxPGProperty
* property
,
533 wxWindow
* wnd
) const
535 wxDatePickerCtrl
* ctrl
= (wxDatePickerCtrl
*) wnd
;
536 wxASSERT( ctrl
&& ctrl
->IsKindOf(CLASSINFO(wxDatePickerCtrl
)) );
538 wxDateProperty
* prop
= wxDynamicCast(property
, wxDateProperty
);
542 int datePickerStyle
= prop
->GetDatePickerStyle();
543 if ( datePickerStyle
& wxDP_ALLOWNONE
)
544 ctrl
->SetValue(wxInvalidDateTime
);
548 #endif // wxUSE_DATEPICKCTRL
551 // -----------------------------------------------------------------------
553 // -----------------------------------------------------------------------
555 #include "wx/fontdlg.h"
556 #include "wx/fontenum.h"
559 // NB: Do not use wxS here since unlike wxT it doesn't translate to wxChar*
562 static const wxChar
* const gs_fp_es_family_labels
[] = {
563 wxT("Default"), wxT("Decorative"),
564 wxT("Roman"), wxT("Script"),
565 wxT("Swiss"), wxT("Modern"),
566 wxT("Teletype"), wxT("Unknown"),
570 static const long gs_fp_es_family_values
[] = {
571 wxFONTFAMILY_DEFAULT
, wxFONTFAMILY_DECORATIVE
,
572 wxFONTFAMILY_ROMAN
, wxFONTFAMILY_SCRIPT
,
573 wxFONTFAMILY_SWISS
, wxFONTFAMILY_MODERN
,
574 wxFONTFAMILY_TELETYPE
, wxFONTFAMILY_UNKNOWN
577 static const wxChar
* const gs_fp_es_style_labels
[] = {
584 static const long gs_fp_es_style_values
[] = {
590 static const wxChar
* const gs_fp_es_weight_labels
[] = {
597 static const long gs_fp_es_weight_values
[] = {
603 // Class body is in advprops.h
606 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxFontProperty
,wxPGProperty
,
607 wxFont
,const wxFont
&,TextCtrlAndButton
)
610 wxFontProperty::wxFontProperty( const wxString
& label
, const wxString
& name
,
611 const wxFont
& value
)
612 : wxPGProperty(label
,name
)
614 SetValue(WXVARIANT(value
));
616 // Initialize font family choices list
617 if ( !wxPGGlobalVars
->m_fontFamilyChoices
)
619 wxArrayString faceNames
= wxFontEnumerator::GetFacenames();
623 wxPGGlobalVars
->m_fontFamilyChoices
= new wxPGChoices(faceNames
);
626 wxString
emptyString(wxEmptyString
);
631 AddPrivateChild( new wxIntProperty( _("Point Size"),
632 wxS("Point Size"),(long)font
.GetPointSize() ) );
634 wxString faceName
= font
.GetFaceName();
635 // If font was not in there, add it now
636 if ( faceName
.length() &&
637 wxPGGlobalVars
->m_fontFamilyChoices
->Index(faceName
) == wxNOT_FOUND
)
638 wxPGGlobalVars
->m_fontFamilyChoices
->AddAsSorted(faceName
);
640 wxPGProperty
* p
= new wxEnumProperty(_("Face Name"), wxS("Face Name"),
641 *wxPGGlobalVars
->m_fontFamilyChoices
);
643 p
->SetValueFromString(faceName
, wxPG_FULL_VALUE
);
645 AddPrivateChild( p
);
647 AddPrivateChild( new wxEnumProperty(_("Style"), wxS("Style"),
648 gs_fp_es_style_labels
,gs_fp_es_style_values
,
651 AddPrivateChild( new wxEnumProperty(_("Weight"), wxS("Weight"),
652 gs_fp_es_weight_labels
,gs_fp_es_weight_values
,
655 AddPrivateChild( new wxBoolProperty(_("Underlined"), wxS("Underlined"),
656 font
.GetUnderlined()) );
658 AddPrivateChild( new wxEnumProperty(_("Family"), wxS("PointSize"),
659 gs_fp_es_family_labels
,gs_fp_es_family_values
,
663 wxFontProperty::~wxFontProperty() { }
665 void wxFontProperty::OnSetValue()
672 m_value
<< *wxNORMAL_FONT
;
676 wxString
wxFontProperty::ValueToString( wxVariant
& value
,
679 return wxPGProperty::ValueToString(value
, argFlags
);
682 bool wxFontProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* WXUNUSED(primary
),
685 if ( propgrid
->IsMainButtonEvent(event
) )
687 // Update value from last minute changes
688 wxVariant useValue
= propgrid
->GetUncommittedPropertyValue();
693 if ( useValue
.GetType() == wxS("wxFont") )
696 data
.SetInitialFont( font
);
697 data
.SetColour(*wxBLACK
);
699 wxFontDialog
dlg(propgrid
, data
);
700 if ( dlg
.ShowModal() == wxID_OK
)
702 propgrid
->EditorsValueWasModified();
705 variant
<< dlg
.GetFontData().GetChosenFont();
706 SetValueInEvent( variant
);
713 void wxFontProperty::RefreshChildren()
715 if ( !GetChildCount() ) return;
718 Item(0)->SetValue( (long)font
.GetPointSize() );
719 Item(1)->SetValueFromString( font
.GetFaceName(), wxPG_FULL_VALUE
);
720 Item(2)->SetValue( (long)font
.GetStyle() );
721 Item(3)->SetValue( (long)font
.GetWeight() );
722 Item(4)->SetValue( font
.GetUnderlined() );
723 Item(5)->SetValue( (long)font
.GetFamily() );
726 wxVariant
wxFontProperty::ChildChanged( wxVariant
& thisValue
,
728 wxVariant
& childValue
) const
735 font
.SetPointSize( childValue
.GetLong() );
740 int faceIndex
= childValue
.GetLong();
742 if ( faceIndex
>= 0 )
743 faceName
= wxPGGlobalVars
->m_fontFamilyChoices
->GetLabel(faceIndex
);
745 font
.SetFaceName( faceName
);
749 int st
= childValue
.GetLong();
750 if ( st
!= wxFONTSTYLE_NORMAL
&&
751 st
!= wxFONTSTYLE_SLANT
&&
752 st
!= wxFONTSTYLE_ITALIC
)
753 st
= wxFONTWEIGHT_NORMAL
;
758 int wt
= childValue
.GetLong();
759 if ( wt
!= wxFONTWEIGHT_NORMAL
&&
760 wt
!= wxFONTWEIGHT_LIGHT
&&
761 wt
!= wxFONTWEIGHT_BOLD
)
762 wt
= wxFONTWEIGHT_NORMAL
;
763 font
.SetWeight( wt
);
767 font
.SetUnderlined( childValue
.GetBool() );
771 int fam
= childValue
.GetLong();
772 if ( fam
< wxDEFAULT
||
775 font
.SetFamily( fam
);
778 wxVariant newVariant
;
784 wxSize wxFontProperty::OnMeasureImage() const
786 return wxSize(-1,-1);
789 void wxFontProperty::OnCustomPaint(wxDC& dc,
791 wxPGPaintData& paintData)
794 if ( paintData.m_choiceItem >= 0 )
795 drawFace = wxPGGlobalVars->m_fontFamilyChoices->GetLabel(paintData.m_choiceItem);
797 drawFace = m_value_wxFont.GetFaceName();
799 if ( drawFace.length() )
801 // Draw the background
802 dc.SetBrush( wxColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)) );
803 //dc.SetBrush( *wxWHITE_BRUSH );
804 //dc.SetPen( *wxMEDIUM_GREY_PEN );
805 dc.DrawRectangle( rect );
807 wxFont oldFont = dc.GetFont();
808 wxFont drawFont(oldFont.GetPointSize(),
809 wxDEFAULT,wxNORMAL,wxBOLD,false,drawFace);
810 dc.SetFont(drawFont);
812 dc.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNTEXT) );
813 dc.DrawText( wxT("Aa"), rect.x+2, rect.y+1 );
819 // No file - just draw a white box
820 dc.SetBrush ( *wxWHITE_BRUSH );
821 dc.DrawRectangle ( rect );
827 // -----------------------------------------------------------------------
828 // wxSystemColourProperty
829 // -----------------------------------------------------------------------
831 // wxEnumProperty based classes cannot use wxPG_PROP_CLASS_SPECIFIC_1
832 #define wxPG_PROP_HIDE_CUSTOM_COLOUR wxPG_PROP_CLASS_SPECIFIC_2
834 #include "wx/colordlg.h"
836 //#define wx_cp_es_syscolours_len 25
837 static const wxChar
* const gs_cp_es_syscolour_labels
[] = {
840 wxT("ActiveCaption"),
842 wxT("ButtonHighlight"),
851 wxT("HighlightText"),
852 wxT("InactiveBorder"),
853 wxT("InactiveCaption"),
854 wxT("InactiveCaptionText"),
866 static const long gs_cp_es_syscolour_values
[] = {
867 wxSYS_COLOUR_APPWORKSPACE
,
868 wxSYS_COLOUR_ACTIVEBORDER
,
869 wxSYS_COLOUR_ACTIVECAPTION
,
870 wxSYS_COLOUR_BTNFACE
,
871 wxSYS_COLOUR_BTNHIGHLIGHT
,
872 wxSYS_COLOUR_BTNSHADOW
,
873 wxSYS_COLOUR_BTNTEXT
,
874 wxSYS_COLOUR_CAPTIONTEXT
,
875 wxSYS_COLOUR_3DDKSHADOW
,
876 wxSYS_COLOUR_3DLIGHT
,
877 wxSYS_COLOUR_BACKGROUND
,
878 wxSYS_COLOUR_GRAYTEXT
,
879 wxSYS_COLOUR_HIGHLIGHT
,
880 wxSYS_COLOUR_HIGHLIGHTTEXT
,
881 wxSYS_COLOUR_INACTIVEBORDER
,
882 wxSYS_COLOUR_INACTIVECAPTION
,
883 wxSYS_COLOUR_INACTIVECAPTIONTEXT
,
885 wxSYS_COLOUR_SCROLLBAR
,
887 wxSYS_COLOUR_INFOTEXT
,
889 wxSYS_COLOUR_WINDOWFRAME
,
890 wxSYS_COLOUR_WINDOWTEXT
,
895 IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxColourPropertyValue
, WXDLLIMPEXP_PROPGRID
)
898 // Class body is in advprops.h
900 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxSystemColourProperty
,wxEnumProperty
,
901 wxColourPropertyValue
,const wxColourPropertyValue
&,Choice
)
904 void wxSystemColourProperty::Init( int type
, const wxColour
& colour
)
906 wxColourPropertyValue cpv
;
909 cpv
.Init( type
, colour
);
911 cpv
.Init( type
, *wxWHITE
);
913 m_flags
|= wxPG_PROP_STATIC_CHOICES
; // Colour selection cannot be changed.
921 static wxPGChoices gs_wxSystemColourProperty_choicesCache
;
924 wxSystemColourProperty::wxSystemColourProperty( const wxString
& label
, const wxString
& name
,
925 const wxColourPropertyValue
& value
)
926 : wxEnumProperty( label
,
928 gs_cp_es_syscolour_labels
,
929 gs_cp_es_syscolour_values
,
930 &gs_wxSystemColourProperty_choicesCache
)
933 Init( value
.m_type
, value
.m_colour
);
935 Init( wxPG_COLOUR_CUSTOM
, *wxWHITE
);
939 wxSystemColourProperty::wxSystemColourProperty( const wxString
& label
, const wxString
& name
,
940 const wxChar
* const* labels
, const long* values
, wxPGChoices
* choicesCache
,
941 const wxColourPropertyValue
& value
)
942 : wxEnumProperty( label
, name
, labels
, values
, choicesCache
)
945 Init( value
.m_type
, value
.m_colour
);
947 Init( wxPG_COLOUR_CUSTOM
, *wxWHITE
);
951 wxSystemColourProperty::wxSystemColourProperty( const wxString
& label
, const wxString
& name
,
952 const wxChar
* const* labels
, const long* values
, wxPGChoices
* choicesCache
,
953 const wxColour
& value
)
954 : wxEnumProperty( label
, name
, labels
, values
, choicesCache
)
957 Init( wxPG_COLOUR_CUSTOM
, value
);
959 Init( wxPG_COLOUR_CUSTOM
, *wxWHITE
);
963 wxSystemColourProperty::~wxSystemColourProperty() { }
966 wxColourPropertyValue
wxSystemColourProperty::GetVal( const wxVariant
* pVariant
) const
971 if ( pVariant
->IsNull() )
972 return wxColourPropertyValue(wxPG_COLOUR_UNSPECIFIED
, wxColour());
974 if ( pVariant
->GetType() == wxS("wxColourPropertyValue") )
976 wxColourPropertyValue v
;
982 bool variantProcessed
= true;
984 if ( pVariant
->GetType() == wxS("wxColour*") )
986 wxColour
* pCol
= wxStaticCast(pVariant
->GetWxObjectPtr(), wxColour
);
989 else if ( pVariant
->GetType() == wxS("wxColour") )
993 else if ( pVariant
->GetType() == wxArrayInt_VariantType
)
995 // This code is mostly needed for wxPython bindings, which
996 // may offer tuple of integers as colour value.
1000 if ( arr
.size() >= 3 )
1008 if ( arr
.size() >= 4 )
1011 col
= wxColour(r
, g
, b
, a
);
1015 variantProcessed
= false;
1020 variantProcessed
= false;
1023 if ( !variantProcessed
)
1024 return wxColourPropertyValue(wxPG_COLOUR_UNSPECIFIED
, wxColour());
1026 wxColourPropertyValue
v2( wxPG_COLOUR_CUSTOM
, col
);
1028 int colInd
= ColToInd(col
);
1029 if ( colInd
!= wxNOT_FOUND
)
1035 wxVariant
wxSystemColourProperty::DoTranslateVal( wxColourPropertyValue
& v
) const
1042 int wxSystemColourProperty::ColToInd( const wxColour
& colour
) const
1045 size_t i_max
= m_choices
.GetCount();
1047 if ( !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1050 for ( i
=0; i
<i_max
; i
++ )
1052 int ind
= m_choices
[i
].GetValue();
1054 if ( colour
== GetColour(ind
) )
1056 /*wxLogDebug(wxT("%s(%s): Index %i for ( getcolour(%i,%i,%i), colour(%i,%i,%i))"),
1057 GetClassName(),GetLabel().c_str(),
1058 (int)i,(int)GetColour(ind).Red(),(int)GetColour(ind).Green(),(int)GetColour(ind).Blue(),
1059 (int)colour.Red(),(int)colour.Green(),(int)colour.Blue());*/
1066 void wxSystemColourProperty::OnSetValue()
1068 // Convert from generic wxobject ptr to wxPGVariantDataColour
1069 if ( m_value
.GetType() == wxS("wxColour*") )
1071 wxColour
* pCol
= wxStaticCast(m_value
.GetWxObjectPtr(), wxColour
);
1075 wxColourPropertyValue val
= GetVal(&m_value
);
1077 if ( val
.m_type
== wxPG_COLOUR_UNSPECIFIED
)
1085 if ( val
.m_type
< wxPG_COLOUR_WEB_BASE
)
1086 val
.m_colour
= GetColour( val
.m_type
);
1088 m_value
= TranslateVal(val
);
1091 int ind
= wxNOT_FOUND
;
1093 if ( m_value
.GetType() == wxS("wxColourPropertyValue") )
1095 wxColourPropertyValue cpv
;
1097 wxColour col
= cpv
.m_colour
;
1101 SetValueToUnspecified();
1102 SetIndex(wxNOT_FOUND
);
1106 if ( cpv
.m_type
< wxPG_COLOUR_WEB_BASE
||
1107 (m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1109 ind
= GetIndexForValue(cpv
.m_type
);
1113 cpv
.m_type
= wxPG_COLOUR_CUSTOM
;
1114 ind
= GetCustomColourIndex();
1124 SetValueToUnspecified();
1125 SetIndex(wxNOT_FOUND
);
1129 ind
= ColToInd(col
);
1131 if ( ind
== wxNOT_FOUND
&&
1132 !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1133 ind
= GetCustomColourIndex();
1140 wxColour
wxSystemColourProperty::GetColour( int index
) const
1142 return wxSystemSettings::GetColour( (wxSystemColour
)index
);
1145 wxString
wxSystemColourProperty::ColourToString( const wxColour
& col
, int index
) const
1147 if ( index
== wxNOT_FOUND
)
1148 return wxString::Format(wxT("(%i,%i,%i)"),
1153 return m_choices
.GetLabel(index
);
1156 wxString
wxSystemColourProperty::ValueToString( wxVariant
& value
,
1157 int argFlags
) const
1159 wxColourPropertyValue val
= GetVal(&value
);
1163 if ( argFlags
& wxPG_VALUE_IS_CURRENT
)
1165 // GetIndex() only works reliably if wxPG_VALUE_IS_CURRENT flag is set,
1166 // but we should use it whenever possible.
1169 // If custom colour was selected, use invalid index, so that
1170 // ColourToString() will return properly formatted colour text.
1171 if ( index
== GetCustomColourIndex() &&
1172 !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1173 index
= wxNOT_FOUND
;
1177 index
= m_choices
.Index(val
.m_type
);
1180 return ColourToString(val
.m_colour
, index
);
1184 wxSize
wxSystemColourProperty::OnMeasureImage( int ) const
1186 return wxPG_DEFAULT_IMAGE_SIZE
;
1190 int wxSystemColourProperty::GetCustomColourIndex() const
1192 return m_choices
.GetCount() - 1;
1196 bool wxSystemColourProperty::QueryColourFromUser( wxVariant
& variant
) const
1198 wxASSERT( m_value
.GetType() != wxPG_VARIANT_TYPE_STRING
);
1201 wxPropertyGrid
* propgrid
= GetGrid();
1202 wxASSERT( propgrid
);
1204 // Must only occur when user triggers event
1205 if ( !(propgrid
->GetInternalFlags() & wxPG_FL_IN_HANDLECUSTOMEDITOREVENT
) )
1208 wxColourPropertyValue val
= GetVal();
1210 val
.m_type
= wxPG_COLOUR_CUSTOM
;
1213 data
.SetChooseFull(true);
1214 data
.SetColour(val
.m_colour
);
1216 for ( i
= 0; i
< 16; i
++)
1218 wxColour
colour(i
*16, i
*16, i
*16);
1219 data
.SetCustomColour(i
, colour
);
1222 wxColourDialog
dialog(propgrid
, &data
);
1223 if ( dialog
.ShowModal() == wxID_OK
)
1225 wxColourData retData
= dialog
.GetColourData();
1226 val
.m_colour
= retData
.GetColour();
1228 variant
= DoTranslateVal(val
);
1230 SetValueInEvent(variant
);
1239 bool wxSystemColourProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
1242 int type
= m_choices
.GetValue(index
);
1244 if ( type
== wxPG_COLOUR_CUSTOM
)
1246 QueryColourFromUser(variant
);
1250 variant
= TranslateVal( type
, GetColour(type
) );
1256 // Need to do some extra event handling.
1257 bool wxSystemColourProperty::OnEvent( wxPropertyGrid
* propgrid
,
1258 wxWindow
* WXUNUSED(primary
),
1261 bool askColour
= false;
1263 if ( propgrid
->IsMainButtonEvent(event
) )
1265 // We need to handle button click in case editor has been
1266 // switched to one that has wxButton as well.
1269 else if ( event
.GetEventType() == wxEVT_COMMAND_COMBOBOX_SELECTED
)
1271 // Must override index detection since at this point GetIndex()
1272 // will return old value.
1273 wxOwnerDrawnComboBox
* cb
=
1274 static_cast<wxOwnerDrawnComboBox
*>(propgrid
->GetEditorControl());
1278 int index
= cb
->GetSelection();
1280 if ( index
== GetCustomColourIndex() &&
1281 !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1286 if ( askColour
&& !propgrid
->WasValueChangedInEvent() )
1289 if ( QueryColourFromUser(variant
) )
1295 /*class wxPGColourPropertyRenderer : public wxPGDefaultRenderer
1298 virtual void Render( wxDC& dc, const wxRect& rect,
1299 const wxPropertyGrid* propertyGrid, wxPGProperty* property,
1300 int WXUNUSED(column), int item, int WXUNUSED(flags) ) const
1302 wxASSERT( property->IsKindOf(CLASSINFO(wxSystemColourProperty)) );
1303 wxSystemColourProperty* prop = wxStaticCast(property, wxSystemColourProperty);
1305 dc.SetPen(*wxBLACK_PEN);
1307 ( item < (int)(GetCustomColourIndex) || (prop->HasFlag(wxPG_PROP_HIDE_CUSTOM_COLOUR)))
1311 const wxArrayInt& values = prop->GetValues();
1312 if ( values.GetChildCount() )
1313 colInd = values[item];
1316 dc.SetBrush( wxColour( prop->GetColour( colInd ) ) );
1318 else if ( !prop->IsValueUnspecified() )
1319 dc.SetBrush( prop->GetVal().m_colour );
1321 dc.SetBrush( *wxWHITE );
1323 wxRect imageRect = propertyGrid->GetImageRect(property, item);
1324 wxLogDebug(wxT("%i, %i"),imageRect.x,imageRect.y);
1325 dc.DrawRectangle( rect.x+imageRect.x, rect.y+imageRect.y,
1326 imageRect.width, imageRect.height );
1330 text = property->GetValueAsString();
1332 text = property->GetChoiceString(item);
1333 DrawText( dc, rect, imageRect.width, text );
1338 wxPGColourPropertyRenderer g_wxPGColourPropertyRenderer;
1340 wxPGCellRenderer* wxSystemColourProperty::GetCellRenderer( int column ) const
1343 return &g_wxPGColourPropertyRenderer;
1344 return wxEnumProperty::GetCellRenderer(column);
1347 void wxSystemColourProperty::OnCustomPaint( wxDC
& dc
, const wxRect
& rect
,
1348 wxPGPaintData
& paintdata
)
1352 if ( paintdata
.m_choiceItem
>= 0 &&
1353 paintdata
.m_choiceItem
< (int)m_choices
.GetCount() &&
1354 (paintdata
.m_choiceItem
!= GetCustomColourIndex() ||
1355 m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1357 int colInd
= m_choices
[paintdata
.m_choiceItem
].GetValue();
1358 col
= GetColour( colInd
);
1360 else if ( !IsValueUnspecified() )
1362 col
= GetVal().m_colour
;
1368 dc
.DrawRectangle(rect
);
1373 bool wxSystemColourProperty::StringToValue( wxVariant
& value
, const wxString
& text
, int argFlags
) const
1376 // Accept colour format "[Name] [(R,G,B)]"
1377 // Name takes precedence.
1379 wxString colourName
;
1382 int ppos
= text
.Find(wxT("("));
1384 if ( ppos
== wxNOT_FOUND
)
1390 colourName
= text
.substr(0, ppos
);
1391 colourRGB
= text
.substr(ppos
, text
.length()-ppos
);
1394 // Strip spaces from extremities
1395 colourName
.Trim(true);
1396 colourName
.Trim(false);
1397 colourRGB
.Trim(true);
1399 // Validate colourRGB string - (1,1,1) is shortest allowed
1400 if ( colourRGB
.length() < 7 )
1403 if ( colourRGB
.length() == 0 && m_choices
.GetCount() &&
1404 !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) &&
1405 colourName
== m_choices
.GetLabel(GetCustomColourIndex()) )
1407 if ( !(argFlags
& wxPG_EDITABLE_VALUE
))
1409 // This really should not occurr...
1415 QueryColourFromUser(value
);
1419 wxColourPropertyValue val
;
1423 if ( colourName
.length() )
1425 // Try predefined colour first
1426 bool res
= wxEnumProperty::StringToValue(value
, colourName
, argFlags
);
1427 if ( res
&& GetIndex() >= 0 )
1429 val
.m_type
= GetIndex();
1430 if ( val
.m_type
< m_choices
.GetCount() )
1431 val
.m_type
= m_choices
[val
.m_type
].GetValue();
1433 // Get proper colour for type.
1434 val
.m_colour
= GetColour(val
.m_type
);
1439 if ( colourRGB
.length() && !done
)
1441 // Then check custom colour.
1442 val
.m_type
= wxPG_COLOUR_CUSTOM
;
1444 int r
= -1, g
= -1, b
= -1;
1445 wxSscanf(colourRGB
.c_str(),wxT("(%i,%i,%i)"),&r
,&g
,&b
);
1447 if ( r
>= 0 && r
<= 255 &&
1448 g
>= 0 && g
<= 255 &&
1449 b
>= 0 && b
<= 255 )
1451 val
.m_colour
.Set(r
,g
,b
);
1463 value
= DoTranslateVal(val
);
1470 bool wxSystemColourProperty::DoSetAttribute( const wxString
& name
, wxVariant
& value
)
1472 if ( name
== wxPG_COLOUR_ALLOW_CUSTOM
)
1474 int ival
= value
.GetLong();
1476 if ( ival
&& (m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1478 // Show custom choice
1479 m_choices
.Insert(wxT("Custom"), GetCustomColourIndex(), wxPG_COLOUR_CUSTOM
);
1480 m_flags
&= ~(wxPG_PROP_HIDE_CUSTOM_COLOUR
);
1482 else if ( !ival
&& !(m_flags
& wxPG_PROP_HIDE_CUSTOM_COLOUR
) )
1484 // Hide custom choice
1485 m_choices
.RemoveAt(GetCustomColourIndex());
1486 m_flags
|= wxPG_PROP_HIDE_CUSTOM_COLOUR
;
1494 // -----------------------------------------------------------------------
1496 // -----------------------------------------------------------------------
1498 static const wxChar
* const gs_cp_es_normcolour_labels
[] = {
1518 (const wxChar
*) NULL
1521 static const unsigned long gs_cp_es_normcolour_colours
[] = {
1523 wxPG_COLOUR(128,0,0),
1524 wxPG_COLOUR(0,0,128),
1525 wxPG_COLOUR(128,0,128),
1526 wxPG_COLOUR(0,128,128),
1527 wxPG_COLOUR(128,128,128),
1528 wxPG_COLOUR(0,128,0),
1529 wxPG_COLOUR(128,128,0),
1530 wxPG_COLOUR(166,124,81),
1531 wxPG_COLOUR(0,0,255),
1532 wxPG_COLOUR(255,0,255),
1533 wxPG_COLOUR(255,0,0),
1534 wxPG_COLOUR(247,148,28),
1535 wxPG_COLOUR(192,192,192),
1536 wxPG_COLOUR(0,255,0),
1537 wxPG_COLOUR(0,255,255),
1538 wxPG_COLOUR(255,255,0),
1539 wxPG_COLOUR(255,255,255),
1543 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxColourProperty
, wxSystemColourProperty
,
1544 wxColour
, const wxColour
&, TextCtrlAndButton
)
1546 static wxPGChoices gs_wxColourProperty_choicesCache
;
1548 wxColourProperty::wxColourProperty( const wxString
& label
,
1549 const wxString
& name
,
1550 const wxColour
& value
)
1551 : wxSystemColourProperty(label
, name
, gs_cp_es_normcolour_labels
,
1553 &gs_wxColourProperty_choicesCache
, value
)
1557 m_flags
|= wxPG_PROP_TRANSLATE_CUSTOM
;
1560 wxColourProperty::~wxColourProperty()
1564 void wxColourProperty::Init( wxColour colour
)
1571 int ind
= ColToInd(colour
);
1573 ind
= m_choices
.GetCount() - 1;
1577 wxString
wxColourProperty::ValueToString( wxVariant
& value
,
1578 int argFlags
) const
1580 const wxPGEditor
* editor
= GetEditorClass();
1581 if ( editor
!= wxPGEditor_Choice
&&
1582 editor
!= wxPGEditor_ChoiceAndButton
&&
1583 editor
!= wxPGEditor_ComboBox
)
1584 argFlags
|= wxPG_PROPERTY_SPECIFIC
;
1586 return wxSystemColourProperty::ValueToString(value
, argFlags
);
1589 wxColour
wxColourProperty::GetColour( int index
) const
1591 return gs_cp_es_normcolour_colours
[m_choices
.GetValue(index
)];
1594 wxVariant
wxColourProperty::DoTranslateVal( wxColourPropertyValue
& v
) const
1597 variant
<< v
.m_colour
;
1601 // -----------------------------------------------------------------------
1603 // -----------------------------------------------------------------------
1605 #define wxPG_CURSOR_IMAGE_WIDTH 32
1607 #define NUM_CURSORS 28
1609 //#define wx_cp_es_syscursors_len 28
1610 static const wxChar
* const gs_cp_es_syscursors_labels
[NUM_CURSORS
+1] = {
1622 wxT("Middle Button"),
1628 wxT("Question Arrow"),
1629 wxT("Right Button"),
1630 wxT("Sizing NE-SW"),
1632 wxT("Sizing NW-SE"),
1639 (const wxChar
*) NULL
1642 static const long gs_cp_es_syscursors_values
[NUM_CURSORS
] = {
1645 wxCURSOR_RIGHT_ARROW
,
1652 wxCURSOR_LEFT_BUTTON
,
1654 wxCURSOR_MIDDLE_BUTTON
,
1656 wxCURSOR_PAINT_BRUSH
,
1658 wxCURSOR_POINT_LEFT
,
1659 wxCURSOR_POINT_RIGHT
,
1660 wxCURSOR_QUESTION_ARROW
,
1661 wxCURSOR_RIGHT_BUTTON
,
1673 IMPLEMENT_DYNAMIC_CLASS(wxCursorProperty
, wxEnumProperty
)
1675 wxCursorProperty::wxCursorProperty( const wxString
& label
, const wxString
& name
,
1677 : wxEnumProperty( label
,
1679 gs_cp_es_syscursors_labels
,
1680 gs_cp_es_syscursors_values
,
1683 m_flags
|= wxPG_PROP_STATIC_CHOICES
; // Cursor selection cannot be changed.
1686 wxCursorProperty::~wxCursorProperty()
1690 wxSize
wxCursorProperty::OnMeasureImage( int item
) const
1692 #if wxPG_CAN_DRAW_CURSOR
1693 if ( item
!= -1 && item
< NUM_CURSORS
)
1694 return wxSize(wxPG_CURSOR_IMAGE_WIDTH
,wxPG_CURSOR_IMAGE_WIDTH
);
1701 #if wxPG_CAN_DRAW_CURSOR
1703 void wxCursorProperty::OnCustomPaint( wxDC
& dc
,
1705 wxPGPaintData
& paintdata
)
1708 dc
.SetBrush( wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
) );
1710 if ( paintdata
.m_choiceItem
>= 0 )
1712 dc
.DrawRectangle( rect
);
1714 if ( paintdata
.m_choiceItem
< NUM_CURSORS
)
1716 wxStockCursor cursorIndex
=
1717 (wxStockCursor
) gs_cp_es_syscursors_values
[paintdata
.m_choiceItem
];
1720 if ( cursorIndex
== wxCURSOR_NONE
)
1721 cursorIndex
= wxCURSOR_ARROW
;
1723 wxCursor
cursor( cursorIndex
);
1726 HDC hDc
= (HDC
)((const wxMSWDCImpl
*)dc
.GetImpl())->GetHDC();
1730 (HICON
)cursor
.GetHandle(),
1735 #if !defined(__WXWINCE__)
1736 DI_COMPAT
| DI_DEFAULTSIZE
|
1747 void wxCursorProperty::OnCustomPaint( wxDC
&, const wxRect
&, wxPGPaintData
& ) { }
1748 /*wxPGCellRenderer* wxCursorProperty::GetCellRenderer( int column ) const
1750 return wxEnumProperty::GetCellRenderer(column);
1754 // -----------------------------------------------------------------------
1755 // wxImageFileProperty
1756 // -----------------------------------------------------------------------
1760 const wxString
& wxPGGetDefaultImageWildcard()
1762 // Form the wildcard, if not done yet
1763 if ( !wxPGGlobalVars
->m_pDefaultImageWildcard
.length() )
1768 // TODO: This section may require locking (using global).
1770 wxList
& handlers
= wxImage::GetHandlers();
1772 wxList::iterator node
;
1774 // Let's iterate over the image handler list.
1775 //for ( wxList::Node *node = handlers.GetFirst(); node; node = node->GetNext() )
1776 for ( node
= handlers
.begin(); node
!= handlers
.end(); ++node
)
1778 wxImageHandler
*handler
= (wxImageHandler
*)*node
;
1780 wxString ext_lo
= handler
->GetExtension();
1781 wxString ext_up
= ext_lo
.Upper();
1783 str
.append( ext_up
);
1784 str
.append( wxT(" files (*.") );
1785 str
.append( ext_up
);
1786 str
.append( wxT(")|*.") );
1787 str
.append( ext_lo
);
1788 str
.append( wxT("|") );
1791 str
.append ( wxT("All files (*.*)|*.*") );
1793 wxPGGlobalVars
->m_pDefaultImageWildcard
= str
;
1796 return wxPGGlobalVars
->m_pDefaultImageWildcard
;
1799 IMPLEMENT_DYNAMIC_CLASS(wxImageFileProperty
, wxFileProperty
)
1801 wxImageFileProperty::wxImageFileProperty( const wxString
& label
, const wxString
& name
,
1802 const wxString
& value
)
1803 : wxFileProperty(label
,name
,value
)
1805 SetAttribute( wxPG_FILE_WILDCARD
, wxPGGetDefaultImageWildcard() );
1811 wxImageFileProperty::~wxImageFileProperty()
1819 void wxImageFileProperty::OnSetValue()
1821 wxFileProperty::OnSetValue();
1825 wxDELETE(m_pBitmap
);
1827 wxFileName filename
= GetFileName();
1829 // Create the image thumbnail
1830 if ( filename
.FileExists() )
1832 m_pImage
= new wxImage( filename
.GetFullPath() );
1836 wxSize
wxImageFileProperty::OnMeasureImage( int ) const
1838 return wxPG_DEFAULT_IMAGE_SIZE
;
1841 void wxImageFileProperty::OnCustomPaint( wxDC
& dc
,
1845 if ( m_pBitmap
|| (m_pImage
&& m_pImage
->Ok() ) )
1847 // Draw the thumbnail
1849 // Create the bitmap here because required size is not known in OnSetValue().
1852 m_pImage
->Rescale( rect
.width
, rect
.height
);
1853 m_pBitmap
= new wxBitmap( *m_pImage
);
1857 dc
.DrawBitmap( *m_pBitmap
, rect
.x
, rect
.y
, false );
1861 // No file - just draw a white box
1862 dc
.SetBrush( *wxWHITE_BRUSH
);
1863 dc
.DrawRectangle ( rect
);
1867 #endif // wxUSE_IMAGE
1869 // -----------------------------------------------------------------------
1870 // wxMultiChoiceProperty
1871 // -----------------------------------------------------------------------
1875 #include "wx/choicdlg.h"
1877 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxMultiChoiceProperty
,wxPGProperty
,
1878 wxArrayInt
,const wxArrayInt
&,TextCtrlAndButton
)
1880 wxMultiChoiceProperty::wxMultiChoiceProperty( const wxString
& label
,
1881 const wxString
& name
,
1882 const wxPGChoices
& choices
,
1883 const wxArrayString
& value
)
1884 : wxPGProperty(label
,name
)
1886 m_choices
.Assign(choices
);
1890 wxMultiChoiceProperty::wxMultiChoiceProperty( const wxString
& label
,
1891 const wxString
& name
,
1892 const wxArrayString
& strings
,
1893 const wxArrayString
& value
)
1894 : wxPGProperty(label
,name
)
1896 m_choices
.Set(strings
);
1900 wxMultiChoiceProperty::wxMultiChoiceProperty( const wxString
& label
,
1901 const wxString
& name
,
1902 const wxArrayString
& value
)
1903 : wxPGProperty(label
,name
)
1905 wxArrayString strings
;
1906 m_choices
.Set(strings
);
1910 wxMultiChoiceProperty::~wxMultiChoiceProperty()
1914 void wxMultiChoiceProperty::OnSetValue()
1916 GenerateValueAsString(m_value
, &m_display
);
1919 wxString
wxMultiChoiceProperty::ValueToString( wxVariant
& value
,
1920 int argFlags
) const
1922 // If possible, use cached string
1923 if ( argFlags
& wxPG_VALUE_IS_CURRENT
)
1927 GenerateValueAsString(value
, &s
);
1931 void wxMultiChoiceProperty::GenerateValueAsString( wxVariant
& value
,
1932 wxString
* target
) const
1934 wxArrayString strings
;
1936 if ( value
.GetType() == wxPG_VARIANT_TYPE_ARRSTRING
)
1937 strings
= value
.GetArrayString();
1939 wxString
& tempStr
= *target
;
1941 unsigned int itemCount
= strings
.size();
1946 tempStr
.append( wxT("\"") );
1948 for ( i
= 0; i
< itemCount
; i
++ )
1950 tempStr
.append( strings
[i
] );
1951 tempStr
.append( wxT("\"") );
1952 if ( i
< (itemCount
-1) )
1953 tempStr
.append ( wxT(" \"") );
1957 wxArrayInt
wxMultiChoiceProperty::GetValueAsIndices() const
1959 wxVariant variant
= GetValue();
1960 const wxArrayInt
& valueArr
= wxArrayIntRefFromVariant(variant
);
1963 // Translate values to string indices.
1964 wxArrayInt selections
;
1966 if ( !m_choices
.IsOk() || !m_choices
.GetCount() || !(&valueArr
) )
1968 for ( i
=0; i
<valueArr
.size(); i
++ )
1973 for ( i
=0; i
<valueArr
.size(); i
++ )
1975 int sIndex
= m_choices
.Index(valueArr
[i
]);
1977 selections
.Add(sIndex
);
1984 bool wxMultiChoiceProperty::OnEvent( wxPropertyGrid
* propgrid
,
1985 wxWindow
* WXUNUSED(primary
),
1988 if ( propgrid
->IsMainButtonEvent(event
) )
1991 wxVariant useValue
= propgrid
->GetUncommittedPropertyValue();
1993 wxArrayString labels
= m_choices
.GetLabels();
1994 unsigned int choiceCount
;
1996 if ( m_choices
.IsOk() )
1997 choiceCount
= m_choices
.GetCount();
2001 // launch editor dialog
2002 wxMultiChoiceDialog
dlg( propgrid
,
2003 _("Make a selection:"),
2006 choiceCount
?&labels
[0]:NULL
,
2007 wxCHOICEDLG_STYLE
);
2009 dlg
.Move( propgrid
->GetGoodEditorDialogPosition(this,dlg
.GetSize()) );
2011 wxArrayString strings
= useValue
.GetArrayString();
2012 wxArrayString extraStrings
;
2014 dlg
.SetSelections(m_choices
.GetIndicesForStrings(strings
, &extraStrings
));
2016 if ( dlg
.ShowModal() == wxID_OK
&& choiceCount
)
2018 int userStringMode
= GetAttributeAsLong(wxT("UserStringMode"), 0);
2020 wxArrayInt arrInt
= dlg
.GetSelections();
2024 // Strings that were not in list of choices
2025 wxArrayString value
;
2027 // Translate string indices to strings
2030 if ( userStringMode
== 1 )
2032 for (n
=0;n
<extraStrings
.size();n
++)
2033 value
.push_back(extraStrings
[n
]);
2037 for ( i
=0; i
<arrInt
.size(); i
++ )
2038 value
.Add(m_choices
.GetLabel(arrInt
.Item(i
)));
2040 if ( userStringMode
== 2 )
2042 for (n
=0;n
<extraStrings
.size();n
++)
2043 value
.push_back(extraStrings
[n
]);
2046 variant
= WXVARIANT(value
);
2048 SetValueInEvent(variant
);
2056 bool wxMultiChoiceProperty::StringToValue( wxVariant
& variant
, const wxString
& text
, int ) const
2060 int userStringMode
= GetAttributeAsLong(wxT("UserStringMode"), 0);
2062 WX_PG_TOKENIZER2_BEGIN(text
,wxT('"'))
2063 if ( userStringMode
> 0 || (m_choices
.IsOk() && m_choices
.Index( token
) != wxNOT_FOUND
) )
2065 WX_PG_TOKENIZER2_END()
2067 wxVariant
v( WXVARIANT(arr
) );
2073 #endif // wxUSE_CHOICEDLG
2076 // -----------------------------------------------------------------------
2078 // -----------------------------------------------------------------------
2083 #if wxUSE_DATEPICKCTRL
2084 #define dtCtrl DatePickerCtrl
2086 #define dtCtrl TextCtrl
2089 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxDateProperty
,
2096 wxString
wxDateProperty::ms_defaultDateFormat
;
2099 wxDateProperty::wxDateProperty( const wxString
& label
,
2100 const wxString
& name
,
2101 const wxDateTime
& value
)
2102 : wxPGProperty(label
,name
)
2104 //wxPGRegisterDefaultValueType(wxDateTime)
2106 #if wxUSE_DATEPICKCTRL
2107 wxPGRegisterEditorClass(DatePickerCtrl
);
2109 m_dpStyle
= wxDP_DEFAULT
| wxDP_SHOWCENTURY
;
2117 wxDateProperty::~wxDateProperty()
2121 void wxDateProperty::OnSetValue()
2124 // Convert invalid dates to unspecified value
2125 if ( m_value
.GetType() == wxT("datetime") )
2127 if ( !m_value
.GetDateTime().IsValid() )
2132 bool wxDateProperty::StringToValue( wxVariant
& variant
, const wxString
& text
,
2133 int WXUNUSED(argFlags
) ) const
2137 // FIXME: do we really want to return true from here if only part of the
2138 // string was parsed?
2139 const char* c
= dt
.ParseFormat(text
);
2150 wxString
wxDateProperty::ValueToString( wxVariant
& value
,
2151 int argFlags
) const
2153 const wxChar
* format
= (const wxChar
*) NULL
;
2155 wxDateTime dateTime
= value
.GetDateTime();
2157 if ( !dateTime
.IsValid() )
2158 return wxT("Invalid");
2160 if ( !ms_defaultDateFormat
.length() )
2162 #if wxUSE_DATEPICKCTRL
2163 bool showCentury
= m_dpStyle
& wxDP_SHOWCENTURY
? true : false;
2165 bool showCentury
= true;
2167 ms_defaultDateFormat
= DetermineDefaultDateFormat( showCentury
);
2170 if ( m_format
.length() &&
2171 !(argFlags
& wxPG_FULL_VALUE
) )
2172 format
= m_format
.c_str();
2174 // Determine default from locale
2175 // NB: This is really simple stuff, but can't figure anything
2176 // better without proper support in wxLocale
2178 format
= ms_defaultDateFormat
.c_str();
2180 return dateTime
.Format(format
);
2183 wxString
wxDateProperty::DetermineDefaultDateFormat( bool showCentury
)
2185 // This code is basicly copied from datectlg.cpp's SetFormat
2190 dt
.ParseFormat(wxT("2003-10-13"), wxT("%Y-%m-%d"));
2191 wxString
str(dt
.Format(wxT("%x")));
2193 const wxChar
*p
= str
.c_str();
2197 if (n
== dt
.GetDay())
2199 format
.Append(wxT("%d"));
2202 else if (n
== (int)dt
.GetMonth()+1)
2204 format
.Append(wxT("%m"));
2207 else if (n
== dt
.GetYear())
2209 format
.Append(wxT("%Y"));
2212 else if (n
== (dt
.GetYear() % 100))
2215 format
.Append(wxT("%Y"));
2217 format
.Append(wxT("%y"));
2221 format
.Append(*p
++);
2227 bool wxDateProperty::DoSetAttribute( const wxString
& name
, wxVariant
& value
)
2229 if ( name
== wxPG_DATE_FORMAT
)
2231 m_format
= value
.GetString();
2234 else if ( name
== wxPG_DATE_PICKER_STYLE
)
2236 m_dpStyle
= value
.GetLong();
2237 ms_defaultDateFormat
.clear(); // This may need recalculation
2243 #endif // wxUSE_DATETIME
2246 // -----------------------------------------------------------------------
2247 // wxPropertyGridInterface
2248 // -----------------------------------------------------------------------
2250 void wxPropertyGridInterface::InitAllTypeHandlers()
2254 // -----------------------------------------------------------------------
2256 void wxPropertyGridInterface::RegisterAdditionalEditors()
2258 // Register editor classes, if necessary.
2259 if ( wxPGGlobalVars
->m_mapEditorClasses
.empty() )
2260 wxPropertyGrid::RegisterDefaultEditors();
2263 wxPGRegisterEditorClass(SpinCtrl
);
2265 #if wxUSE_DATEPICKCTRL
2266 wxPGRegisterEditorClass(DatePickerCtrl
);
2270 // -----------------------------------------------------------------------
2272 #endif // wxPG_INCLUDE_ADVPROPS
2274 #endif // wxUSE_PROPGRID