1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/propgrid/property.cpp
3 // Purpose: wxPGProperty and related support classes
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/dcmemory.h"
34 #include "wx/settings.h"
38 #include "wx/propgrid/propgrid.h"
41 #define PWC_CHILD_SUMMARY_LIMIT 16 // Maximum number of children summarized in a parent property's
44 #define PWC_CHILD_SUMMARY_CHAR_LIMIT 64 // Character limit of summary field when not editing
46 #if wxPG_COMPATIBILITY_1_4
48 // Used to establish backwards compatiblity
49 const char* g_invalidStringContent
= "@__TOTALLY_INVALID_STRING__@";
53 // -----------------------------------------------------------------------
55 static void wxPGDrawFocusRect( wxDC
& dc
, const wxRect
& rect
)
57 #if defined(__WXMSW__) && !defined(__WXWINCE__)
58 // FIXME: Use DrawFocusRect code above (currently it draws solid line
59 // for caption focus but works ok for other stuff).
60 // Also, it seems that this code may not work in future wx versions.
61 dc
.SetLogicalFunction(wxINVERT
);
63 wxPen
pen(*wxBLACK
,1,wxDOT
);
64 pen
.SetCap(wxCAP_BUTT
);
66 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
68 dc
.DrawRectangle(rect
);
70 dc
.SetLogicalFunction(wxCOPY
);
72 dc
.SetLogicalFunction(wxINVERT
);
74 dc
.SetPen(wxPen(*wxBLACK
,1,wxDOT
));
75 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
77 dc
.DrawRectangle(rect
);
79 dc
.SetLogicalFunction(wxCOPY
);
83 // -----------------------------------------------------------------------
85 // -----------------------------------------------------------------------
87 wxSize
wxPGCellRenderer::GetImageSize( const wxPGProperty
* WXUNUSED(property
),
89 int WXUNUSED(item
) ) const
94 void wxPGCellRenderer::DrawText( wxDC
& dc
, const wxRect
& rect
,
95 int xOffset
, const wxString
& text
) const
98 rect
.x
+xOffset
+wxPG_XBEFORETEXT
,
99 rect
.y
+((rect
.height
-dc
.GetCharHeight())/2) );
102 void wxPGCellRenderer::DrawEditorValue( wxDC
& dc
, const wxRect
& rect
,
103 int xOffset
, const wxString
& text
,
104 wxPGProperty
* property
,
105 const wxPGEditor
* editor
) const
107 int yOffset
= ((rect
.height
-dc
.GetCharHeight())/2);
114 rect2
.height
-= yOffset
;
115 editor
->DrawValue( dc
, rect2
, property
, text
);
120 rect
.x
+xOffset
+wxPG_XBEFORETEXT
,
125 void wxPGCellRenderer::DrawCaptionSelectionRect( wxDC
& dc
, int x
, int y
, int w
, int h
) const
127 wxRect
focusRect(x
,y
+((h
-dc
.GetCharHeight())/2),w
,h
);
128 wxPGDrawFocusRect(dc
,focusRect
);
131 int wxPGCellRenderer::PreDrawCell( wxDC
& dc
, const wxRect
& rect
, const wxPGCell
& cell
, int flags
) const
135 // If possible, use cell colours
136 if ( !(flags
& DontUseCellBgCol
) )
138 dc
.SetPen(cell
.GetBgCol());
139 dc
.SetBrush(cell
.GetBgCol());
142 if ( !(flags
& DontUseCellFgCol
) )
144 dc
.SetTextForeground(cell
.GetFgCol());
147 // Draw Background, but only if not rendering in control
148 // (as control already has rendered correct background).
149 if ( !(flags
& (Control
|ChoicePopup
)) )
150 dc
.DrawRectangle(rect
);
152 const wxBitmap
& bmp
= cell
.GetBitmap();
154 // Do not draw oversized bitmap outside choice popup
155 ((flags
& ChoicePopup
) || bmp
.GetHeight() < rect
.height
)
159 rect
.x
+ wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
160 rect
.y
+ wxPG_CUSTOM_IMAGE_SPACINGY
,
162 imageWidth
= bmp
.GetWidth();
168 // -----------------------------------------------------------------------
169 // wxPGDefaultRenderer
170 // -----------------------------------------------------------------------
172 void wxPGDefaultRenderer::Render( wxDC
& dc
, const wxRect
& rect
,
173 const wxPropertyGrid
* propertyGrid
, wxPGProperty
* property
,
174 int column
, int item
, int flags
) const
176 bool isUnspecified
= property
->IsValueUnspecified();
178 if ( column
== 1 && item
== -1 )
180 int cmnVal
= property
->GetCommonValue();
184 if ( !isUnspecified
)
185 DrawText( dc
, rect
, 0, propertyGrid
->GetCommonValueLabel(cmnVal
) );
190 const wxPGEditor
* editor
= NULL
;
191 const wxPGCell
* cell
= NULL
;
195 int preDrawFlags
= flags
;
197 property
->GetDisplayInfo(column
, item
, flags
, &text
, &cell
);
199 imageWidth
= PreDrawCell( dc
, rect
, *cell
, preDrawFlags
);
203 if ( !isUnspecified
)
205 editor
= property
->GetColumnEditor(column
);
207 // Regular property value
209 wxSize imageSize
= propertyGrid
->GetImageSize(property
, item
);
211 wxPGPaintData paintdata
;
212 paintdata
.m_parent
= propertyGrid
;
213 paintdata
.m_choiceItem
= item
;
215 if ( imageSize
.x
> 0 )
217 wxRect
imageRect(rect
.x
+ wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
218 rect
.y
+wxPG_CUSTOM_IMAGE_SPACINGY
,
219 wxPG_CUSTOM_IMAGE_WIDTH
,
220 rect
.height
-(wxPG_CUSTOM_IMAGE_SPACINGY
*2));
222 dc
.SetPen( wxPen(propertyGrid
->GetCellTextColour(), 1, wxSOLID
) );
224 paintdata
.m_drawnWidth
= imageSize
.x
;
225 paintdata
.m_drawnHeight
= imageSize
.y
;
227 property
->OnCustomPaint( dc
, imageRect
, paintdata
);
229 imageWidth
= paintdata
.m_drawnWidth
;
232 text
= property
->GetValueAsString();
235 if ( propertyGrid
->GetColumnCount() <= 2 )
237 wxString unitsString
= property
->GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
238 if ( unitsString
.length() )
239 text
= wxString::Format(wxS("%s %s"), text
.c_str(), unitsString
.c_str() );
243 if ( text
.length() == 0 )
245 // Try to show inline help if no text
246 wxVariant vInlineHelp
= property
->GetAttribute(wxPGGlobalVars
->m_strInlineHelp
);
247 if ( !vInlineHelp
.IsNull() )
249 text
= vInlineHelp
.GetString();
250 dc
.SetTextForeground(propertyGrid
->GetCellDisabledTextColour());
255 int imageOffset
= property
->GetImageOffset(imageWidth
);
257 DrawEditorValue( dc
, rect
, imageOffset
, text
, property
, editor
);
259 // active caption gets nice dotted rectangle
260 if ( property
->IsCategory() /*&& column == 0*/ )
262 if ( flags
& Selected
)
264 if ( imageWidth
> 0 )
266 imageOffset
-= DEFAULT_IMAGE_OFFSET_INCREMENT
;
267 imageWidth
+= wxCC_CUSTOM_IMAGE_MARGIN2
+ 4;
270 DrawCaptionSelectionRect( dc
,
271 rect
.x
+wxPG_XBEFORETEXT
-wxPG_CAPRECTXMARGIN
+imageOffset
,
272 rect
.y
-wxPG_CAPRECTYMARGIN
+1,
273 ((wxPropertyCategory
*)property
)->GetTextExtent(propertyGrid
,
274 propertyGrid
->GetCaptionFont())
275 +(wxPG_CAPRECTXMARGIN
*2),
276 propertyGrid
->GetFontHeight()+(wxPG_CAPRECTYMARGIN
*2) );
281 wxSize
wxPGDefaultRenderer::GetImageSize( const wxPGProperty
* property
,
285 if ( property
&& column
== 1 )
289 wxBitmap
* bmp
= property
->GetValueImage();
291 if ( bmp
&& bmp
->Ok() )
292 return wxSize(bmp
->GetWidth(),bmp
->GetHeight());
298 // -----------------------------------------------------------------------
300 // -----------------------------------------------------------------------
302 wxPGCellData::wxPGCellData()
305 m_hasValidText
= false;
308 // -----------------------------------------------------------------------
310 // -----------------------------------------------------------------------
317 wxPGCell::wxPGCell( const wxString
& text
,
318 const wxBitmap
& bitmap
,
319 const wxColour
& fgCol
,
320 const wxColour
& bgCol
)
323 wxPGCellData
* data
= new wxPGCellData();
326 data
->m_bitmap
= bitmap
;
327 data
->m_fgCol
= fgCol
;
328 data
->m_bgCol
= bgCol
;
329 data
->m_hasValidText
= true;
332 wxObjectRefData
*wxPGCell::CloneRefData( const wxObjectRefData
*data
) const
334 wxPGCellData
* c
= new wxPGCellData();
335 const wxPGCellData
* o
= (const wxPGCellData
*) data
;
336 c
->m_text
= o
->m_text
;
337 c
->m_bitmap
= o
->m_bitmap
;
338 c
->m_fgCol
= o
->m_fgCol
;
339 c
->m_bgCol
= o
->m_bgCol
;
340 c
->m_hasValidText
= o
->m_hasValidText
;
344 void wxPGCell::SetText( const wxString
& text
)
348 GetData()->SetText(text
);
351 void wxPGCell::SetBitmap( const wxBitmap
& bitmap
)
355 GetData()->SetBitmap(bitmap
);
358 void wxPGCell::SetFgCol( const wxColour
& col
)
362 GetData()->SetFgCol(col
);
365 void wxPGCell::SetBgCol( const wxColour
& col
)
369 GetData()->SetBgCol(col
);
372 void wxPGCell::MergeFrom( const wxPGCell
& srcCell
)
376 wxPGCellData
* data
= GetData();
378 if ( srcCell
.HasText() )
379 data
->SetText(srcCell
.GetText());
381 if ( srcCell
.GetFgCol().IsOk() )
382 data
->SetFgCol(srcCell
.GetFgCol());
384 if ( srcCell
.GetBgCol().IsOk() )
385 data
->SetBgCol(srcCell
.GetBgCol());
387 if ( srcCell
.GetBitmap().IsOk() )
388 data
->SetBitmap(srcCell
.GetBitmap());
391 // -----------------------------------------------------------------------
393 // -----------------------------------------------------------------------
395 IMPLEMENT_ABSTRACT_CLASS(wxPGProperty
, wxObject
)
397 wxString
* wxPGProperty::sm_wxPG_LABEL
= NULL
;
399 void wxPGProperty::Init()
405 m_parentState
= NULL
;
408 m_clientObject
= NULL
;
410 m_customEditor
= NULL
;
414 m_valueBitmap
= NULL
;
416 m_maxLen
= 0; // infinite maximum length
418 m_flags
= wxPG_PROP_PROPERTY
;
426 void wxPGProperty::Init( const wxString
& label
, const wxString
& name
)
428 // We really need to check if &label and &name are NULL pointers
429 // (this can if we are called before property grid has been initalized)
431 if ( (&label
) != NULL
&& label
!= wxPG_LABEL
)
434 if ( (&name
) != NULL
&& name
!= wxPG_LABEL
)
437 DoSetName( m_label
);
442 void wxPGProperty::InitAfterAdded( wxPropertyGridPageState
* pageState
,
443 wxPropertyGrid
* propgrid
)
446 // Called after property has been added to grid or page
447 // (so propgrid can be NULL, too).
449 wxPGProperty
* parent
= m_parent
;
450 bool parentIsRoot
= parent
->IsKindOf(CLASSINFO(wxPGRootProperty
));
452 m_parentState
= pageState
;
454 #if wxPG_COMPATIBILITY_1_4
455 // Make sure deprecated virtual functions are not implemented
456 wxString s
= GetValueAsString( 0xFFFF );
457 wxASSERT_MSG( s
== g_invalidStringContent
,
458 "Implement ValueToString() instead of GetValueAsString()" );
461 if ( !parentIsRoot
&& !parent
->IsCategory() )
463 m_cells
= parent
->m_cells
;
466 // If in hideable adding mode, or if assigned parent is hideable, then
467 // make this one hideable.
469 ( !parentIsRoot
&& parent
->HasFlag(wxPG_PROP_HIDDEN
) ) ||
470 ( propgrid
&& (propgrid
->HasInternalFlag(wxPG_FL_ADDING_HIDEABLES
)) )
472 SetFlag( wxPG_PROP_HIDDEN
);
474 // Set custom image flag.
475 int custImgHeight
= OnMeasureImage().y
;
476 if ( custImgHeight
< 0 )
478 SetFlag(wxPG_PROP_CUSTOMIMAGE
);
481 if ( propgrid
&& (propgrid
->HasFlag(wxPG_LIMITED_EDITING
)) )
482 SetFlag(wxPG_PROP_NOEDITOR
);
484 // Make sure parent has some parental flags
485 if ( !parent
->HasFlag(wxPG_PROP_PARENTAL_FLAGS
) )
486 parent
->SetParentalType(wxPG_PROP_MISC_PARENT
);
490 // This is not a category.
494 unsigned char depth
= 1;
497 depth
= parent
->m_depth
;
498 if ( !parent
->IsCategory() )
502 unsigned char greyDepth
= depth
;
506 wxPropertyCategory
* pc
;
508 if ( parent
->IsCategory() )
509 pc
= (wxPropertyCategory
* ) parent
;
511 // This conditional compile is necessary to
512 // bypass some compiler bug.
513 pc
= pageState
->GetPropertyCategory(parent
);
516 greyDepth
= pc
->GetDepth();
518 greyDepth
= parent
->m_depthBgCol
;
521 m_depthBgCol
= greyDepth
;
525 // This is a category.
528 unsigned char depth
= 1;
531 depth
= parent
->m_depth
+ 1;
534 m_depthBgCol
= depth
;
538 // Has initial children
539 if ( GetChildCount() )
541 // Check parental flags
542 wxASSERT_MSG( ((m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
543 wxPG_PROP_AGGREGATE
) ||
544 ((m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
545 wxPG_PROP_MISC_PARENT
),
546 "wxPGProperty parental flags set incorrectly at "
549 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
551 // Properties with private children are not expanded by default.
554 else if ( propgrid
&& propgrid
->HasFlag(wxPG_HIDE_MARGIN
) )
556 // ...unless it cannot be expanded by user and therefore must
557 // remain visible at all times
562 // Prepare children recursively
563 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
565 wxPGProperty
* child
= Item(i
);
566 child
->InitAfterAdded(pageState
, pageState
->GetGrid());
569 if ( propgrid
&& (propgrid
->GetExtraStyle() & wxPG_EX_AUTO_UNSPECIFIED_VALUES
) )
570 SetFlagRecursively(wxPG_PROP_AUTO_UNSPECIFIED
, true);
574 wxPGProperty::wxPGProperty()
581 wxPGProperty::wxPGProperty( const wxString
& label
, const wxString
& name
)
588 wxPGProperty::~wxPGProperty()
590 delete m_clientObject
;
592 Empty(); // this deletes items
594 delete m_valueBitmap
;
599 // This makes it easier for us to detect dangling pointers
604 bool wxPGProperty::IsSomeParent( wxPGProperty
* candidate
) const
606 wxPGProperty
* parent
= m_parent
;
609 if ( parent
== candidate
)
611 parent
= parent
->m_parent
;
617 wxString
wxPGProperty::GetName() const
619 wxPGProperty
* parent
= GetParent();
621 if ( !m_name
.length() || !parent
|| parent
->IsCategory() || parent
->IsRoot() )
624 return m_parent
->GetName() + wxS(".") + m_name
;
627 wxPropertyGrid
* wxPGProperty::GetGrid() const
629 if ( !m_parentState
)
631 return m_parentState
->GetGrid();
634 int wxPGProperty::Index( const wxPGProperty
* p
) const
636 for ( unsigned int i
= 0; i
<m_children
.size(); i
++ )
638 if ( p
== m_children
[i
] )
644 bool wxPGProperty::ValidateValue( wxVariant
& WXUNUSED(value
), wxPGValidationInfo
& WXUNUSED(validationInfo
) ) const
649 void wxPGProperty::OnSetValue()
653 void wxPGProperty::RefreshChildren ()
657 void wxPGProperty::OnValidationFailure( wxVariant
& WXUNUSED(pendingValue
) )
661 void wxPGProperty::GetDisplayInfo( unsigned int column
,
665 const wxPGCell
** pCell
)
667 const wxPGCell
* cell
= NULL
;
669 if ( !(flags
& wxPGCellRenderer::ChoicePopup
) )
671 // Not painting listi of choice popups, so get text from property
672 cell
= &GetCell(column
);
673 if ( cell
->HasText() )
675 *pString
= cell
->GetText();
680 *pString
= GetLabel();
681 else if ( column
== 1 )
682 *pString
= GetDisplayedString();
683 else if ( column
== 2 )
684 *pString
= GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
689 wxASSERT( column
== 1 );
691 if ( choiceIndex
!= wxNOT_FOUND
)
693 const wxPGChoiceEntry
& entry
= m_choices
[choiceIndex
];
694 if ( entry
.GetBitmap().IsOk() ||
695 entry
.GetFgCol().IsOk() ||
696 entry
.GetBgCol().IsOk() )
698 *pString
= m_choices
.GetLabel(choiceIndex
);
703 cell
= &GetCell(column
);
705 wxASSERT_MSG( cell
->GetData(),
706 wxString::Format("Invalid cell for property %s",
707 GetName().c_str()) );
713 wxString wxPGProperty::GetColumnText( unsigned int col, int choiceIndex ) const
716 if ( col != 1 || choiceIndex == wxNOT_FOUND )
718 const wxPGCell& cell = GetCell(col);
719 if ( cell->HasText() )
721 return cell->GetText();
728 return GetDisplayedString();
730 return GetAttribute(wxPGGlobalVars->m_strUnits, wxEmptyString);
736 return m_choices.GetLabel(choiceIndex);
739 return wxEmptyString;
743 void wxPGProperty::DoGenerateComposedValue( wxString
& text
,
745 const wxVariantList
* valueOverrides
,
746 wxPGHashMapS2S
* childResults
) const
749 int iMax
= m_children
.size();
755 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
756 !(argFlags
& wxPG_FULL_VALUE
) )
757 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
759 int iMaxMinusOne
= iMax
-1;
761 if ( !IsTextEditable() )
762 argFlags
|= wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
;
764 wxPGProperty
* curChild
= m_children
[0];
766 bool overridesLeft
= false;
767 wxVariant overrideValue
;
768 wxVariantList::const_iterator node
;
770 if ( valueOverrides
)
772 node
= valueOverrides
->begin();
773 if ( node
!= valueOverrides
->end() )
775 overrideValue
= *node
;
776 overridesLeft
= true;
780 for ( i
= 0; i
< iMax
; i
++ )
782 wxVariant childValue
;
784 wxString childLabel
= curChild
->GetLabel();
786 // Check for value override
787 if ( overridesLeft
&& overrideValue
.GetName() == childLabel
)
789 if ( !overrideValue
.IsNull() )
790 childValue
= overrideValue
;
792 childValue
= curChild
->GetValue();
794 if ( node
!= valueOverrides
->end() )
795 overrideValue
= *node
;
797 overridesLeft
= false;
801 childValue
= curChild
->GetValue();
805 if ( !childValue
.IsNull() )
807 if ( overridesLeft
&&
808 curChild
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
809 childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
811 wxVariantList
& childList
= childValue
.GetList();
812 DoGenerateComposedValue(s
, argFlags
|wxPG_COMPOSITE_FRAGMENT
,
813 &childList
, childResults
);
817 s
= curChild
->ValueToString(childValue
,
818 argFlags
|wxPG_COMPOSITE_FRAGMENT
);
822 if ( childResults
&& curChild
->GetChildCount() )
823 (*childResults
)[curChild
->GetName()] = s
;
826 if ( (argFlags
& wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
) && !s
.length() )
829 if ( !curChild
->GetChildCount() || skip
)
832 text
+= wxS("[") + s
+ wxS("]");
834 if ( i
< iMaxMinusOne
)
836 if ( text
.length() > PWC_CHILD_SUMMARY_CHAR_LIMIT
&&
837 !(argFlags
& wxPG_EDITABLE_VALUE
) &&
838 !(argFlags
& wxPG_FULL_VALUE
) )
843 if ( !curChild
->GetChildCount() )
849 curChild
= m_children
[i
+1];
853 if ( (unsigned int)i
< m_children
.size() )
855 if ( !text
.EndsWith(wxS("; ")) )
856 text
+= wxS("; ...");
862 wxString
wxPGProperty::ValueToString( wxVariant
& WXUNUSED(value
),
865 wxCHECK_MSG( GetChildCount() > 0,
867 "If user property does not have any children, it must "
868 "override GetValueAsString" );
870 // FIXME: Currently code below only works if value is actually m_value
871 wxASSERT_MSG( argFlags
& wxPG_VALUE_IS_CURRENT
,
872 "Sorry, currently default wxPGProperty::ValueToString() "
873 "implementation only works if value is m_value." );
876 DoGenerateComposedValue(text
, argFlags
);
880 wxString
wxPGProperty::GetValueAsString( int argFlags
) const
882 #if wxPG_COMPATIBILITY_1_4
883 // This is backwards compatibility test
884 // That is, to make sure this function is not overridden
885 // (instead, ValueToString() should be).
886 if ( argFlags
== 0xFFFF )
888 // Do not override! (for backwards compliancy)
889 return g_invalidStringContent
;
893 if ( IsValueUnspecified() )
894 return wxEmptyString
;
896 if ( m_commonValue
== -1 )
898 wxVariant
value(GetValue());
899 return ValueToString(value
, argFlags
|wxPG_VALUE_IS_CURRENT
);
903 // Return common value's string representation
904 wxPropertyGrid
* pg
= GetGrid();
905 const wxPGCommonValue
* cv
= pg
->GetCommonValue(m_commonValue
);
907 if ( argFlags
& wxPG_FULL_VALUE
)
909 return cv
->GetLabel();
911 else if ( argFlags
& wxPG_EDITABLE_VALUE
)
913 return cv
->GetEditableText();
917 return cv
->GetLabel();
921 wxString
wxPGProperty::GetValueString( int argFlags
) const
923 return GetValueAsString(argFlags
);
926 bool wxPGProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
928 variant
= (long)number
;
932 // Convert semicolon delimited tokens into child values.
933 bool wxPGProperty::StringToValue( wxVariant
& variant
, const wxString
& text
, int argFlags
) const
935 if ( !GetChildCount() )
938 unsigned int curChild
= 0;
940 unsigned int iMax
= m_children
.size();
942 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
943 !(argFlags
& wxPG_FULL_VALUE
) )
944 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
946 bool changed
= false;
951 // Its best only to add non-empty group items
952 bool addOnlyIfNotEmpty
= false;
953 const wxChar delimeter
= wxS(';');
955 size_t tokenStart
= 0xFFFFFF;
957 wxVariantList temp_list
;
958 wxVariant
list(temp_list
);
960 int propagatedFlags
= argFlags
& (wxPG_REPORT_ERROR
|wxPG_PROGRAMMATIC_VALUE
);
963 bool debug_print
= false;
968 wxLogDebug(wxT(">> %s.StringToValue('%s')"),GetLabel().c_str(),text
.c_str());
971 wxString::const_iterator it
= text
.begin();
974 if ( it
!= text
.end() )
981 // How many units we iterate string forward at the end of loop?
982 // We need to keep track of this or risk going to negative
983 // with it-- operation.
984 unsigned int strPosIncrement
= 1;
986 if ( tokenStart
!= 0xFFFFFF )
989 if ( a
== delimeter
|| a
== 0 )
991 token
= text
.substr(tokenStart
,pos
-tokenStart
);
993 size_t len
= token
.length();
995 if ( !addOnlyIfNotEmpty
|| len
> 0 )
997 const wxPGProperty
* child
= Item(curChild
);
998 wxVariant
variant(child
->GetValue());
999 wxString childName
= child
->GetBaseName();
1003 wxLogDebug(wxT("token = '%s', child = %s"),
1004 token
.c_str(), childName
.c_str());
1007 // Add only if editable or setting programmatically
1008 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1009 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1013 if ( child
->StringToValue(variant
, token
,
1014 propagatedFlags
|wxPG_COMPOSITE_FRAGMENT
) )
1016 // We really need to set the variant's name
1017 // *after* child->StringToValue() has been
1018 // called, since variant's value may be set by
1019 // assigning another variant into it, which
1020 // then usually causes name to be copied (ie.
1021 // usually cleared) as well. wxBoolProperty
1022 // being case in point with its use of
1023 // wxPGVariant_Bool macro as an optimization.
1024 variant
.SetName(childName
);
1025 list
.Append(variant
);
1032 // Empty, becomes unspecified
1034 variant
.SetName(childName
);
1035 list
.Append(variant
);
1041 if ( curChild
>= iMax
)
1045 tokenStart
= 0xFFFFFF;
1050 // Token is not running
1051 if ( a
!= wxS(' ') )
1054 addOnlyIfNotEmpty
= false;
1056 // Is this a group of tokens?
1057 if ( a
== wxS('[') )
1061 if ( it
!= text
.end() ) ++it
;
1063 size_t startPos
= pos
;
1065 // Group item - find end
1066 while ( it
!= text
.end() && depth
> 0 )
1072 if ( a
== wxS(']') )
1074 else if ( a
== wxS('[') )
1078 token
= text
.substr(startPos
,pos
-startPos
-1);
1080 if ( !token
.length() )
1083 const wxPGProperty
* child
= Item(curChild
);
1085 wxVariant oldChildValue
= child
->GetValue();
1086 wxVariant
variant(oldChildValue
);
1088 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1089 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1091 wxString childName
= child
->GetBaseName();
1093 bool stvRes
= child
->StringToValue( variant
, token
,
1095 if ( stvRes
|| (variant
!= oldChildValue
) )
1097 variant
.SetName(childName
);
1098 list
.Append(variant
);
1109 if ( curChild
>= iMax
)
1112 addOnlyIfNotEmpty
= true;
1114 tokenStart
= 0xFFFFFF;
1120 if ( a
== delimeter
)
1121 strPosIncrement
-= 1;
1129 it
+= strPosIncrement
;
1131 if ( it
!= text
.end() )
1140 pos
+= strPosIncrement
;
1149 bool wxPGProperty::SetValueFromString( const wxString
& text
, int argFlags
)
1151 wxVariant
variant(m_value
);
1152 bool res
= StringToValue(variant
, text
, argFlags
);
1158 bool wxPGProperty::SetValueFromInt( long number
, int argFlags
)
1160 wxVariant
variant(m_value
);
1161 bool res
= IntToValue(variant
, number
, argFlags
);
1167 wxSize
wxPGProperty::OnMeasureImage( int WXUNUSED(item
) ) const
1169 if ( m_valueBitmap
)
1170 return wxSize(m_valueBitmap
->GetWidth(),-1);
1175 int wxPGProperty::GetImageOffset( int imageWidth
) const
1177 int imageOffset
= 0;
1181 // Do not increment offset too much for wide images
1182 if ( imageWidth
<= (wxPG_CUSTOM_IMAGE_WIDTH
+5) )
1183 imageOffset
= imageWidth
+ DEFAULT_IMAGE_OFFSET_INCREMENT
;
1185 imageOffset
= imageWidth
+ 1;
1191 wxPGCellRenderer
* wxPGProperty::GetCellRenderer( int WXUNUSED(column
) ) const
1193 return wxPGGlobalVars
->m_defaultRenderer
;
1196 void wxPGProperty::OnCustomPaint( wxDC
& dc
,
1200 wxBitmap
* bmp
= m_valueBitmap
;
1202 wxCHECK_RET( bmp
&& bmp
->Ok(), wxT("invalid bitmap") );
1204 wxCHECK_RET( rect
.x
>= 0, wxT("unexpected measure call") );
1206 dc
.DrawBitmap(*bmp
,rect
.x
,rect
.y
);
1209 const wxPGEditor
* wxPGProperty::DoGetEditorClass() const
1211 return wxPGEditor_TextCtrl
;
1214 // Default extra property event handling - that is, none at all.
1215 bool wxPGProperty::OnEvent( wxPropertyGrid
*, wxWindow
*, wxEvent
& )
1221 void wxPGProperty::SetValue( wxVariant value
, wxVariant
* pList
, int flags
)
1223 // If auto unspecified values are not wanted (via window or property style),
1224 // then get default value instead of wxNullVariant.
1225 if ( value
.IsNull() && (flags
& wxPG_SETVAL_BY_USER
) &&
1226 !UsesAutoUnspecified() )
1228 value
= GetDefaultValue();
1231 if ( !value
.IsNull() )
1233 wxVariant tempListVariant
;
1236 // List variants are reserved a special purpose
1237 // as intermediate containers for child values
1238 // of properties with children.
1239 if ( value
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1242 // However, situation is different for composed string properties
1243 if ( HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
1245 tempListVariant
= value
;
1246 pList
= &tempListVariant
;
1250 AdaptListToValue(value
, &newValue
);
1252 //wxLogDebug(wxT(">> %s.SetValue() adapted list value to type '%s'"),GetName().c_str(),value.GetType().c_str());
1255 if ( HasFlag( wxPG_PROP_AGGREGATE
) )
1256 flags
|= wxPG_SETVAL_AGGREGATED
;
1258 if ( pList
&& !pList
->IsNull() )
1260 wxASSERT( pList
->GetType() == wxPG_VARIANT_TYPE_LIST
);
1261 wxASSERT( GetChildCount() );
1262 wxASSERT( !IsCategory() );
1264 wxVariantList
& list
= pList
->GetList();
1265 wxVariantList::iterator node
;
1268 //wxLogDebug(wxT(">> %s.SetValue() pList parsing"),GetName().c_str());
1270 // Children in list can be in any order, but we will give hint to
1271 // GetPropertyByNameWH(). This optimizes for full list parsing.
1272 for ( node
= list
.begin(); node
!= list
.end(); ++node
)
1274 wxVariant
& childValue
= *((wxVariant
*)*node
);
1275 wxPGProperty
* child
= GetPropertyByNameWH(childValue
.GetName(), i
);
1278 //wxLogDebug(wxT("%i: child = %s, childValue.GetType()=%s"),i,child->GetBaseName().c_str(),childValue.GetType().c_str());
1279 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1281 if ( child
->HasFlag(wxPG_PROP_AGGREGATE
) && !(flags
& wxPG_SETVAL_AGGREGATED
) )
1283 wxVariant listRefCopy
= childValue
;
1284 child
->SetValue(childValue
, &listRefCopy
, flags
|wxPG_SETVAL_FROM_PARENT
);
1288 wxVariant oldVal
= child
->GetValue();
1289 child
->SetValue(oldVal
, &childValue
, flags
|wxPG_SETVAL_FROM_PARENT
);
1292 else if ( child
->GetValue() != childValue
)
1294 // For aggregate properties, we will trust RefreshChildren()
1295 // to update child values.
1296 if ( !HasFlag(wxPG_PROP_AGGREGATE
) )
1297 child
->SetValue(childValue
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1298 if ( flags
& wxPG_SETVAL_BY_USER
)
1299 child
->SetFlag(wxPG_PROP_MODIFIED
);
1306 if ( !value
.IsNull() )
1312 if ( flags
& wxPG_SETVAL_BY_USER
)
1313 SetFlag(wxPG_PROP_MODIFIED
);
1315 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
1320 if ( m_commonValue
!= -1 )
1322 wxPropertyGrid
* pg
= GetGrid();
1323 if ( !pg
|| m_commonValue
!= pg
->GetUnspecifiedCommonValue() )
1329 // Set children to unspecified, but only if aggregate or
1330 // value is <composed>
1331 if ( AreChildrenComponents() )
1334 for ( i
=0; i
<GetChildCount(); i
++ )
1335 Item(i
)->SetValue(value
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1339 if ( !(flags
& wxPG_SETVAL_FROM_PARENT
) )
1340 UpdateParentValues();
1343 // Update editor control
1346 // We need to check for these, otherwise GetGrid() may fail.
1347 if ( flags
& wxPG_SETVAL_REFRESH_EDITOR
)
1350 wxPropertyGrid
* pg
= GetGridIfDisplayed();
1352 pg
->DrawItemAndValueRelated(this);
1357 void wxPGProperty::SetValueInEvent( wxVariant value
) const
1359 GetGrid()->ValueChangeInEvent(value
);
1362 void wxPGProperty::SetFlagRecursively( FlagType flag
, bool set
)
1370 for ( i
= 0; i
< GetChildCount(); i
++ )
1371 Item(i
)->SetFlagRecursively(flag
, set
);
1374 void wxPGProperty::RefreshEditor()
1379 wxPropertyGrid
* pg
= GetGrid();
1380 if ( pg
&& pg
->GetSelectedProperty() == this )
1381 pg
->RefreshEditor();
1384 wxVariant
wxPGProperty::GetDefaultValue() const
1386 wxVariant defVal
= GetAttribute(wxS("DefaultValue"));
1387 if ( !defVal
.IsNull() )
1390 wxVariant value
= GetValue();
1392 if ( !value
.IsNull() )
1394 wxString
valueType(value
.GetType());
1396 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1397 return wxPGVariant_Zero
;
1398 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1399 return wxPGVariant_EmptyString
;
1400 if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1401 return wxPGVariant_False
;
1402 if ( valueType
== wxPG_VARIANT_TYPE_DOUBLE
)
1403 return wxVariant(0.0);
1404 if ( valueType
== wxPG_VARIANT_TYPE_ARRSTRING
)
1405 return wxVariant(wxArrayString());
1406 if ( valueType
== wxS("wxLongLong") )
1407 return WXVARIANT(wxLongLong(0));
1408 if ( valueType
== wxS("wxULongLong") )
1409 return WXVARIANT(wxULongLong(0));
1410 if ( valueType
== wxS("wxColour") )
1411 return WXVARIANT(*wxBLACK
);
1413 if ( valueType
== wxPG_VARIANT_TYPE_DATETIME
)
1414 return wxVariant(wxDateTime::Now());
1416 if ( valueType
== wxS("wxFont") )
1417 return WXVARIANT(*wxNORMAL_FONT
);
1418 if ( valueType
== wxS("wxPoint") )
1419 return WXVARIANT(wxPoint(0, 0));
1420 if ( valueType
== wxS("wxSize") )
1421 return WXVARIANT(wxSize(0, 0));
1427 void wxPGProperty::EnsureCells( unsigned int column
)
1429 if ( column
>= m_cells
.size() )
1431 // Fill empty slots with default cells
1432 wxPropertyGrid
* pg
= GetGrid();
1433 wxPGCell defaultCell
;
1435 if ( !HasFlag(wxPG_PROP_CATEGORY
) )
1436 defaultCell
= pg
->GetPropertyDefaultCell();
1438 defaultCell
= pg
->GetCategoryDefaultCell();
1440 // TODO: Replace with resize() call
1441 unsigned int cellCountMax
= column
+1;
1443 for ( unsigned int i
=m_cells
.size(); i
<cellCountMax
; i
++ )
1444 m_cells
.push_back(defaultCell
);
1448 void wxPGProperty::SetCell( int column
,
1449 const wxPGCell
& cell
)
1451 EnsureCells(column
);
1453 m_cells
[column
] = cell
;
1456 void wxPGProperty::AdaptiveSetCell( unsigned int firstCol
,
1457 unsigned int lastCol
,
1458 const wxPGCell
& cell
,
1459 const wxPGCell
& srcData
,
1460 wxPGCellData
* unmodCellData
,
1461 FlagType ignoreWithFlags
,
1465 // Sets cell in memory optimizing fashion. That is, if
1466 // current cell data matches unmodCellData, we will
1467 // simply get reference to data from cell. Otherwise,
1468 // cell information from srcData is merged into current.
1471 if ( !(m_flags
& ignoreWithFlags
) && !IsRoot() )
1473 EnsureCells(lastCol
);
1475 for ( unsigned int col
=firstCol
; col
<=lastCol
; col
++ )
1477 if ( m_cells
[col
].GetData() == unmodCellData
)
1479 // Data matches... use cell directly
1480 m_cells
[col
] = cell
;
1484 // Data did not match... merge valid information
1485 m_cells
[col
].MergeFrom(srcData
);
1492 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
1493 Item(i
)->AdaptiveSetCell( firstCol
,
1503 const wxPGCell
& wxPGProperty::GetCell( unsigned int column
) const
1505 if ( m_cells
.size() > column
)
1506 return m_cells
[column
];
1508 wxPropertyGrid
* pg
= GetGrid();
1511 return pg
->GetCategoryDefaultCell();
1513 return pg
->GetPropertyDefaultCell();
1516 wxPGCell
& wxPGProperty::GetCell( unsigned int column
)
1518 EnsureCells(column
);
1519 return m_cells
[column
];
1522 void wxPGProperty::SetBackgroundColour( const wxColour
& colour
,
1525 wxPGProperty
* firstProp
= this;
1528 // If category is tried to set recursively, skip it and only
1529 // affect the children.
1532 while ( firstProp
->IsCategory() )
1534 if ( !firstProp
->GetChildCount() )
1536 firstProp
= firstProp
->Item(0);
1540 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1541 wxPGCellData
* firstCellData
= firstCell
.GetData();
1543 wxPGCell
newCell(firstCell
);
1544 newCell
.SetBgCol(colour
);
1546 srcCell
.SetBgCol(colour
);
1549 GetParentState()->GetColumnCount()-1,
1553 recursively
? wxPG_PROP_CATEGORY
: 0,
1557 void wxPGProperty::SetTextColour( const wxColour
& colour
,
1560 wxPGProperty
* firstProp
= this;
1563 // If category is tried to set recursively, skip it and only
1564 // affect the children.
1567 while ( firstProp
->IsCategory() )
1569 if ( !firstProp
->GetChildCount() )
1571 firstProp
= firstProp
->Item(0);
1575 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1576 wxPGCellData
* firstCellData
= firstCell
.GetData();
1578 wxPGCell
newCell(firstCell
);
1579 newCell
.SetFgCol(colour
);
1581 srcCell
.SetFgCol(colour
);
1584 GetParentState()->GetColumnCount()-1,
1588 recursively
? wxPG_PROP_CATEGORY
: 0,
1592 wxPGEditorDialogAdapter
* wxPGProperty::GetEditorDialog() const
1597 bool wxPGProperty::DoSetAttribute( const wxString
& WXUNUSED(name
), wxVariant
& WXUNUSED(value
) )
1602 void wxPGProperty::SetAttribute( const wxString
& name
, wxVariant value
)
1604 if ( DoSetAttribute( name
, value
) )
1606 // Support working without grid, when possible
1607 if ( wxPGGlobalVars
->HasExtraStyle( wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
) )
1611 m_attributes
.Set( name
, value
);
1614 void wxPGProperty::SetAttributes( const wxPGAttributeStorage
& attributes
)
1616 wxPGAttributeStorage::const_iterator it
= attributes
.StartIteration();
1619 while ( attributes
.GetNext(it
, variant
) )
1620 SetAttribute( variant
.GetName(), variant
);
1623 wxVariant
wxPGProperty::DoGetAttribute( const wxString
& WXUNUSED(name
) ) const
1629 wxVariant
wxPGProperty::GetAttribute( const wxString
& name
) const
1631 return m_attributes
.FindValue(name
);
1634 wxString
wxPGProperty::GetAttribute( const wxString
& name
, const wxString
& defVal
) const
1636 wxVariant variant
= m_attributes
.FindValue(name
);
1638 if ( !variant
.IsNull() )
1639 return variant
.GetString();
1644 long wxPGProperty::GetAttributeAsLong( const wxString
& name
, long defVal
) const
1646 wxVariant variant
= m_attributes
.FindValue(name
);
1648 return wxPGVariantToInt(variant
, defVal
);
1651 double wxPGProperty::GetAttributeAsDouble( const wxString
& name
, double defVal
) const
1654 wxVariant variant
= m_attributes
.FindValue(name
);
1656 if ( wxPGVariantToDouble(variant
, &retVal
) )
1662 wxVariant
wxPGProperty::GetAttributesAsList() const
1664 wxVariantList tempList
;
1665 wxVariant
v( tempList
, wxString::Format(wxS("@%s@attr"),m_name
.c_str()) );
1667 wxPGAttributeStorage::const_iterator it
= m_attributes
.StartIteration();
1670 while ( m_attributes
.GetNext(it
, variant
) )
1676 // Slots of utility flags are NULL
1677 const unsigned int gs_propFlagToStringSize
= 14;
1679 static const wxChar
* gs_propFlagToString
[gs_propFlagToStringSize
] = {
1696 wxString
wxPGProperty::GetFlagsAsString( FlagType flagsMask
) const
1699 int relevantFlags
= m_flags
& flagsMask
& wxPG_STRING_STORED_FLAGS
;
1703 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1705 if ( relevantFlags
& a
)
1707 const wxChar
* fs
= gs_propFlagToString
[i
];
1719 void wxPGProperty::SetFlagsFromString( const wxString
& str
)
1723 WX_PG_TOKENIZER1_BEGIN(str
, wxS('|'))
1725 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1727 const wxChar
* fs
= gs_propFlagToString
[i
];
1728 if ( fs
&& str
== fs
)
1734 WX_PG_TOKENIZER1_END()
1736 m_flags
= (m_flags
& ~wxPG_STRING_STORED_FLAGS
) | flags
;
1739 wxValidator
* wxPGProperty::DoGetValidator() const
1744 int wxPGProperty::InsertChoice( const wxString
& label
, int index
, int value
)
1746 wxPropertyGrid
* pg
= GetGrid();
1747 int sel
= GetChoiceSelection();
1751 if ( index
== wxNOT_FOUND
)
1752 index
= m_choices
.GetCount();
1757 m_choices
.Insert(label
, index
, value
);
1759 if ( sel
!= newSel
)
1760 SetChoiceSelection(newSel
);
1762 if ( this == pg
->GetSelection() )
1763 GetEditorClass()->InsertItem(pg
->GetEditorControl(),label
,index
);
1769 void wxPGProperty::DeleteChoice( int index
)
1771 wxPropertyGrid
* pg
= GetGrid();
1773 int sel
= GetChoiceSelection();
1776 // Adjust current value
1779 SetValueToUnspecified();
1782 else if ( index
< sel
)
1787 m_choices
.RemoveAt(index
);
1789 if ( sel
!= newSel
)
1790 SetChoiceSelection(newSel
);
1792 if ( this == pg
->GetSelection() )
1793 GetEditorClass()->DeleteItem(pg
->GetEditorControl(), index
);
1796 int wxPGProperty::GetChoiceSelection() const
1798 wxVariant value
= GetValue();
1799 wxString valueType
= value
.GetType();
1800 int index
= wxNOT_FOUND
;
1802 if ( IsValueUnspecified() || !m_choices
.GetCount() )
1805 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1807 index
= value
.GetLong();
1809 else if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1811 index
= m_choices
.Index(value
.GetString());
1813 else if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1815 index
= value
.GetBool()? 1 : 0;
1821 void wxPGProperty::SetChoiceSelection( int newValue
)
1823 // Changes value of a property with choices, but only
1824 // works if the value type is long or string.
1825 wxString valueType
= GetValue().GetType();
1827 wxCHECK_RET( m_choices
.IsOk(), wxT("invalid choiceinfo") );
1829 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1831 SetValue( m_choices
.GetLabel(newValue
) );
1833 else // if ( valueType == wxPG_VARIANT_TYPE_LONG )
1835 SetValue( (long) newValue
);
1839 bool wxPGProperty::SetChoices( wxPGChoices
& choices
)
1841 m_choices
.Assign(choices
);
1844 // This may be needed to trigger some initialization
1845 // (but don't do it if property is somewhat uninitialized)
1846 wxVariant defVal
= GetDefaultValue();
1847 if ( defVal
.IsNull() )
1857 const wxPGEditor
* wxPGProperty::GetEditorClass() const
1859 const wxPGEditor
* editor
;
1861 if ( !m_customEditor
)
1863 editor
= DoGetEditorClass();
1866 editor
= m_customEditor
;
1869 // Maybe override editor if common value specified
1870 if ( GetDisplayedCommonValueCount() )
1872 // TextCtrlAndButton -> ComboBoxAndButton
1873 if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlAndButtonEditor
)) )
1874 editor
= wxPGEditor_ChoiceAndButton
;
1876 // TextCtrl -> ComboBox
1877 else if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlEditor
)) )
1878 editor
= wxPGEditor_ComboBox
;
1884 bool wxPGProperty::HasVisibleChildren() const
1888 for ( i
=0; i
<GetChildCount(); i
++ )
1890 wxPGProperty
* child
= Item(i
);
1892 if ( !child
->HasFlag(wxPG_PROP_HIDDEN
) )
1899 bool wxPGProperty::RecreateEditor()
1901 wxPropertyGrid
* pg
= GetGrid();
1904 wxPGProperty
* selected
= pg
->GetSelection();
1905 if ( this == selected
)
1907 pg
->DoSelectProperty(this, wxPG_SEL_FORCE
);
1914 void wxPGProperty::SetValueImage( wxBitmap
& bmp
)
1916 delete m_valueBitmap
;
1918 if ( &bmp
&& bmp
.Ok() )
1921 wxSize maxSz
= GetGrid()->GetImageSize();
1922 wxSize
imSz(bmp
.GetWidth(),bmp
.GetHeight());
1924 if ( imSz
.y
!= maxSz
.y
)
1926 // Create a memory DC
1927 wxBitmap
* bmpNew
= new wxBitmap(maxSz
.x
,maxSz
.y
,bmp
.GetDepth());
1930 dc
.SelectObject(*bmpNew
);
1933 // FIXME: This is ugly - use image or wait for scaling patch.
1934 double scaleY
= (double)maxSz
.y
/ (double)imSz
.y
;
1936 dc
.SetUserScale(scaleY
, scaleY
);
1938 dc
.DrawBitmap(bmp
, 0, 0);
1940 m_valueBitmap
= bmpNew
;
1944 m_valueBitmap
= new wxBitmap(bmp
);
1947 m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
1951 m_valueBitmap
= NULL
;
1952 m_flags
&= ~(wxPG_PROP_CUSTOMIMAGE
);
1957 wxPGProperty
* wxPGProperty::GetMainParent() const
1959 const wxPGProperty
* curChild
= this;
1960 const wxPGProperty
* curParent
= m_parent
;
1962 while ( curParent
&& !curParent
->IsCategory() )
1964 curChild
= curParent
;
1965 curParent
= curParent
->m_parent
;
1968 return (wxPGProperty
*) curChild
;
1972 const wxPGProperty
* wxPGProperty::GetLastVisibleSubItem() const
1975 // Returns last visible sub-item, recursively.
1976 if ( !IsExpanded() || !GetChildCount() )
1979 return Last()->GetLastVisibleSubItem();
1983 bool wxPGProperty::IsVisible() const
1985 const wxPGProperty
* parent
;
1987 if ( HasFlag(wxPG_PROP_HIDDEN
) )
1990 for ( parent
= GetParent(); parent
!= NULL
; parent
= parent
->GetParent() )
1992 if ( !parent
->IsExpanded() || parent
->HasFlag(wxPG_PROP_HIDDEN
) )
1999 wxPropertyGrid
* wxPGProperty::GetGridIfDisplayed() const
2001 wxPropertyGridPageState
* state
= GetParentState();
2004 wxPropertyGrid
* propGrid
= state
->GetGrid();
2005 if ( state
== propGrid
->GetState() )
2011 int wxPGProperty::GetY2( int lh
) const
2013 const wxPGProperty
* parent
;
2014 const wxPGProperty
* child
= this;
2018 for ( parent
= GetParent(); parent
!= NULL
; parent
= child
->GetParent() )
2020 if ( !parent
->IsExpanded() )
2022 y
+= parent
->GetChildrenHeight(lh
, child
->GetIndexInParent());
2027 y
-= lh
; // need to reduce one level
2033 int wxPGProperty::GetY() const
2035 return GetY2(GetGrid()->GetRowHeight());
2038 // This is used by Insert etc.
2039 void wxPGProperty::DoAddChild( wxPGProperty
* prop
, int index
,
2042 if ( index
< 0 || (size_t)index
>= m_children
.size() )
2044 if ( correct_mode
) prop
->m_arrIndex
= m_children
.size();
2045 m_children
.push_back( prop
);
2049 m_children
.insert( m_children
.begin()+index
, prop
);
2050 if ( correct_mode
) FixIndicesOfChildren( index
);
2053 prop
->m_parent
= this;
2056 void wxPGProperty::DoPreAddChild( int index
, wxPGProperty
* prop
)
2058 wxASSERT_MSG( prop
->GetBaseName().length(),
2059 "Property's children must have unique, non-empty "
2060 "names within their scope" );
2062 prop
->m_arrIndex
= index
;
2063 m_children
.insert( m_children
.begin()+index
,
2066 int custImgHeight
= prop
->OnMeasureImage().y
;
2067 if ( custImgHeight
< 0 /*|| custImgHeight > 1*/ )
2068 prop
->m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
2070 prop
->m_parent
= this;
2073 void wxPGProperty::AddPrivateChild( wxPGProperty
* prop
)
2075 if ( !(m_flags
& wxPG_PROP_PARENTAL_FLAGS
) )
2076 SetParentalType(wxPG_PROP_AGGREGATE
);
2078 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
2079 wxPG_PROP_AGGREGATE
,
2080 "Do not mix up AddPrivateChild() calls with other "
2081 "property adders." );
2083 DoPreAddChild( m_children
.size(), prop
);
2086 #if wxPG_COMPATIBILITY_1_4
2087 void wxPGProperty::AddChild( wxPGProperty
* prop
)
2089 AddPrivateChild(prop
);
2093 wxPGProperty
* wxPGProperty::InsertChild( int index
,
2094 wxPGProperty
* childProperty
)
2097 index
= m_children
.size();
2099 if ( m_parentState
)
2101 m_parentState
->DoInsert(this, index
, childProperty
);
2105 if ( !(m_flags
& wxPG_PROP_PARENTAL_FLAGS
) )
2106 SetParentalType(wxPG_PROP_MISC_PARENT
);
2108 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
2109 wxPG_PROP_MISC_PARENT
,
2110 "Do not mix up AddPrivateChild() calls with other "
2111 "property adders." );
2113 DoPreAddChild( index
, childProperty
);
2116 return childProperty
;
2119 void wxPGProperty::RemoveChild( wxPGProperty
* p
)
2121 wxArrayPGProperty::iterator it
;
2122 wxArrayPGProperty
& children
= m_children
;
2124 for ( it
=children
.begin(); it
!= children
.end(); it
++ )
2128 m_children
.erase(it
);
2134 void wxPGProperty::AdaptListToValue( wxVariant
& list
, wxVariant
* value
) const
2136 wxASSERT( GetChildCount() );
2137 wxASSERT( !IsCategory() );
2139 *value
= GetValue();
2141 if ( !list
.GetCount() )
2144 wxASSERT( GetChildCount() >= (unsigned int)list
.GetCount() );
2146 bool allChildrenSpecified
;
2148 // Don't fully update aggregate properties unless all children have
2150 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
2151 allChildrenSpecified
= AreAllChildrenSpecified(&list
);
2153 allChildrenSpecified
= true;
2155 wxVariant childValue
= list
[0];
2159 //wxLogDebug(wxT(">> %s.AdaptListToValue()"),GetBaseName().c_str());
2161 for ( i
=0; i
<GetChildCount(); i
++ )
2163 const wxPGProperty
* child
= Item(i
);
2165 if ( childValue
.GetName() == child
->GetBaseName() )
2167 //wxLogDebug(wxT(" %s(n=%i), %s"),childValue.GetName().c_str(),n,childValue.GetType().c_str());
2169 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2171 wxVariant
cv2(child
->GetValue());
2172 child
->AdaptListToValue(childValue
, &cv2
);
2176 if ( allChildrenSpecified
)
2177 ChildChanged(*value
, i
, childValue
);
2179 if ( n
== (unsigned int)list
.GetCount() )
2181 childValue
= list
[n
];
2187 void wxPGProperty::FixIndicesOfChildren( unsigned int starthere
)
2190 for ( i
=starthere
;i
<GetChildCount();i
++)
2191 Item(i
)->m_arrIndex
= i
;
2195 // Returns (direct) child property with given name (or NULL if not found)
2196 wxPGProperty
* wxPGProperty::GetPropertyByName( const wxString
& name
) const
2200 for ( i
=0; i
<GetChildCount(); i
++ )
2202 wxPGProperty
* p
= Item(i
);
2203 if ( p
->m_name
== name
)
2207 // Does it have point, then?
2208 int pos
= name
.Find(wxS('.'));
2212 wxPGProperty
* p
= GetPropertyByName(name
. substr(0,pos
));
2214 if ( !p
|| !p
->GetChildCount() )
2217 return p
->GetPropertyByName(name
.substr(pos
+1,name
.length()-pos
-1));
2220 wxPGProperty
* wxPGProperty::GetPropertyByNameWH( const wxString
& name
, unsigned int hintIndex
) const
2222 unsigned int i
= hintIndex
;
2224 if ( i
>= GetChildCount() )
2227 unsigned int lastIndex
= i
- 1;
2229 if ( lastIndex
>= GetChildCount() )
2230 lastIndex
= GetChildCount() - 1;
2234 wxPGProperty
* p
= Item(i
);
2235 if ( p
->m_name
== name
)
2238 if ( i
== lastIndex
)
2242 if ( i
== GetChildCount() )
2249 int wxPGProperty::GetChildrenHeight( int lh
, int iMax_
) const
2251 // Returns height of children, recursively, and
2252 // by taking expanded/collapsed status into account.
2254 // iMax is used when finding property y-positions.
2260 iMax_
= GetChildCount();
2262 unsigned int iMax
= iMax_
;
2264 wxASSERT( iMax
<= GetChildCount() );
2266 if ( !IsExpanded() && GetParent() )
2271 wxPGProperty
* pwc
= (wxPGProperty
*) Item(i
);
2273 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2275 if ( !pwc
->IsExpanded() ||
2276 pwc
->GetChildCount() == 0 )
2279 h
+= pwc
->GetChildrenHeight(lh
) + lh
;
2288 wxPGProperty
* wxPGProperty::GetItemAtY( unsigned int y
, unsigned int lh
, unsigned int* nextItemY
) const
2290 wxASSERT( nextItemY
);
2292 // Linear search at the moment
2294 // nextItemY = y of next visible property, final value will be written back.
2295 wxPGProperty
* result
= NULL
;
2296 wxPGProperty
* current
= NULL
;
2297 unsigned int iy
= *nextItemY
;
2299 unsigned int iMax
= GetChildCount();
2303 wxPGProperty
* pwc
= Item(i
);
2305 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2316 if ( pwc
->IsExpanded() &&
2317 pwc
->GetChildCount() > 0 )
2319 result
= (wxPGProperty
*) pwc
->GetItemAtY( y
, lh
, &iy
);
2331 if ( !result
&& y
< iy
)
2338 wxLogDebug(wxT("%s::GetItemAtY(%i) -> %s"),this->GetLabel().c_str(),y,current->GetLabel().c_str());
2340 wxLogDebug(wxT("%s::GetItemAtY(%i) -> NULL"),this->GetLabel().c_str(),y);
2343 return (wxPGProperty
*) result
;
2346 void wxPGProperty::Empty()
2349 if ( !HasFlag(wxPG_PROP_CHILDREN_ARE_COPIES
) )
2351 for ( i
=0; i
<GetChildCount(); i
++ )
2353 delete m_children
[i
];
2360 void wxPGProperty::DeleteChildren()
2362 wxPropertyGridPageState
* state
= m_parentState
;
2364 while ( GetChildCount() )
2366 wxPGProperty
* child
= Item(GetChildCount()-1);
2367 state
->DoDelete(child
, true);
2371 void wxPGProperty::ChildChanged( wxVariant
& WXUNUSED(thisValue
),
2372 int WXUNUSED(childIndex
),
2373 wxVariant
& WXUNUSED(childValue
) ) const
2377 bool wxPGProperty::AreAllChildrenSpecified( wxVariant
* pendingList
) const
2381 const wxVariantList
* pList
= NULL
;
2382 wxVariantList::const_iterator node
;
2386 pList
= &pendingList
->GetList();
2387 node
= pList
->begin();
2390 for ( i
=0; i
<GetChildCount(); i
++ )
2392 wxPGProperty
* child
= Item(i
);
2393 const wxVariant
* listValue
= NULL
;
2398 const wxString
& childName
= child
->GetBaseName();
2400 for ( ; node
!= pList
->end(); ++node
)
2402 const wxVariant
& item
= *((const wxVariant
*)*node
);
2403 if ( item
.GetName() == childName
)
2413 value
= child
->GetValue();
2415 if ( value
.IsNull() )
2418 // Check recursively
2419 if ( child
->GetChildCount() )
2421 const wxVariant
* childList
= NULL
;
2423 if ( listValue
&& listValue
->GetType() == wxPG_VARIANT_TYPE_LIST
)
2424 childList
= listValue
;
2426 if ( !child
->AreAllChildrenSpecified((wxVariant
*)childList
) )
2434 wxPGProperty
* wxPGProperty::UpdateParentValues()
2436 wxPGProperty
* parent
= m_parent
;
2437 if ( parent
&& parent
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
2438 !parent
->IsCategory() && !parent
->IsRoot() )
2441 parent
->DoGenerateComposedValue(s
);
2442 parent
->m_value
= s
;
2443 return parent
->UpdateParentValues();
2448 bool wxPGProperty::IsTextEditable() const
2450 if ( HasFlag(wxPG_PROP_READONLY
) )
2453 if ( HasFlag(wxPG_PROP_NOEDITOR
) &&
2455 wxString(GetEditorClass()->GetClassInfo()->GetClassName()).EndsWith(wxS("Button")))
2462 // Call after fixed sub-properties added/removed after creation.
2463 // if oldSelInd >= 0 and < new max items, then selection is
2464 // moved to it. Note: oldSelInd -2 indicates that this property
2465 // should be selected.
2466 void wxPGProperty::SubPropsChanged( int oldSelInd
)
2468 wxPropertyGridPageState
* state
= GetParentState();
2469 wxPropertyGrid
* grid
= state
->GetGrid();
2472 // Re-repare children (recursively)
2473 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
2475 wxPGProperty
* child
= Item(i
);
2476 child
->InitAfterAdded(state
, grid
);
2479 wxPGProperty
* sel
= NULL
;
2480 if ( oldSelInd
>= (int)m_children
.size() )
2481 oldSelInd
= (int)m_children
.size() - 1;
2483 if ( oldSelInd
>= 0 )
2484 sel
= m_children
[oldSelInd
];
2485 else if ( oldSelInd
== -2 )
2489 state
->DoSelectProperty(sel
);
2491 if ( state
== grid
->GetState() )
2493 grid
->GetPanel()->Refresh();
2497 // -----------------------------------------------------------------------
2499 // -----------------------------------------------------------------------
2501 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPGRootProperty
,none
,TextCtrl
)
2502 IMPLEMENT_DYNAMIC_CLASS(wxPGRootProperty
, wxPGProperty
)
2505 wxPGRootProperty::wxPGRootProperty( const wxString
& name
)
2519 wxPGRootProperty::~wxPGRootProperty()
2524 // -----------------------------------------------------------------------
2525 // wxPropertyCategory
2526 // -----------------------------------------------------------------------
2528 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPropertyCategory
,none
,TextCtrl
)
2529 IMPLEMENT_DYNAMIC_CLASS(wxPropertyCategory
, wxPGProperty
)
2531 void wxPropertyCategory::Init()
2533 // don't set colour - prepareadditem method should do this
2534 SetParentalType(wxPG_PROP_CATEGORY
);
2535 m_capFgColIndex
= 1;
2539 wxPropertyCategory::wxPropertyCategory()
2546 wxPropertyCategory::wxPropertyCategory( const wxString
&label
, const wxString
& name
)
2547 : wxPGProperty(label
,name
)
2553 wxPropertyCategory::~wxPropertyCategory()
2558 wxString
wxPropertyCategory::ValueToString( wxVariant
& WXUNUSED(value
),
2559 int WXUNUSED(argFlags
) ) const
2561 return wxEmptyString
;
2564 int wxPropertyCategory::GetTextExtent( const wxWindow
* wnd
, const wxFont
& font
) const
2566 if ( m_textExtent
> 0 )
2567 return m_textExtent
;
2569 ((wxWindow
*)wnd
)->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2573 void wxPropertyCategory::CalculateTextExtent( wxWindow
* wnd
, const wxFont
& font
)
2576 wnd
->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2580 // -----------------------------------------------------------------------
2582 // -----------------------------------------------------------------------
2584 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
2588 wxPGChoiceEntry
entry(label
, value
);
2589 return m_data
->Insert( -1, entry
);
2592 // -----------------------------------------------------------------------
2594 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
2598 wxPGChoiceEntry
entry(label
, value
);
2599 entry
.SetBitmap(bitmap
);
2600 return m_data
->Insert( -1, entry
);
2603 // -----------------------------------------------------------------------
2605 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
2609 return m_data
->Insert( index
, entry
);
2612 // -----------------------------------------------------------------------
2614 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
2618 wxPGChoiceEntry
entry(label
, value
);
2619 return m_data
->Insert( index
, entry
);
2622 // -----------------------------------------------------------------------
2624 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
2630 while ( index
< GetCount() )
2632 int cmpRes
= GetLabel(index
).Cmp(label
);
2638 wxPGChoiceEntry
entry(label
, value
);
2639 return m_data
->Insert( index
, entry
);
2642 // -----------------------------------------------------------------------
2644 void wxPGChoices::Add( const wxChar
** labels
, const ValArrItem
* values
)
2648 unsigned int itemcount
= 0;
2649 const wxChar
** p
= &labels
[0];
2650 while ( *p
) { p
++; itemcount
++; }
2653 for ( i
= 0; i
< itemcount
; i
++ )
2658 wxPGChoiceEntry
entry(labels
[i
], value
);
2659 m_data
->Insert( i
, entry
);
2663 // -----------------------------------------------------------------------
2665 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
2670 unsigned int itemcount
= arr
.size();
2672 for ( i
= 0; i
< itemcount
; i
++ )
2675 if ( &arrint
&& arrint
.size() )
2677 wxPGChoiceEntry
entry(arr
[i
], value
);
2678 m_data
->Insert( i
, entry
);
2682 // -----------------------------------------------------------------------
2684 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
2688 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
2689 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
2690 m_data
->m_items
.begin()+nIndex
+count
);
2693 // -----------------------------------------------------------------------
2695 void wxPGChoices::Clear()
2697 if ( m_data
!= wxPGChoicesEmptyData
)
2704 // -----------------------------------------------------------------------
2706 int wxPGChoices::Index( const wxString
& str
) const
2711 for ( i
=0; i
< m_data
->GetCount(); i
++ )
2713 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
2714 if ( entry
.HasText() && entry
.GetText() == str
)
2721 // -----------------------------------------------------------------------
2723 int wxPGChoices::Index( int val
) const
2728 for ( i
=0; i
< m_data
->GetCount(); i
++ )
2730 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
2731 if ( entry
.GetValue() == val
)
2738 // -----------------------------------------------------------------------
2740 wxArrayString
wxPGChoices::GetLabels() const
2745 if ( this && IsOk() )
2746 for ( i
=0; i
<GetCount(); i
++ )
2747 arr
.push_back(GetLabel(i
));
2752 // -----------------------------------------------------------------------
2754 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
2761 for ( i
=0; i
< strings
.size(); i
++ )
2763 int index
= Index(strings
[i
]);
2765 arr
.Add(GetValue(index
));
2767 arr
.Add(wxPG_INVALID_VALUE
);
2774 // -----------------------------------------------------------------------
2776 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
2777 wxArrayString
* unmatched
) const
2784 for ( i
=0; i
< strings
.size(); i
++ )
2786 const wxString
& str
= strings
[i
];
2787 int index
= Index(str
);
2790 else if ( unmatched
)
2791 unmatched
->Add(str
);
2798 // -----------------------------------------------------------------------
2800 void wxPGChoices::AllocExclusive()
2804 if ( m_data
->m_refCount
!= 1 )
2806 wxPGChoicesData
* data
= new wxPGChoicesData();
2807 data
->CopyDataFrom(m_data
);
2813 // -----------------------------------------------------------------------
2815 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
2819 if ( data
!= wxPGChoicesEmptyData
)
2826 // -----------------------------------------------------------------------
2828 void wxPGChoices::Init()
2830 m_data
= wxPGChoicesEmptyData
;
2833 // -----------------------------------------------------------------------
2835 void wxPGChoices::Free()
2837 if ( m_data
!= wxPGChoicesEmptyData
)
2840 m_data
= wxPGChoicesEmptyData
;
2844 // -----------------------------------------------------------------------
2845 // wxPGAttributeStorage
2846 // -----------------------------------------------------------------------
2848 wxPGAttributeStorage::wxPGAttributeStorage()
2852 wxPGAttributeStorage::~wxPGAttributeStorage()
2854 wxPGHashMapS2P::iterator it
;
2856 for ( it
= m_map
.begin(); it
!= m_map
.end(); ++it
)
2858 wxVariantData
* data
= (wxVariantData
*) it
->second
;
2863 void wxPGAttributeStorage::Set( const wxString
& name
, const wxVariant
& value
)
2865 wxVariantData
* data
= value
.GetData();
2868 wxPGHashMapS2P::iterator it
= m_map
.find(name
);
2869 if ( it
!= m_map
.end() )
2871 ((wxVariantData
*)it
->second
)->DecRef();
2875 // If Null variant, just remove from set
2889 #endif // wxUSE_PROPGRID