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 // Use cell font, if provided
153 const wxFont
& font
= cell
.GetFont();
157 const wxBitmap
& bmp
= cell
.GetBitmap();
159 // Do not draw oversized bitmap outside choice popup
160 ((flags
& ChoicePopup
) || bmp
.GetHeight() < rect
.height
)
164 rect
.x
+ wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
165 rect
.y
+ wxPG_CUSTOM_IMAGE_SPACINGY
,
167 imageWidth
= bmp
.GetWidth();
173 void wxPGCellRenderer::PostDrawCell( wxDC
& dc
,
174 const wxPropertyGrid
* propGrid
,
175 const wxPGCell
& cell
,
176 int WXUNUSED(flags
) ) const
179 const wxFont
& font
= cell
.GetFont();
181 dc
.SetFont(propGrid
->GetFont());
184 // -----------------------------------------------------------------------
185 // wxPGDefaultRenderer
186 // -----------------------------------------------------------------------
188 void wxPGDefaultRenderer::Render( wxDC
& dc
, const wxRect
& rect
,
189 const wxPropertyGrid
* propertyGrid
, wxPGProperty
* property
,
190 int column
, int item
, int flags
) const
192 bool isUnspecified
= property
->IsValueUnspecified();
194 if ( column
== 1 && item
== -1 )
196 int cmnVal
= property
->GetCommonValue();
200 if ( !isUnspecified
)
201 DrawText( dc
, rect
, 0, propertyGrid
->GetCommonValueLabel(cmnVal
) );
206 const wxPGEditor
* editor
= NULL
;
207 const wxPGCell
* cell
= NULL
;
211 int preDrawFlags
= flags
;
213 property
->GetDisplayInfo(column
, item
, flags
, &text
, &cell
);
215 imageWidth
= PreDrawCell( dc
, rect
, *cell
, preDrawFlags
);
219 editor
= property
->GetColumnEditor(column
);
221 if ( !isUnspecified
)
223 // Regular property value
225 wxSize imageSize
= propertyGrid
->GetImageSize(property
, item
);
227 wxPGPaintData paintdata
;
228 paintdata
.m_parent
= propertyGrid
;
229 paintdata
.m_choiceItem
= item
;
231 if ( imageSize
.x
> 0 )
233 wxRect
imageRect(rect
.x
+ wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
234 rect
.y
+wxPG_CUSTOM_IMAGE_SPACINGY
,
235 wxPG_CUSTOM_IMAGE_WIDTH
,
236 rect
.height
-(wxPG_CUSTOM_IMAGE_SPACINGY
*2));
238 dc
.SetPen( wxPen(propertyGrid
->GetCellTextColour(), 1, wxSOLID
) );
240 paintdata
.m_drawnWidth
= imageSize
.x
;
241 paintdata
.m_drawnHeight
= imageSize
.y
;
243 property
->OnCustomPaint( dc
, imageRect
, paintdata
);
245 imageWidth
= paintdata
.m_drawnWidth
;
248 text
= property
->GetValueAsString();
251 if ( propertyGrid
->GetColumnCount() <= 2 )
253 wxString unitsString
= property
->GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
254 if ( unitsString
.length() )
255 text
= wxString::Format(wxS("%s %s"), text
.c_str(), unitsString
.c_str() );
259 if ( text
.length() == 0 )
261 // Try to show inline help if no text
262 wxVariant vInlineHelp
= property
->GetAttribute(wxPGGlobalVars
->m_strInlineHelp
);
263 if ( !vInlineHelp
.IsNull() )
265 text
= vInlineHelp
.GetString();
266 dc
.SetTextForeground(propertyGrid
->GetCellDisabledTextColour());
271 int imageOffset
= property
->GetImageOffset(imageWidth
);
273 DrawEditorValue( dc
, rect
, imageOffset
, text
, property
, editor
);
275 // active caption gets nice dotted rectangle
276 if ( property
->IsCategory() /*&& column == 0*/ )
278 if ( flags
& Selected
)
280 if ( imageOffset
> 0 )
282 imageOffset
-= DEFAULT_IMAGE_OFFSET_INCREMENT
;
283 imageOffset
+= wxCC_CUSTOM_IMAGE_MARGIN2
+ 4;
286 DrawCaptionSelectionRect( dc
,
287 rect
.x
+wxPG_XBEFORETEXT
-wxPG_CAPRECTXMARGIN
+imageOffset
,
288 rect
.y
-wxPG_CAPRECTYMARGIN
+1,
289 ((wxPropertyCategory
*)property
)->GetTextExtent(propertyGrid
,
290 propertyGrid
->GetCaptionFont())
291 +(wxPG_CAPRECTXMARGIN
*2),
292 propertyGrid
->GetFontHeight()+(wxPG_CAPRECTYMARGIN
*2) );
296 PostDrawCell(dc
, propertyGrid
, *cell
, preDrawFlags
);
299 wxSize
wxPGDefaultRenderer::GetImageSize( const wxPGProperty
* property
,
303 if ( property
&& column
== 1 )
307 wxBitmap
* bmp
= property
->GetValueImage();
309 if ( bmp
&& bmp
->Ok() )
310 return wxSize(bmp
->GetWidth(),bmp
->GetHeight());
316 // -----------------------------------------------------------------------
318 // -----------------------------------------------------------------------
320 wxPGCellData::wxPGCellData()
323 m_hasValidText
= false;
326 // -----------------------------------------------------------------------
328 // -----------------------------------------------------------------------
335 wxPGCell::wxPGCell( const wxString
& text
,
336 const wxBitmap
& bitmap
,
337 const wxColour
& fgCol
,
338 const wxColour
& bgCol
)
341 wxPGCellData
* data
= new wxPGCellData();
344 data
->m_bitmap
= bitmap
;
345 data
->m_fgCol
= fgCol
;
346 data
->m_bgCol
= bgCol
;
347 data
->m_hasValidText
= true;
350 wxObjectRefData
*wxPGCell::CloneRefData( const wxObjectRefData
*data
) const
352 wxPGCellData
* c
= new wxPGCellData();
353 const wxPGCellData
* o
= (const wxPGCellData
*) data
;
354 c
->m_text
= o
->m_text
;
355 c
->m_bitmap
= o
->m_bitmap
;
356 c
->m_fgCol
= o
->m_fgCol
;
357 c
->m_bgCol
= o
->m_bgCol
;
358 c
->m_hasValidText
= o
->m_hasValidText
;
362 void wxPGCell::SetText( const wxString
& text
)
366 GetData()->SetText(text
);
369 void wxPGCell::SetBitmap( const wxBitmap
& bitmap
)
373 GetData()->SetBitmap(bitmap
);
376 void wxPGCell::SetFgCol( const wxColour
& col
)
380 GetData()->SetFgCol(col
);
383 void wxPGCell::SetFont( const wxFont
& font
)
387 GetData()->SetFont(font
);
390 void wxPGCell::SetBgCol( const wxColour
& col
)
394 GetData()->SetBgCol(col
);
397 void wxPGCell::MergeFrom( const wxPGCell
& srcCell
)
401 wxPGCellData
* data
= GetData();
403 if ( srcCell
.HasText() )
404 data
->SetText(srcCell
.GetText());
406 if ( srcCell
.GetFgCol().IsOk() )
407 data
->SetFgCol(srcCell
.GetFgCol());
409 if ( srcCell
.GetBgCol().IsOk() )
410 data
->SetBgCol(srcCell
.GetBgCol());
412 if ( srcCell
.GetBitmap().IsOk() )
413 data
->SetBitmap(srcCell
.GetBitmap());
416 // -----------------------------------------------------------------------
418 // -----------------------------------------------------------------------
420 IMPLEMENT_ABSTRACT_CLASS(wxPGProperty
, wxObject
)
422 wxString
* wxPGProperty::sm_wxPG_LABEL
= NULL
;
424 void wxPGProperty::Init()
430 m_parentState
= NULL
;
433 m_clientObject
= NULL
;
435 m_customEditor
= NULL
;
439 m_valueBitmap
= NULL
;
441 m_maxLen
= 0; // infinite maximum length
443 m_flags
= wxPG_PROP_PROPERTY
;
451 void wxPGProperty::Init( const wxString
& label
, const wxString
& name
)
453 // We really need to check if &label and &name are NULL pointers
454 // (this can if we are called before property grid has been initalized)
456 if ( (&label
) != NULL
&& label
!= wxPG_LABEL
)
459 if ( (&name
) != NULL
&& name
!= wxPG_LABEL
)
462 DoSetName( m_label
);
467 void wxPGProperty::InitAfterAdded( wxPropertyGridPageState
* pageState
,
468 wxPropertyGrid
* propgrid
)
471 // Called after property has been added to grid or page
472 // (so propgrid can be NULL, too).
474 wxPGProperty
* parent
= m_parent
;
475 bool parentIsRoot
= parent
->IsKindOf(CLASSINFO(wxPGRootProperty
));
477 m_parentState
= pageState
;
479 #if wxPG_COMPATIBILITY_1_4
480 // Make sure deprecated virtual functions are not implemented
481 wxString s
= GetValueAsString( 0xFFFF );
482 wxASSERT_MSG( s
== g_invalidStringContent
,
483 "Implement ValueToString() instead of GetValueAsString()" );
486 if ( !parentIsRoot
&& !parent
->IsCategory() )
488 m_cells
= parent
->m_cells
;
491 // If in hideable adding mode, or if assigned parent is hideable, then
492 // make this one hideable.
494 ( !parentIsRoot
&& parent
->HasFlag(wxPG_PROP_HIDDEN
) ) ||
495 ( propgrid
&& (propgrid
->HasInternalFlag(wxPG_FL_ADDING_HIDEABLES
)) )
497 SetFlag( wxPG_PROP_HIDDEN
);
499 // Set custom image flag.
500 int custImgHeight
= OnMeasureImage().y
;
501 if ( custImgHeight
< 0 )
503 SetFlag(wxPG_PROP_CUSTOMIMAGE
);
506 if ( propgrid
&& (propgrid
->HasFlag(wxPG_LIMITED_EDITING
)) )
507 SetFlag(wxPG_PROP_NOEDITOR
);
509 // Make sure parent has some parental flags
510 if ( !parent
->HasFlag(wxPG_PROP_PARENTAL_FLAGS
) )
511 parent
->SetParentalType(wxPG_PROP_MISC_PARENT
);
515 // This is not a category.
519 unsigned char depth
= 1;
522 depth
= parent
->m_depth
;
523 if ( !parent
->IsCategory() )
527 unsigned char greyDepth
= depth
;
531 wxPropertyCategory
* pc
;
533 if ( parent
->IsCategory() )
534 pc
= (wxPropertyCategory
* ) parent
;
536 // This conditional compile is necessary to
537 // bypass some compiler bug.
538 pc
= pageState
->GetPropertyCategory(parent
);
541 greyDepth
= pc
->GetDepth();
543 greyDepth
= parent
->m_depthBgCol
;
546 m_depthBgCol
= greyDepth
;
550 // This is a category.
553 unsigned char depth
= 1;
556 depth
= parent
->m_depth
+ 1;
559 m_depthBgCol
= depth
;
563 // Has initial children
564 if ( GetChildCount() )
566 // Check parental flags
567 wxASSERT_MSG( ((m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
568 wxPG_PROP_AGGREGATE
) ||
569 ((m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
570 wxPG_PROP_MISC_PARENT
),
571 "wxPGProperty parental flags set incorrectly at "
574 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
576 // Properties with private children are not expanded by default.
579 else if ( propgrid
&& propgrid
->HasFlag(wxPG_HIDE_MARGIN
) )
581 // ...unless it cannot be expanded by user and therefore must
582 // remain visible at all times
587 // Prepare children recursively
588 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
590 wxPGProperty
* child
= Item(i
);
591 child
->InitAfterAdded(pageState
, pageState
->GetGrid());
594 if ( propgrid
&& (propgrid
->GetExtraStyle() & wxPG_EX_AUTO_UNSPECIFIED_VALUES
) )
595 SetFlagRecursively(wxPG_PROP_AUTO_UNSPECIFIED
, true);
599 wxPGProperty::wxPGProperty()
606 wxPGProperty::wxPGProperty( const wxString
& label
, const wxString
& name
)
613 wxPGProperty::~wxPGProperty()
615 delete m_clientObject
;
617 Empty(); // this deletes items
619 delete m_valueBitmap
;
624 // This makes it easier for us to detect dangling pointers
629 bool wxPGProperty::IsSomeParent( wxPGProperty
* candidate
) const
631 wxPGProperty
* parent
= m_parent
;
634 if ( parent
== candidate
)
636 parent
= parent
->m_parent
;
641 void wxPGProperty::SetName( const wxString
& newName
)
643 wxPropertyGrid
* pg
= GetGrid();
646 pg
->SetPropertyName(this, newName
);
651 wxString
wxPGProperty::GetName() const
653 wxPGProperty
* parent
= GetParent();
655 if ( !m_name
.length() || !parent
|| parent
->IsCategory() || parent
->IsRoot() )
658 return m_parent
->GetName() + wxS(".") + m_name
;
661 wxPropertyGrid
* wxPGProperty::GetGrid() const
663 if ( !m_parentState
)
665 return m_parentState
->GetGrid();
668 int wxPGProperty::Index( const wxPGProperty
* p
) const
670 for ( unsigned int i
= 0; i
<m_children
.size(); i
++ )
672 if ( p
== m_children
[i
] )
678 bool wxPGProperty::ValidateValue( wxVariant
& WXUNUSED(value
), wxPGValidationInfo
& WXUNUSED(validationInfo
) ) const
683 void wxPGProperty::OnSetValue()
687 void wxPGProperty::RefreshChildren ()
691 void wxPGProperty::OnValidationFailure( wxVariant
& WXUNUSED(pendingValue
) )
695 void wxPGProperty::GetDisplayInfo( unsigned int column
,
699 const wxPGCell
** pCell
)
701 const wxPGCell
* cell
= NULL
;
703 if ( !(flags
& wxPGCellRenderer::ChoicePopup
) )
705 // Not painting listi of choice popups, so get text from property
706 cell
= &GetCell(column
);
707 if ( cell
->HasText() )
709 *pString
= cell
->GetText();
714 *pString
= GetLabel();
715 else if ( column
== 1 )
716 *pString
= GetDisplayedString();
717 else if ( column
== 2 )
718 *pString
= GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
723 wxASSERT( column
== 1 );
725 if ( choiceIndex
!= wxNOT_FOUND
)
727 const wxPGChoiceEntry
& entry
= m_choices
[choiceIndex
];
728 if ( entry
.GetBitmap().IsOk() ||
729 entry
.GetFgCol().IsOk() ||
730 entry
.GetBgCol().IsOk() )
732 *pString
= m_choices
.GetLabel(choiceIndex
);
737 cell
= &GetCell(column
);
739 wxASSERT_MSG( cell
->GetData(),
740 wxString::Format("Invalid cell for property %s",
741 GetName().c_str()) );
747 wxString wxPGProperty::GetColumnText( unsigned int col, int choiceIndex ) const
750 if ( col != 1 || choiceIndex == wxNOT_FOUND )
752 const wxPGCell& cell = GetCell(col);
753 if ( cell->HasText() )
755 return cell->GetText();
762 return GetDisplayedString();
764 return GetAttribute(wxPGGlobalVars->m_strUnits, wxEmptyString);
770 return m_choices.GetLabel(choiceIndex);
773 return wxEmptyString;
777 void wxPGProperty::DoGenerateComposedValue( wxString
& text
,
779 const wxVariantList
* valueOverrides
,
780 wxPGHashMapS2S
* childResults
) const
783 int iMax
= m_children
.size();
789 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
790 !(argFlags
& wxPG_FULL_VALUE
) )
791 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
793 int iMaxMinusOne
= iMax
-1;
795 if ( !IsTextEditable() )
796 argFlags
|= wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
;
798 wxPGProperty
* curChild
= m_children
[0];
800 bool overridesLeft
= false;
801 wxVariant overrideValue
;
802 wxVariantList::const_iterator node
;
804 if ( valueOverrides
)
806 node
= valueOverrides
->begin();
807 if ( node
!= valueOverrides
->end() )
809 overrideValue
= *node
;
810 overridesLeft
= true;
814 for ( i
= 0; i
< iMax
; i
++ )
816 wxVariant childValue
;
818 wxString childLabel
= curChild
->GetLabel();
820 // Check for value override
821 if ( overridesLeft
&& overrideValue
.GetName() == childLabel
)
823 if ( !overrideValue
.IsNull() )
824 childValue
= overrideValue
;
826 childValue
= curChild
->GetValue();
828 if ( node
!= valueOverrides
->end() )
829 overrideValue
= *node
;
831 overridesLeft
= false;
835 childValue
= curChild
->GetValue();
839 if ( !childValue
.IsNull() )
841 if ( overridesLeft
&&
842 curChild
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
843 childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
845 wxVariantList
& childList
= childValue
.GetList();
846 DoGenerateComposedValue(s
, argFlags
|wxPG_COMPOSITE_FRAGMENT
,
847 &childList
, childResults
);
851 s
= curChild
->ValueToString(childValue
,
852 argFlags
|wxPG_COMPOSITE_FRAGMENT
);
856 if ( childResults
&& curChild
->GetChildCount() )
857 (*childResults
)[curChild
->GetName()] = s
;
860 if ( (argFlags
& wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
) && !s
.length() )
863 if ( !curChild
->GetChildCount() || skip
)
866 text
+= wxS("[") + s
+ wxS("]");
868 if ( i
< iMaxMinusOne
)
870 if ( text
.length() > PWC_CHILD_SUMMARY_CHAR_LIMIT
&&
871 !(argFlags
& wxPG_EDITABLE_VALUE
) &&
872 !(argFlags
& wxPG_FULL_VALUE
) )
877 if ( !curChild
->GetChildCount() )
883 curChild
= m_children
[i
+1];
887 if ( (unsigned int)i
< m_children
.size() )
889 if ( !text
.EndsWith(wxS("; ")) )
890 text
+= wxS("; ...");
896 wxString
wxPGProperty::ValueToString( wxVariant
& WXUNUSED(value
),
899 wxCHECK_MSG( GetChildCount() > 0,
901 "If user property does not have any children, it must "
902 "override GetValueAsString" );
904 // FIXME: Currently code below only works if value is actually m_value
905 wxASSERT_MSG( argFlags
& wxPG_VALUE_IS_CURRENT
,
906 "Sorry, currently default wxPGProperty::ValueToString() "
907 "implementation only works if value is m_value." );
910 DoGenerateComposedValue(text
, argFlags
);
914 wxString
wxPGProperty::GetValueAsString( int argFlags
) const
916 #if wxPG_COMPATIBILITY_1_4
917 // This is backwards compatibility test
918 // That is, to make sure this function is not overridden
919 // (instead, ValueToString() should be).
920 if ( argFlags
== 0xFFFF )
922 // Do not override! (for backwards compliancy)
923 return g_invalidStringContent
;
927 if ( IsValueUnspecified() )
928 return wxEmptyString
;
930 if ( m_commonValue
== -1 )
932 wxVariant
value(GetValue());
933 return ValueToString(value
, argFlags
|wxPG_VALUE_IS_CURRENT
);
937 // Return common value's string representation
938 wxPropertyGrid
* pg
= GetGrid();
939 const wxPGCommonValue
* cv
= pg
->GetCommonValue(m_commonValue
);
941 if ( argFlags
& wxPG_FULL_VALUE
)
943 return cv
->GetLabel();
945 else if ( argFlags
& wxPG_EDITABLE_VALUE
)
947 return cv
->GetEditableText();
951 return cv
->GetLabel();
955 wxString
wxPGProperty::GetValueString( int argFlags
) const
957 return GetValueAsString(argFlags
);
960 bool wxPGProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
962 variant
= (long)number
;
966 // Convert semicolon delimited tokens into child values.
967 bool wxPGProperty::StringToValue( wxVariant
& variant
, const wxString
& text
, int argFlags
) const
969 if ( !GetChildCount() )
972 unsigned int curChild
= 0;
974 unsigned int iMax
= m_children
.size();
976 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
977 !(argFlags
& wxPG_FULL_VALUE
) )
978 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
980 bool changed
= false;
985 // Its best only to add non-empty group items
986 bool addOnlyIfNotEmpty
= false;
987 const wxChar delimeter
= wxS(';');
989 size_t tokenStart
= 0xFFFFFF;
991 wxVariantList temp_list
;
992 wxVariant
list(temp_list
);
994 int propagatedFlags
= argFlags
& (wxPG_REPORT_ERROR
|wxPG_PROGRAMMATIC_VALUE
);
996 wxLogTrace("propgrid",
997 wxT(">> %s.StringToValue('%s')"), GetLabel(), text
);
999 wxString::const_iterator it
= text
.begin();
1002 if ( it
!= text
.end() )
1009 // How many units we iterate string forward at the end of loop?
1010 // We need to keep track of this or risk going to negative
1011 // with it-- operation.
1012 unsigned int strPosIncrement
= 1;
1014 if ( tokenStart
!= 0xFFFFFF )
1017 if ( a
== delimeter
|| a
== 0 )
1019 token
= text
.substr(tokenStart
,pos
-tokenStart
);
1021 size_t len
= token
.length();
1023 if ( !addOnlyIfNotEmpty
|| len
> 0 )
1025 const wxPGProperty
* child
= Item(curChild
);
1026 wxVariant
variant(child
->GetValue());
1027 wxString childName
= child
->GetBaseName();
1029 wxLogTrace("propgrid",
1030 wxT("token = '%s', child = %s"),
1033 // Add only if editable or setting programmatically
1034 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1035 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1039 if ( child
->StringToValue(variant
, token
,
1040 propagatedFlags
|wxPG_COMPOSITE_FRAGMENT
) )
1042 // We really need to set the variant's name
1043 // *after* child->StringToValue() has been
1044 // called, since variant's value may be set by
1045 // assigning another variant into it, which
1046 // then usually causes name to be copied (ie.
1047 // usually cleared) as well. wxBoolProperty
1048 // being case in point with its use of
1049 // wxPGVariant_Bool macro as an optimization.
1050 variant
.SetName(childName
);
1051 list
.Append(variant
);
1058 // Empty, becomes unspecified
1060 variant
.SetName(childName
);
1061 list
.Append(variant
);
1067 if ( curChild
>= iMax
)
1071 tokenStart
= 0xFFFFFF;
1076 // Token is not running
1077 if ( a
!= wxS(' ') )
1080 addOnlyIfNotEmpty
= false;
1082 // Is this a group of tokens?
1083 if ( a
== wxS('[') )
1087 if ( it
!= text
.end() ) ++it
;
1089 size_t startPos
= pos
;
1091 // Group item - find end
1092 while ( it
!= text
.end() && depth
> 0 )
1098 if ( a
== wxS(']') )
1100 else if ( a
== wxS('[') )
1104 token
= text
.substr(startPos
,pos
-startPos
-1);
1106 if ( !token
.length() )
1109 const wxPGProperty
* child
= Item(curChild
);
1111 wxVariant oldChildValue
= child
->GetValue();
1112 wxVariant
variant(oldChildValue
);
1114 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1115 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1117 wxString childName
= child
->GetBaseName();
1119 bool stvRes
= child
->StringToValue( variant
, token
,
1121 if ( stvRes
|| (variant
!= oldChildValue
) )
1123 variant
.SetName(childName
);
1124 list
.Append(variant
);
1135 if ( curChild
>= iMax
)
1138 addOnlyIfNotEmpty
= true;
1140 tokenStart
= 0xFFFFFF;
1146 if ( a
== delimeter
)
1147 strPosIncrement
-= 1;
1155 it
+= strPosIncrement
;
1157 if ( it
!= text
.end() )
1166 pos
+= strPosIncrement
;
1175 bool wxPGProperty::SetValueFromString( const wxString
& text
, int argFlags
)
1177 wxVariant
variant(m_value
);
1178 bool res
= StringToValue(variant
, text
, argFlags
);
1184 bool wxPGProperty::SetValueFromInt( long number
, int argFlags
)
1186 wxVariant
variant(m_value
);
1187 bool res
= IntToValue(variant
, number
, argFlags
);
1193 wxSize
wxPGProperty::OnMeasureImage( int WXUNUSED(item
) ) const
1195 if ( m_valueBitmap
)
1196 return wxSize(m_valueBitmap
->GetWidth(),-1);
1201 int wxPGProperty::GetImageOffset( int imageWidth
) const
1203 int imageOffset
= 0;
1207 // Do not increment offset too much for wide images
1208 if ( imageWidth
<= (wxPG_CUSTOM_IMAGE_WIDTH
+5) )
1209 imageOffset
= imageWidth
+ DEFAULT_IMAGE_OFFSET_INCREMENT
;
1211 imageOffset
= imageWidth
+ 1;
1217 wxPGCellRenderer
* wxPGProperty::GetCellRenderer( int WXUNUSED(column
) ) const
1219 return wxPGGlobalVars
->m_defaultRenderer
;
1222 void wxPGProperty::OnCustomPaint( wxDC
& dc
,
1226 wxBitmap
* bmp
= m_valueBitmap
;
1228 wxCHECK_RET( bmp
&& bmp
->Ok(), wxT("invalid bitmap") );
1230 wxCHECK_RET( rect
.x
>= 0, wxT("unexpected measure call") );
1232 dc
.DrawBitmap(*bmp
,rect
.x
,rect
.y
);
1235 const wxPGEditor
* wxPGProperty::DoGetEditorClass() const
1237 return wxPGEditor_TextCtrl
;
1240 // Default extra property event handling - that is, none at all.
1241 bool wxPGProperty::OnEvent( wxPropertyGrid
*, wxWindow
*, wxEvent
& )
1247 void wxPGProperty::SetValue( wxVariant value
, wxVariant
* pList
, int flags
)
1249 // If auto unspecified values are not wanted (via window or property style),
1250 // then get default value instead of wxNullVariant.
1251 if ( value
.IsNull() && (flags
& wxPG_SETVAL_BY_USER
) &&
1252 !UsesAutoUnspecified() )
1254 value
= GetDefaultValue();
1257 if ( !value
.IsNull() )
1259 wxVariant tempListVariant
;
1262 // List variants are reserved a special purpose
1263 // as intermediate containers for child values
1264 // of properties with children.
1265 if ( value
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1268 // However, situation is different for composed string properties
1269 if ( HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
1271 tempListVariant
= value
;
1272 pList
= &tempListVariant
;
1276 AdaptListToValue(value
, &newValue
);
1278 //wxLogDebug(wxT(">> %s.SetValue() adapted list value to type '%s'"),GetName().c_str(),value.GetType().c_str());
1281 if ( HasFlag( wxPG_PROP_AGGREGATE
) )
1282 flags
|= wxPG_SETVAL_AGGREGATED
;
1284 if ( pList
&& !pList
->IsNull() )
1286 wxASSERT( pList
->GetType() == wxPG_VARIANT_TYPE_LIST
);
1287 wxASSERT( GetChildCount() );
1288 wxASSERT( !IsCategory() );
1290 wxVariantList
& list
= pList
->GetList();
1291 wxVariantList::iterator node
;
1294 //wxLogDebug(wxT(">> %s.SetValue() pList parsing"),GetName().c_str());
1296 // Children in list can be in any order, but we will give hint to
1297 // GetPropertyByNameWH(). This optimizes for full list parsing.
1298 for ( node
= list
.begin(); node
!= list
.end(); ++node
)
1300 wxVariant
& childValue
= *((wxVariant
*)*node
);
1301 wxPGProperty
* child
= GetPropertyByNameWH(childValue
.GetName(), i
);
1304 //wxLogDebug(wxT("%i: child = %s, childValue.GetType()=%s"),i,child->GetBaseName().c_str(),childValue.GetType().c_str());
1305 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1307 if ( child
->HasFlag(wxPG_PROP_AGGREGATE
) && !(flags
& wxPG_SETVAL_AGGREGATED
) )
1309 wxVariant listRefCopy
= childValue
;
1310 child
->SetValue(childValue
, &listRefCopy
, flags
|wxPG_SETVAL_FROM_PARENT
);
1314 wxVariant oldVal
= child
->GetValue();
1315 child
->SetValue(oldVal
, &childValue
, flags
|wxPG_SETVAL_FROM_PARENT
);
1318 else if ( child
->GetValue() != childValue
)
1320 // For aggregate properties, we will trust RefreshChildren()
1321 // to update child values.
1322 if ( !HasFlag(wxPG_PROP_AGGREGATE
) )
1323 child
->SetValue(childValue
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1324 if ( flags
& wxPG_SETVAL_BY_USER
)
1325 child
->SetFlag(wxPG_PROP_MODIFIED
);
1332 if ( !value
.IsNull() )
1338 if ( flags
& wxPG_SETVAL_BY_USER
)
1339 SetFlag(wxPG_PROP_MODIFIED
);
1341 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
1346 if ( m_commonValue
!= -1 )
1348 wxPropertyGrid
* pg
= GetGrid();
1349 if ( !pg
|| m_commonValue
!= pg
->GetUnspecifiedCommonValue() )
1355 // Set children to unspecified, but only if aggregate or
1356 // value is <composed>
1357 if ( AreChildrenComponents() )
1360 for ( i
=0; i
<GetChildCount(); i
++ )
1361 Item(i
)->SetValue(value
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1365 if ( !(flags
& wxPG_SETVAL_FROM_PARENT
) )
1366 UpdateParentValues();
1369 // Update editor control
1372 // We need to check for these, otherwise GetGrid() may fail.
1373 if ( flags
& wxPG_SETVAL_REFRESH_EDITOR
)
1376 wxPropertyGrid
* pg
= GetGridIfDisplayed();
1378 pg
->DrawItemAndValueRelated(this);
1383 void wxPGProperty::SetValueInEvent( wxVariant value
) const
1385 GetGrid()->ValueChangeInEvent(value
);
1388 void wxPGProperty::SetFlagRecursively( FlagType flag
, bool set
)
1390 ChangeFlag(flag
, set
);
1393 for ( i
= 0; i
< GetChildCount(); i
++ )
1394 Item(i
)->SetFlagRecursively(flag
, set
);
1397 void wxPGProperty::RefreshEditor()
1402 wxPropertyGrid
* pg
= GetGrid();
1403 if ( pg
&& pg
->GetSelectedProperty() == this )
1404 pg
->RefreshEditor();
1407 wxVariant
wxPGProperty::GetDefaultValue() const
1409 wxVariant defVal
= GetAttribute(wxPG_ATTR_DEFAULT_VALUE
);
1410 if ( !defVal
.IsNull() )
1413 wxVariant value
= GetValue();
1415 if ( !value
.IsNull() )
1417 wxString
valueType(value
.GetType());
1419 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1420 return wxPGVariant_Zero
;
1421 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1422 return wxPGVariant_EmptyString
;
1423 if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1424 return wxPGVariant_False
;
1425 if ( valueType
== wxPG_VARIANT_TYPE_DOUBLE
)
1426 return wxVariant(0.0);
1427 if ( valueType
== wxPG_VARIANT_TYPE_ARRSTRING
)
1428 return wxVariant(wxArrayString());
1429 if ( valueType
== wxS("wxLongLong") )
1430 return WXVARIANT(wxLongLong(0));
1431 if ( valueType
== wxS("wxULongLong") )
1432 return WXVARIANT(wxULongLong(0));
1433 if ( valueType
== wxS("wxColour") )
1434 return WXVARIANT(*wxBLACK
);
1436 if ( valueType
== wxPG_VARIANT_TYPE_DATETIME
)
1437 return wxVariant(wxDateTime::Now());
1439 if ( valueType
== wxS("wxFont") )
1440 return WXVARIANT(*wxNORMAL_FONT
);
1441 if ( valueType
== wxS("wxPoint") )
1442 return WXVARIANT(wxPoint(0, 0));
1443 if ( valueType
== wxS("wxSize") )
1444 return WXVARIANT(wxSize(0, 0));
1450 void wxPGProperty::EnsureCells( unsigned int column
)
1452 if ( column
>= m_cells
.size() )
1454 // Fill empty slots with default cells
1455 wxPropertyGrid
* pg
= GetGrid();
1456 wxPGCell defaultCell
;
1458 // Work around possible VC6 bug by using intermediate variables
1459 const wxPGCell
& propDefCell
= pg
->GetPropertyDefaultCell();
1460 const wxPGCell
& catDefCell
= pg
->GetCategoryDefaultCell();
1462 if ( !HasFlag(wxPG_PROP_CATEGORY
) )
1463 defaultCell
= propDefCell
;
1465 defaultCell
= catDefCell
;
1467 // TODO: Replace with resize() call
1468 unsigned int cellCountMax
= column
+1;
1470 for ( unsigned int i
=m_cells
.size(); i
<cellCountMax
; i
++ )
1471 m_cells
.push_back(defaultCell
);
1475 void wxPGProperty::SetCell( int column
,
1476 const wxPGCell
& cell
)
1478 EnsureCells(column
);
1480 m_cells
[column
] = cell
;
1483 void wxPGProperty::AdaptiveSetCell( unsigned int firstCol
,
1484 unsigned int lastCol
,
1485 const wxPGCell
& cell
,
1486 const wxPGCell
& srcData
,
1487 wxPGCellData
* unmodCellData
,
1488 FlagType ignoreWithFlags
,
1492 // Sets cell in memory optimizing fashion. That is, if
1493 // current cell data matches unmodCellData, we will
1494 // simply get reference to data from cell. Otherwise,
1495 // cell information from srcData is merged into current.
1498 if ( !(m_flags
& ignoreWithFlags
) && !IsRoot() )
1500 EnsureCells(lastCol
);
1502 for ( unsigned int col
=firstCol
; col
<=lastCol
; col
++ )
1504 if ( m_cells
[col
].GetData() == unmodCellData
)
1506 // Data matches... use cell directly
1507 m_cells
[col
] = cell
;
1511 // Data did not match... merge valid information
1512 m_cells
[col
].MergeFrom(srcData
);
1519 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
1520 Item(i
)->AdaptiveSetCell( firstCol
,
1530 const wxPGCell
& wxPGProperty::GetCell( unsigned int column
) const
1532 if ( m_cells
.size() > column
)
1533 return m_cells
[column
];
1535 wxPropertyGrid
* pg
= GetGrid();
1538 return pg
->GetCategoryDefaultCell();
1540 return pg
->GetPropertyDefaultCell();
1543 wxPGCell
& wxPGProperty::GetOrCreateCell( unsigned int column
)
1545 EnsureCells(column
);
1546 return m_cells
[column
];
1549 void wxPGProperty::SetBackgroundColour( const wxColour
& colour
,
1552 wxPGProperty
* firstProp
= this;
1553 bool recursively
= flags
& wxPG_RECURSE
? true : false;
1556 // If category is tried to set recursively, skip it and only
1557 // affect the children.
1560 while ( firstProp
->IsCategory() )
1562 if ( !firstProp
->GetChildCount() )
1564 firstProp
= firstProp
->Item(0);
1568 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1569 wxPGCellData
* firstCellData
= firstCell
.GetData();
1571 wxPGCell
newCell(firstCell
);
1572 newCell
.SetBgCol(colour
);
1574 srcCell
.SetBgCol(colour
);
1577 GetParentState()->GetColumnCount()-1,
1581 recursively
? wxPG_PROP_CATEGORY
: 0,
1585 void wxPGProperty::SetTextColour( const wxColour
& colour
,
1588 wxPGProperty
* firstProp
= this;
1589 bool recursively
= flags
& wxPG_RECURSE
? true : false;
1592 // If category is tried to set recursively, skip it and only
1593 // affect the children.
1596 while ( firstProp
->IsCategory() )
1598 if ( !firstProp
->GetChildCount() )
1600 firstProp
= firstProp
->Item(0);
1604 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1605 wxPGCellData
* firstCellData
= firstCell
.GetData();
1607 wxPGCell
newCell(firstCell
);
1608 newCell
.SetFgCol(colour
);
1610 srcCell
.SetFgCol(colour
);
1613 GetParentState()->GetColumnCount()-1,
1617 recursively
? wxPG_PROP_CATEGORY
: 0,
1621 wxPGEditorDialogAdapter
* wxPGProperty::GetEditorDialog() const
1626 bool wxPGProperty::DoSetAttribute( const wxString
& WXUNUSED(name
), wxVariant
& WXUNUSED(value
) )
1631 void wxPGProperty::SetAttribute( const wxString
& name
, wxVariant value
)
1633 if ( DoSetAttribute( name
, value
) )
1635 // Support working without grid, when possible
1636 if ( wxPGGlobalVars
->HasExtraStyle( wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
) )
1640 m_attributes
.Set( name
, value
);
1643 void wxPGProperty::SetAttributes( const wxPGAttributeStorage
& attributes
)
1645 wxPGAttributeStorage::const_iterator it
= attributes
.StartIteration();
1648 while ( attributes
.GetNext(it
, variant
) )
1649 SetAttribute( variant
.GetName(), variant
);
1652 wxVariant
wxPGProperty::DoGetAttribute( const wxString
& WXUNUSED(name
) ) const
1658 wxVariant
wxPGProperty::GetAttribute( const wxString
& name
) const
1660 return m_attributes
.FindValue(name
);
1663 wxString
wxPGProperty::GetAttribute( const wxString
& name
, const wxString
& defVal
) const
1665 wxVariant variant
= m_attributes
.FindValue(name
);
1667 if ( !variant
.IsNull() )
1668 return variant
.GetString();
1673 long wxPGProperty::GetAttributeAsLong( const wxString
& name
, long defVal
) const
1675 wxVariant variant
= m_attributes
.FindValue(name
);
1677 if ( variant
.IsNull() )
1680 return variant
.GetLong();
1683 double wxPGProperty::GetAttributeAsDouble( const wxString
& name
, double defVal
) const
1685 wxVariant variant
= m_attributes
.FindValue(name
);
1687 if ( variant
.IsNull() )
1690 return variant
.GetDouble();
1693 wxVariant
wxPGProperty::GetAttributesAsList() const
1695 wxVariantList tempList
;
1696 wxVariant
v( tempList
, wxString::Format(wxS("@%s@attr"),m_name
.c_str()) );
1698 wxPGAttributeStorage::const_iterator it
= m_attributes
.StartIteration();
1701 while ( m_attributes
.GetNext(it
, variant
) )
1707 // Slots of utility flags are NULL
1708 const unsigned int gs_propFlagToStringSize
= 14;
1710 static const wxChar
* const gs_propFlagToString
[gs_propFlagToStringSize
] = {
1727 wxString
wxPGProperty::GetFlagsAsString( FlagType flagsMask
) const
1730 int relevantFlags
= m_flags
& flagsMask
& wxPG_STRING_STORED_FLAGS
;
1734 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1736 if ( relevantFlags
& a
)
1738 const wxChar
* fs
= gs_propFlagToString
[i
];
1750 void wxPGProperty::SetFlagsFromString( const wxString
& str
)
1754 WX_PG_TOKENIZER1_BEGIN(str
, wxS('|'))
1756 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1758 const wxChar
* fs
= gs_propFlagToString
[i
];
1759 if ( fs
&& str
== fs
)
1765 WX_PG_TOKENIZER1_END()
1767 m_flags
= (m_flags
& ~wxPG_STRING_STORED_FLAGS
) | flags
;
1770 wxValidator
* wxPGProperty::DoGetValidator() const
1775 int wxPGProperty::InsertChoice( const wxString
& label
, int index
, int value
)
1777 wxPropertyGrid
* pg
= GetGrid();
1778 int sel
= GetChoiceSelection();
1782 if ( index
== wxNOT_FOUND
)
1783 index
= m_choices
.GetCount();
1788 m_choices
.Insert(label
, index
, value
);
1790 if ( sel
!= newSel
)
1791 SetChoiceSelection(newSel
);
1793 if ( this == pg
->GetSelection() )
1794 GetEditorClass()->InsertItem(pg
->GetEditorControl(),label
,index
);
1800 void wxPGProperty::DeleteChoice( int index
)
1802 wxPropertyGrid
* pg
= GetGrid();
1804 int sel
= GetChoiceSelection();
1807 // Adjust current value
1810 SetValueToUnspecified();
1813 else if ( index
< sel
)
1818 m_choices
.RemoveAt(index
);
1820 if ( sel
!= newSel
)
1821 SetChoiceSelection(newSel
);
1823 if ( this == pg
->GetSelection() )
1824 GetEditorClass()->DeleteItem(pg
->GetEditorControl(), index
);
1827 int wxPGProperty::GetChoiceSelection() const
1829 wxVariant value
= GetValue();
1830 wxString valueType
= value
.GetType();
1831 int index
= wxNOT_FOUND
;
1833 if ( IsValueUnspecified() || !m_choices
.GetCount() )
1836 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1838 index
= value
.GetLong();
1840 else if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1842 index
= m_choices
.Index(value
.GetString());
1844 else if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1846 index
= value
.GetBool()? 1 : 0;
1852 void wxPGProperty::SetChoiceSelection( int newValue
)
1854 // Changes value of a property with choices, but only
1855 // works if the value type is long or string.
1856 wxString valueType
= GetValue().GetType();
1858 wxCHECK_RET( m_choices
.IsOk(), wxT("invalid choiceinfo") );
1860 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1862 SetValue( m_choices
.GetLabel(newValue
) );
1864 else // if ( valueType == wxPG_VARIANT_TYPE_LONG )
1866 SetValue( (long) newValue
);
1870 bool wxPGProperty::SetChoices( wxPGChoices
& choices
)
1872 m_choices
.Assign(choices
);
1875 // This may be needed to trigger some initialization
1876 // (but don't do it if property is somewhat uninitialized)
1877 wxVariant defVal
= GetDefaultValue();
1878 if ( defVal
.IsNull() )
1888 const wxPGEditor
* wxPGProperty::GetEditorClass() const
1890 const wxPGEditor
* editor
;
1892 if ( !m_customEditor
)
1894 editor
= DoGetEditorClass();
1897 editor
= m_customEditor
;
1900 // Maybe override editor if common value specified
1901 if ( GetDisplayedCommonValueCount() )
1903 // TextCtrlAndButton -> ComboBoxAndButton
1904 if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlAndButtonEditor
)) )
1905 editor
= wxPGEditor_ChoiceAndButton
;
1907 // TextCtrl -> ComboBox
1908 else if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlEditor
)) )
1909 editor
= wxPGEditor_ComboBox
;
1915 bool wxPGProperty::HasVisibleChildren() const
1919 for ( i
=0; i
<GetChildCount(); i
++ )
1921 wxPGProperty
* child
= Item(i
);
1923 if ( !child
->HasFlag(wxPG_PROP_HIDDEN
) )
1930 bool wxPGProperty::RecreateEditor()
1932 wxPropertyGrid
* pg
= GetGrid();
1935 wxPGProperty
* selected
= pg
->GetSelection();
1936 if ( this == selected
)
1938 pg
->DoSelectProperty(this, wxPG_SEL_FORCE
);
1945 void wxPGProperty::SetValueImage( wxBitmap
& bmp
)
1947 delete m_valueBitmap
;
1949 if ( &bmp
&& bmp
.Ok() )
1952 wxSize maxSz
= GetGrid()->GetImageSize();
1953 wxSize
imSz(bmp
.GetWidth(),bmp
.GetHeight());
1955 if ( imSz
.y
!= maxSz
.y
)
1957 // Create a memory DC
1958 wxBitmap
* bmpNew
= new wxBitmap(maxSz
.x
,maxSz
.y
,bmp
.GetDepth());
1961 dc
.SelectObject(*bmpNew
);
1964 // FIXME: This is ugly - use image or wait for scaling patch.
1965 double scaleY
= (double)maxSz
.y
/ (double)imSz
.y
;
1967 dc
.SetUserScale(scaleY
, scaleY
);
1969 dc
.DrawBitmap(bmp
, 0, 0);
1971 m_valueBitmap
= bmpNew
;
1975 m_valueBitmap
= new wxBitmap(bmp
);
1978 m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
1982 m_valueBitmap
= NULL
;
1983 m_flags
&= ~(wxPG_PROP_CUSTOMIMAGE
);
1988 wxPGProperty
* wxPGProperty::GetMainParent() const
1990 const wxPGProperty
* curChild
= this;
1991 const wxPGProperty
* curParent
= m_parent
;
1993 while ( curParent
&& !curParent
->IsCategory() )
1995 curChild
= curParent
;
1996 curParent
= curParent
->m_parent
;
1999 return (wxPGProperty
*) curChild
;
2003 const wxPGProperty
* wxPGProperty::GetLastVisibleSubItem() const
2006 // Returns last visible sub-item, recursively.
2007 if ( !IsExpanded() || !GetChildCount() )
2010 return Last()->GetLastVisibleSubItem();
2014 bool wxPGProperty::IsVisible() const
2016 const wxPGProperty
* parent
;
2018 if ( HasFlag(wxPG_PROP_HIDDEN
) )
2021 for ( parent
= GetParent(); parent
!= NULL
; parent
= parent
->GetParent() )
2023 if ( !parent
->IsExpanded() || parent
->HasFlag(wxPG_PROP_HIDDEN
) )
2030 wxPropertyGrid
* wxPGProperty::GetGridIfDisplayed() const
2032 wxPropertyGridPageState
* state
= GetParentState();
2035 wxPropertyGrid
* propGrid
= state
->GetGrid();
2036 if ( state
== propGrid
->GetState() )
2042 int wxPGProperty::GetY2( int lh
) const
2044 const wxPGProperty
* parent
;
2045 const wxPGProperty
* child
= this;
2049 for ( parent
= GetParent(); parent
!= NULL
; parent
= child
->GetParent() )
2051 if ( !parent
->IsExpanded() )
2053 y
+= parent
->GetChildrenHeight(lh
, child
->GetIndexInParent());
2058 y
-= lh
; // need to reduce one level
2064 int wxPGProperty::GetY() const
2066 return GetY2(GetGrid()->GetRowHeight());
2069 // This is used by Insert etc.
2070 void wxPGProperty::DoAddChild( wxPGProperty
* prop
, int index
,
2073 if ( index
< 0 || (size_t)index
>= m_children
.size() )
2075 if ( correct_mode
) prop
->m_arrIndex
= m_children
.size();
2076 m_children
.push_back( prop
);
2080 m_children
.insert( m_children
.begin()+index
, prop
);
2081 if ( correct_mode
) FixIndicesOfChildren( index
);
2084 prop
->m_parent
= this;
2087 void wxPGProperty::DoPreAddChild( int index
, wxPGProperty
* prop
)
2089 wxASSERT_MSG( prop
->GetBaseName().length(),
2090 "Property's children must have unique, non-empty "
2091 "names within their scope" );
2093 prop
->m_arrIndex
= index
;
2094 m_children
.insert( m_children
.begin()+index
,
2097 int custImgHeight
= prop
->OnMeasureImage().y
;
2098 if ( custImgHeight
< 0 /*|| custImgHeight > 1*/ )
2099 prop
->m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
2101 prop
->m_parent
= this;
2104 void wxPGProperty::AddPrivateChild( wxPGProperty
* prop
)
2106 if ( !(m_flags
& wxPG_PROP_PARENTAL_FLAGS
) )
2107 SetParentalType(wxPG_PROP_AGGREGATE
);
2109 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
2110 wxPG_PROP_AGGREGATE
,
2111 "Do not mix up AddPrivateChild() calls with other "
2112 "property adders." );
2114 DoPreAddChild( m_children
.size(), prop
);
2117 #if wxPG_COMPATIBILITY_1_4
2118 void wxPGProperty::AddChild( wxPGProperty
* prop
)
2120 AddPrivateChild(prop
);
2124 wxPGProperty
* wxPGProperty::InsertChild( int index
,
2125 wxPGProperty
* childProperty
)
2128 index
= m_children
.size();
2130 if ( m_parentState
)
2132 m_parentState
->DoInsert(this, index
, childProperty
);
2136 if ( !(m_flags
& wxPG_PROP_PARENTAL_FLAGS
) )
2137 SetParentalType(wxPG_PROP_MISC_PARENT
);
2139 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
2140 wxPG_PROP_MISC_PARENT
,
2141 "Do not mix up AddPrivateChild() calls with other "
2142 "property adders." );
2144 DoPreAddChild( index
, childProperty
);
2147 return childProperty
;
2150 void wxPGProperty::RemoveChild( wxPGProperty
* p
)
2152 wxArrayPGProperty::iterator it
;
2153 wxArrayPGProperty
& children
= m_children
;
2155 for ( it
=children
.begin(); it
!= children
.end(); it
++ )
2165 void wxPGProperty::AdaptListToValue( wxVariant
& list
, wxVariant
* value
) const
2167 wxASSERT( GetChildCount() );
2168 wxASSERT( !IsCategory() );
2170 *value
= GetValue();
2172 if ( !list
.GetCount() )
2175 wxASSERT( GetChildCount() >= (unsigned int)list
.GetCount() );
2177 bool allChildrenSpecified
;
2179 // Don't fully update aggregate properties unless all children have
2181 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
2182 allChildrenSpecified
= AreAllChildrenSpecified(&list
);
2184 allChildrenSpecified
= true;
2186 wxVariant childValue
= list
[0];
2190 //wxLogDebug(wxT(">> %s.AdaptListToValue()"),GetBaseName().c_str());
2192 for ( i
=0; i
<GetChildCount(); i
++ )
2194 const wxPGProperty
* child
= Item(i
);
2196 if ( childValue
.GetName() == child
->GetBaseName() )
2198 //wxLogDebug(wxT(" %s(n=%i), %s"),childValue.GetName().c_str(),n,childValue.GetType().c_str());
2200 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2202 wxVariant
cv2(child
->GetValue());
2203 child
->AdaptListToValue(childValue
, &cv2
);
2207 if ( allChildrenSpecified
)
2209 *value
= ChildChanged(*value
, i
, childValue
);
2213 if ( n
== (unsigned int)list
.GetCount() )
2215 childValue
= list
[n
];
2221 void wxPGProperty::FixIndicesOfChildren( unsigned int starthere
)
2224 for ( i
=starthere
;i
<GetChildCount();i
++)
2225 Item(i
)->m_arrIndex
= i
;
2229 // Returns (direct) child property with given name (or NULL if not found)
2230 wxPGProperty
* wxPGProperty::GetPropertyByName( const wxString
& name
) const
2234 for ( i
=0; i
<GetChildCount(); i
++ )
2236 wxPGProperty
* p
= Item(i
);
2237 if ( p
->m_name
== name
)
2241 // Does it have point, then?
2242 int pos
= name
.Find(wxS('.'));
2246 wxPGProperty
* p
= GetPropertyByName(name
. substr(0,pos
));
2248 if ( !p
|| !p
->GetChildCount() )
2251 return p
->GetPropertyByName(name
.substr(pos
+1,name
.length()-pos
-1));
2254 wxPGProperty
* wxPGProperty::GetPropertyByNameWH( const wxString
& name
, unsigned int hintIndex
) const
2256 unsigned int i
= hintIndex
;
2258 if ( i
>= GetChildCount() )
2261 unsigned int lastIndex
= i
- 1;
2263 if ( lastIndex
>= GetChildCount() )
2264 lastIndex
= GetChildCount() - 1;
2268 wxPGProperty
* p
= Item(i
);
2269 if ( p
->m_name
== name
)
2272 if ( i
== lastIndex
)
2276 if ( i
== GetChildCount() )
2283 int wxPGProperty::GetChildrenHeight( int lh
, int iMax_
) const
2285 // Returns height of children, recursively, and
2286 // by taking expanded/collapsed status into account.
2288 // iMax is used when finding property y-positions.
2294 iMax_
= GetChildCount();
2296 unsigned int iMax
= iMax_
;
2298 wxASSERT( iMax
<= GetChildCount() );
2300 if ( !IsExpanded() && GetParent() )
2305 wxPGProperty
* pwc
= (wxPGProperty
*) Item(i
);
2307 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2309 if ( !pwc
->IsExpanded() ||
2310 pwc
->GetChildCount() == 0 )
2313 h
+= pwc
->GetChildrenHeight(lh
) + lh
;
2322 wxPGProperty
* wxPGProperty::GetItemAtY( unsigned int y
,
2324 unsigned int* nextItemY
) const
2326 wxASSERT( nextItemY
);
2328 // Linear search at the moment
2330 // nextItemY = y of next visible property, final value will be written back.
2331 wxPGProperty
* result
= NULL
;
2332 wxPGProperty
* current
= NULL
;
2333 unsigned int iy
= *nextItemY
;
2335 unsigned int iMax
= GetChildCount();
2339 wxPGProperty
* pwc
= Item(i
);
2341 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2352 if ( pwc
->IsExpanded() &&
2353 pwc
->GetChildCount() > 0 )
2355 result
= (wxPGProperty
*) pwc
->GetItemAtY( y
, lh
, &iy
);
2367 if ( !result
&& y
< iy
)
2375 wxLogDebug(wxT("%s::GetItemAtY(%i) -> %s"),this->GetLabel().c_str(),y,current->GetLabel().c_str());
2379 wxLogDebug(wxT("%s::GetItemAtY(%i) -> NULL"),this->GetLabel().c_str(),y);
2383 return (wxPGProperty
*) result
;
2386 void wxPGProperty::Empty()
2389 if ( !HasFlag(wxPG_PROP_CHILDREN_ARE_COPIES
) )
2391 for ( i
=0; i
<GetChildCount(); i
++ )
2393 delete m_children
[i
];
2400 wxPGProperty
* wxPGProperty::GetItemAtY( unsigned int y
) const
2402 unsigned int nextItem
;
2403 return GetItemAtY( y
, GetGrid()->GetRowHeight(), &nextItem
);
2406 void wxPGProperty::DeleteChildren()
2408 wxPropertyGridPageState
* state
= m_parentState
;
2410 while ( GetChildCount() )
2412 wxPGProperty
* child
= Item(GetChildCount()-1);
2413 state
->DoDelete(child
, true);
2417 wxVariant
wxPGProperty::ChildChanged( wxVariant
& WXUNUSED(thisValue
),
2418 int WXUNUSED(childIndex
),
2419 wxVariant
& WXUNUSED(childValue
) ) const
2421 return wxNullVariant
;
2424 bool wxPGProperty::AreAllChildrenSpecified( wxVariant
* pendingList
) const
2428 const wxVariantList
* pList
= NULL
;
2429 wxVariantList::const_iterator node
;
2433 pList
= &pendingList
->GetList();
2434 node
= pList
->begin();
2437 for ( i
=0; i
<GetChildCount(); i
++ )
2439 wxPGProperty
* child
= Item(i
);
2440 const wxVariant
* listValue
= NULL
;
2445 const wxString
& childName
= child
->GetBaseName();
2447 for ( ; node
!= pList
->end(); ++node
)
2449 const wxVariant
& item
= *((const wxVariant
*)*node
);
2450 if ( item
.GetName() == childName
)
2460 value
= child
->GetValue();
2462 if ( value
.IsNull() )
2465 // Check recursively
2466 if ( child
->GetChildCount() )
2468 const wxVariant
* childList
= NULL
;
2470 if ( listValue
&& listValue
->GetType() == wxPG_VARIANT_TYPE_LIST
)
2471 childList
= listValue
;
2473 if ( !child
->AreAllChildrenSpecified((wxVariant
*)childList
) )
2481 wxPGProperty
* wxPGProperty::UpdateParentValues()
2483 wxPGProperty
* parent
= m_parent
;
2484 if ( parent
&& parent
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
2485 !parent
->IsCategory() && !parent
->IsRoot() )
2488 parent
->DoGenerateComposedValue(s
);
2489 parent
->m_value
= s
;
2490 return parent
->UpdateParentValues();
2495 bool wxPGProperty::IsTextEditable() const
2497 if ( HasFlag(wxPG_PROP_READONLY
) )
2500 if ( HasFlag(wxPG_PROP_NOEDITOR
) &&
2502 wxString(GetEditorClass()->GetClassInfo()->GetClassName()).EndsWith(wxS("Button")))
2509 // Call after fixed sub-properties added/removed after creation.
2510 // if oldSelInd >= 0 and < new max items, then selection is
2511 // moved to it. Note: oldSelInd -2 indicates that this property
2512 // should be selected.
2513 void wxPGProperty::SubPropsChanged( int oldSelInd
)
2515 wxPropertyGridPageState
* state
= GetParentState();
2516 wxPropertyGrid
* grid
= state
->GetGrid();
2519 // Re-repare children (recursively)
2520 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
2522 wxPGProperty
* child
= Item(i
);
2523 child
->InitAfterAdded(state
, grid
);
2526 wxPGProperty
* sel
= NULL
;
2527 if ( oldSelInd
>= (int)m_children
.size() )
2528 oldSelInd
= (int)m_children
.size() - 1;
2530 if ( oldSelInd
>= 0 )
2531 sel
= m_children
[oldSelInd
];
2532 else if ( oldSelInd
== -2 )
2536 state
->DoSelectProperty(sel
);
2538 if ( state
== grid
->GetState() )
2540 grid
->GetPanel()->Refresh();
2544 // -----------------------------------------------------------------------
2546 // -----------------------------------------------------------------------
2548 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPGRootProperty
,none
,TextCtrl
)
2549 IMPLEMENT_DYNAMIC_CLASS(wxPGRootProperty
, wxPGProperty
)
2552 wxPGRootProperty::wxPGRootProperty( const wxString
& name
)
2562 wxPGRootProperty::~wxPGRootProperty()
2567 // -----------------------------------------------------------------------
2568 // wxPropertyCategory
2569 // -----------------------------------------------------------------------
2571 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPropertyCategory
,none
,TextCtrl
)
2572 IMPLEMENT_DYNAMIC_CLASS(wxPropertyCategory
, wxPGProperty
)
2574 void wxPropertyCategory::Init()
2576 // don't set colour - prepareadditem method should do this
2577 SetParentalType(wxPG_PROP_CATEGORY
);
2578 m_capFgColIndex
= 1;
2582 wxPropertyCategory::wxPropertyCategory()
2589 wxPropertyCategory::wxPropertyCategory( const wxString
&label
, const wxString
& name
)
2590 : wxPGProperty(label
,name
)
2596 wxPropertyCategory::~wxPropertyCategory()
2601 wxString
wxPropertyCategory::ValueToString( wxVariant
& WXUNUSED(value
),
2602 int WXUNUSED(argFlags
) ) const
2604 return wxEmptyString
;
2607 int wxPropertyCategory::GetTextExtent( const wxWindow
* wnd
, const wxFont
& font
) const
2609 if ( m_textExtent
> 0 )
2610 return m_textExtent
;
2612 ((wxWindow
*)wnd
)->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2616 void wxPropertyCategory::CalculateTextExtent( wxWindow
* wnd
, const wxFont
& font
)
2619 wnd
->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2623 // -----------------------------------------------------------------------
2625 // -----------------------------------------------------------------------
2627 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
2631 wxPGChoiceEntry
entry(label
, value
);
2632 return m_data
->Insert( -1, entry
);
2635 // -----------------------------------------------------------------------
2637 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
2641 wxPGChoiceEntry
entry(label
, value
);
2642 entry
.SetBitmap(bitmap
);
2643 return m_data
->Insert( -1, entry
);
2646 // -----------------------------------------------------------------------
2648 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
2652 return m_data
->Insert( index
, entry
);
2655 // -----------------------------------------------------------------------
2657 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
2661 wxPGChoiceEntry
entry(label
, value
);
2662 return m_data
->Insert( index
, entry
);
2665 // -----------------------------------------------------------------------
2667 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
2673 while ( index
< GetCount() )
2675 int cmpRes
= GetLabel(index
).Cmp(label
);
2681 wxPGChoiceEntry
entry(label
, value
);
2682 return m_data
->Insert( index
, entry
);
2685 // -----------------------------------------------------------------------
2687 void wxPGChoices::Add( const wxChar
* const* labels
, const ValArrItem
* values
)
2691 unsigned int itemcount
= 0;
2692 const wxChar
* const* p
= &labels
[0];
2693 while ( *p
) { p
++; itemcount
++; }
2696 for ( i
= 0; i
< itemcount
; i
++ )
2701 wxPGChoiceEntry
entry(labels
[i
], value
);
2702 m_data
->Insert( i
, entry
);
2706 // -----------------------------------------------------------------------
2708 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
2713 unsigned int itemcount
= arr
.size();
2715 for ( i
= 0; i
< itemcount
; i
++ )
2718 if ( &arrint
&& arrint
.size() )
2720 wxPGChoiceEntry
entry(arr
[i
], value
);
2721 m_data
->Insert( i
, entry
);
2725 // -----------------------------------------------------------------------
2727 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
2731 wxASSERT( m_data
->GetRefCount() != -1 );
2732 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
2733 m_data
->m_items
.begin()+nIndex
+count
);
2736 // -----------------------------------------------------------------------
2738 void wxPGChoices::Clear()
2740 if ( m_data
!= wxPGChoicesEmptyData
)
2747 // -----------------------------------------------------------------------
2749 int wxPGChoices::Index( const wxString
& str
) const
2754 for ( i
=0; i
< m_data
->GetCount(); i
++ )
2756 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
2757 if ( entry
.HasText() && entry
.GetText() == str
)
2764 // -----------------------------------------------------------------------
2766 int wxPGChoices::Index( int val
) const
2771 for ( i
=0; i
< m_data
->GetCount(); i
++ )
2773 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
2774 if ( entry
.GetValue() == val
)
2781 // -----------------------------------------------------------------------
2783 wxArrayString
wxPGChoices::GetLabels() const
2788 if ( this && IsOk() )
2789 for ( i
=0; i
<GetCount(); i
++ )
2790 arr
.push_back(GetLabel(i
));
2795 // -----------------------------------------------------------------------
2797 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
2804 for ( i
=0; i
< strings
.size(); i
++ )
2806 int index
= Index(strings
[i
]);
2808 arr
.Add(GetValue(index
));
2810 arr
.Add(wxPG_INVALID_VALUE
);
2817 // -----------------------------------------------------------------------
2819 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
2820 wxArrayString
* unmatched
) const
2827 for ( i
=0; i
< strings
.size(); i
++ )
2829 const wxString
& str
= strings
[i
];
2830 int index
= Index(str
);
2833 else if ( unmatched
)
2834 unmatched
->Add(str
);
2841 // -----------------------------------------------------------------------
2843 void wxPGChoices::AllocExclusive()
2847 if ( m_data
->GetRefCount() != 1 )
2849 wxPGChoicesData
* data
= new wxPGChoicesData();
2850 data
->CopyDataFrom(m_data
);
2856 // -----------------------------------------------------------------------
2858 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
2862 if ( data
!= wxPGChoicesEmptyData
)
2869 // -----------------------------------------------------------------------
2871 void wxPGChoices::Init()
2873 m_data
= wxPGChoicesEmptyData
;
2876 // -----------------------------------------------------------------------
2878 void wxPGChoices::Free()
2880 if ( m_data
!= wxPGChoicesEmptyData
)
2883 m_data
= wxPGChoicesEmptyData
;
2887 // -----------------------------------------------------------------------
2888 // wxPGAttributeStorage
2889 // -----------------------------------------------------------------------
2891 wxPGAttributeStorage::wxPGAttributeStorage()
2895 wxPGAttributeStorage::~wxPGAttributeStorage()
2897 wxPGHashMapS2P::iterator it
;
2899 for ( it
= m_map
.begin(); it
!= m_map
.end(); ++it
)
2901 wxVariantData
* data
= (wxVariantData
*) it
->second
;
2906 void wxPGAttributeStorage::Set( const wxString
& name
, const wxVariant
& value
)
2908 wxVariantData
* data
= value
.GetData();
2911 wxPGHashMapS2P::iterator it
= m_map
.find(name
);
2912 if ( it
!= m_map
.end() )
2914 ((wxVariantData
*)it
->second
)->DecRef();
2918 // If Null variant, just remove from set
2932 #endif // wxUSE_PROPGRID