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());
268 // Must make the editor NULL to override it's own rendering
275 int imageOffset
= property
->GetImageOffset(imageWidth
);
277 DrawEditorValue( dc
, rect
, imageOffset
, text
, property
, editor
);
279 // active caption gets nice dotted rectangle
280 if ( property
->IsCategory() /*&& column == 0*/ )
282 if ( flags
& Selected
)
284 if ( imageOffset
> 0 )
286 imageOffset
-= DEFAULT_IMAGE_OFFSET_INCREMENT
;
287 imageOffset
+= wxCC_CUSTOM_IMAGE_MARGIN2
+ 4;
290 DrawCaptionSelectionRect( dc
,
291 rect
.x
+wxPG_XBEFORETEXT
-wxPG_CAPRECTXMARGIN
+imageOffset
,
292 rect
.y
-wxPG_CAPRECTYMARGIN
+1,
293 ((wxPropertyCategory
*)property
)->GetTextExtent(propertyGrid
,
294 propertyGrid
->GetCaptionFont())
295 +(wxPG_CAPRECTXMARGIN
*2),
296 propertyGrid
->GetFontHeight()+(wxPG_CAPRECTYMARGIN
*2) );
300 PostDrawCell(dc
, propertyGrid
, *cell
, preDrawFlags
);
303 wxSize
wxPGDefaultRenderer::GetImageSize( const wxPGProperty
* property
,
307 if ( property
&& column
== 1 )
311 wxBitmap
* bmp
= property
->GetValueImage();
313 if ( bmp
&& bmp
->Ok() )
314 return wxSize(bmp
->GetWidth(),bmp
->GetHeight());
320 // -----------------------------------------------------------------------
322 // -----------------------------------------------------------------------
324 wxPGCellData::wxPGCellData()
327 m_hasValidText
= false;
330 // -----------------------------------------------------------------------
332 // -----------------------------------------------------------------------
339 wxPGCell::wxPGCell( const wxString
& text
,
340 const wxBitmap
& bitmap
,
341 const wxColour
& fgCol
,
342 const wxColour
& bgCol
)
345 wxPGCellData
* data
= new wxPGCellData();
348 data
->m_bitmap
= bitmap
;
349 data
->m_fgCol
= fgCol
;
350 data
->m_bgCol
= bgCol
;
351 data
->m_hasValidText
= true;
354 wxObjectRefData
*wxPGCell::CloneRefData( const wxObjectRefData
*data
) const
356 wxPGCellData
* c
= new wxPGCellData();
357 const wxPGCellData
* o
= (const wxPGCellData
*) data
;
358 c
->m_text
= o
->m_text
;
359 c
->m_bitmap
= o
->m_bitmap
;
360 c
->m_fgCol
= o
->m_fgCol
;
361 c
->m_bgCol
= o
->m_bgCol
;
362 c
->m_hasValidText
= o
->m_hasValidText
;
366 void wxPGCell::SetText( const wxString
& text
)
370 GetData()->SetText(text
);
373 void wxPGCell::SetBitmap( const wxBitmap
& bitmap
)
377 GetData()->SetBitmap(bitmap
);
380 void wxPGCell::SetFgCol( const wxColour
& col
)
384 GetData()->SetFgCol(col
);
387 void wxPGCell::SetFont( const wxFont
& font
)
391 GetData()->SetFont(font
);
394 void wxPGCell::SetBgCol( const wxColour
& col
)
398 GetData()->SetBgCol(col
);
401 void wxPGCell::MergeFrom( const wxPGCell
& srcCell
)
405 wxPGCellData
* data
= GetData();
407 if ( srcCell
.HasText() )
408 data
->SetText(srcCell
.GetText());
410 if ( srcCell
.GetFgCol().IsOk() )
411 data
->SetFgCol(srcCell
.GetFgCol());
413 if ( srcCell
.GetBgCol().IsOk() )
414 data
->SetBgCol(srcCell
.GetBgCol());
416 if ( srcCell
.GetBitmap().IsOk() )
417 data
->SetBitmap(srcCell
.GetBitmap());
420 // -----------------------------------------------------------------------
422 // -----------------------------------------------------------------------
424 IMPLEMENT_ABSTRACT_CLASS(wxPGProperty
, wxObject
)
426 wxString
* wxPGProperty::sm_wxPG_LABEL
= NULL
;
428 void wxPGProperty::Init()
434 m_parentState
= NULL
;
437 m_clientObject
= NULL
;
439 m_customEditor
= NULL
;
443 m_valueBitmap
= NULL
;
445 m_maxLen
= 0; // infinite maximum length
447 m_flags
= wxPG_PROP_PROPERTY
;
455 void wxPGProperty::Init( const wxString
& label
, const wxString
& name
)
457 // We really need to check if &label and &name are NULL pointers
458 // (this can if we are called before property grid has been initalized)
460 if ( (&label
) != NULL
&& label
!= wxPG_LABEL
)
463 if ( (&name
) != NULL
&& name
!= wxPG_LABEL
)
466 DoSetName( m_label
);
471 void wxPGProperty::InitAfterAdded( wxPropertyGridPageState
* pageState
,
472 wxPropertyGrid
* propgrid
)
475 // Called after property has been added to grid or page
476 // (so propgrid can be NULL, too).
478 wxPGProperty
* parent
= m_parent
;
479 bool parentIsRoot
= parent
->IsKindOf(CLASSINFO(wxPGRootProperty
));
481 m_parentState
= pageState
;
483 #if wxPG_COMPATIBILITY_1_4
484 // Make sure deprecated virtual functions are not implemented
485 wxString s
= GetValueAsString( 0xFFFF );
486 wxASSERT_MSG( s
== g_invalidStringContent
,
487 "Implement ValueToString() instead of GetValueAsString()" );
490 if ( !parentIsRoot
&& !parent
->IsCategory() )
492 m_cells
= parent
->m_cells
;
495 // If in hideable adding mode, or if assigned parent is hideable, then
496 // make this one hideable.
498 ( !parentIsRoot
&& parent
->HasFlag(wxPG_PROP_HIDDEN
) ) ||
499 ( propgrid
&& (propgrid
->HasInternalFlag(wxPG_FL_ADDING_HIDEABLES
)) )
501 SetFlag( wxPG_PROP_HIDDEN
);
503 // Set custom image flag.
504 int custImgHeight
= OnMeasureImage().y
;
505 if ( custImgHeight
< 0 )
507 SetFlag(wxPG_PROP_CUSTOMIMAGE
);
510 if ( propgrid
&& (propgrid
->HasFlag(wxPG_LIMITED_EDITING
)) )
511 SetFlag(wxPG_PROP_NOEDITOR
);
513 // Make sure parent has some parental flags
514 if ( !parent
->HasFlag(wxPG_PROP_PARENTAL_FLAGS
) )
515 parent
->SetParentalType(wxPG_PROP_MISC_PARENT
);
519 // This is not a category.
523 unsigned char depth
= 1;
526 depth
= parent
->m_depth
;
527 if ( !parent
->IsCategory() )
531 unsigned char greyDepth
= depth
;
535 wxPropertyCategory
* pc
;
537 if ( parent
->IsCategory() )
538 pc
= (wxPropertyCategory
* ) parent
;
540 // This conditional compile is necessary to
541 // bypass some compiler bug.
542 pc
= pageState
->GetPropertyCategory(parent
);
545 greyDepth
= pc
->GetDepth();
547 greyDepth
= parent
->m_depthBgCol
;
550 m_depthBgCol
= greyDepth
;
554 // This is a category.
557 unsigned char depth
= 1;
560 depth
= parent
->m_depth
+ 1;
563 m_depthBgCol
= depth
;
567 // Has initial children
568 if ( GetChildCount() )
570 // Check parental flags
571 wxASSERT_MSG( ((m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
572 wxPG_PROP_AGGREGATE
) ||
573 ((m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
574 wxPG_PROP_MISC_PARENT
),
575 "wxPGProperty parental flags set incorrectly at "
578 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
580 // Properties with private children are not expanded by default.
583 else if ( propgrid
&& propgrid
->HasFlag(wxPG_HIDE_MARGIN
) )
585 // ...unless it cannot be expanded by user and therefore must
586 // remain visible at all times
591 // Prepare children recursively
592 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
594 wxPGProperty
* child
= Item(i
);
595 child
->InitAfterAdded(pageState
, pageState
->GetGrid());
598 if ( propgrid
&& (propgrid
->GetExtraStyle() & wxPG_EX_AUTO_UNSPECIFIED_VALUES
) )
599 SetFlagRecursively(wxPG_PROP_AUTO_UNSPECIFIED
, true);
603 wxPGProperty::wxPGProperty()
610 wxPGProperty::wxPGProperty( const wxString
& label
, const wxString
& name
)
617 wxPGProperty::~wxPGProperty()
619 delete m_clientObject
;
621 Empty(); // this deletes items
623 delete m_valueBitmap
;
628 // This makes it easier for us to detect dangling pointers
633 bool wxPGProperty::IsSomeParent( wxPGProperty
* candidate
) const
635 wxPGProperty
* parent
= m_parent
;
638 if ( parent
== candidate
)
640 parent
= parent
->m_parent
;
645 void wxPGProperty::SetName( const wxString
& newName
)
647 wxPropertyGrid
* pg
= GetGrid();
650 pg
->SetPropertyName(this, newName
);
655 wxString
wxPGProperty::GetName() const
657 wxPGProperty
* parent
= GetParent();
659 if ( !m_name
.length() || !parent
|| parent
->IsCategory() || parent
->IsRoot() )
662 return m_parent
->GetName() + wxS(".") + m_name
;
665 wxPropertyGrid
* wxPGProperty::GetGrid() const
667 if ( !m_parentState
)
669 return m_parentState
->GetGrid();
672 int wxPGProperty::Index( const wxPGProperty
* p
) const
674 for ( unsigned int i
= 0; i
<m_children
.size(); i
++ )
676 if ( p
== m_children
[i
] )
682 bool wxPGProperty::ValidateValue( wxVariant
& WXUNUSED(value
), wxPGValidationInfo
& WXUNUSED(validationInfo
) ) const
687 void wxPGProperty::OnSetValue()
691 void wxPGProperty::RefreshChildren ()
695 void wxPGProperty::OnValidationFailure( wxVariant
& WXUNUSED(pendingValue
) )
699 void wxPGProperty::GetDisplayInfo( unsigned int column
,
703 const wxPGCell
** pCell
)
705 const wxPGCell
* cell
= NULL
;
707 if ( !(flags
& wxPGCellRenderer::ChoicePopup
) )
709 // Not painting listi of choice popups, so get text from property
710 cell
= &GetCell(column
);
711 if ( cell
->HasText() )
713 *pString
= cell
->GetText();
718 *pString
= GetLabel();
719 else if ( column
== 1 )
720 *pString
= GetDisplayedString();
721 else if ( column
== 2 )
722 *pString
= GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
727 wxASSERT( column
== 1 );
729 if ( choiceIndex
!= wxNOT_FOUND
)
731 const wxPGChoiceEntry
& entry
= m_choices
[choiceIndex
];
732 if ( entry
.GetBitmap().IsOk() ||
733 entry
.GetFgCol().IsOk() ||
734 entry
.GetBgCol().IsOk() )
736 *pString
= m_choices
.GetLabel(choiceIndex
);
741 cell
= &GetCell(column
);
743 wxASSERT_MSG( cell
->GetData(),
744 wxString::Format("Invalid cell for property %s",
745 GetName().c_str()) );
751 wxString wxPGProperty::GetColumnText( unsigned int col, int choiceIndex ) const
754 if ( col != 1 || choiceIndex == wxNOT_FOUND )
756 const wxPGCell& cell = GetCell(col);
757 if ( cell->HasText() )
759 return cell->GetText();
766 return GetDisplayedString();
768 return GetAttribute(wxPGGlobalVars->m_strUnits, wxEmptyString);
774 return m_choices.GetLabel(choiceIndex);
777 return wxEmptyString;
781 void wxPGProperty::DoGenerateComposedValue( wxString
& text
,
783 const wxVariantList
* valueOverrides
,
784 wxPGHashMapS2S
* childResults
) const
787 int iMax
= m_children
.size();
793 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
794 !(argFlags
& wxPG_FULL_VALUE
) )
795 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
797 int iMaxMinusOne
= iMax
-1;
799 if ( !IsTextEditable() )
800 argFlags
|= wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
;
802 wxPGProperty
* curChild
= m_children
[0];
804 bool overridesLeft
= false;
805 wxVariant overrideValue
;
806 wxVariantList::const_iterator node
;
808 if ( valueOverrides
)
810 node
= valueOverrides
->begin();
811 if ( node
!= valueOverrides
->end() )
813 overrideValue
= *node
;
814 overridesLeft
= true;
818 for ( i
= 0; i
< iMax
; i
++ )
820 wxVariant childValue
;
822 wxString childLabel
= curChild
->GetLabel();
824 // Check for value override
825 if ( overridesLeft
&& overrideValue
.GetName() == childLabel
)
827 if ( !overrideValue
.IsNull() )
828 childValue
= overrideValue
;
830 childValue
= curChild
->GetValue();
832 if ( node
!= valueOverrides
->end() )
833 overrideValue
= *node
;
835 overridesLeft
= false;
839 childValue
= curChild
->GetValue();
843 if ( !childValue
.IsNull() )
845 if ( overridesLeft
&&
846 curChild
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
847 childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
849 wxVariantList
& childList
= childValue
.GetList();
850 DoGenerateComposedValue(s
, argFlags
|wxPG_COMPOSITE_FRAGMENT
,
851 &childList
, childResults
);
855 s
= curChild
->ValueToString(childValue
,
856 argFlags
|wxPG_COMPOSITE_FRAGMENT
);
860 if ( childResults
&& curChild
->GetChildCount() )
861 (*childResults
)[curChild
->GetName()] = s
;
864 if ( (argFlags
& wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
) && !s
.length() )
867 if ( !curChild
->GetChildCount() || skip
)
870 text
+= wxS("[") + s
+ wxS("]");
872 if ( i
< iMaxMinusOne
)
874 if ( text
.length() > PWC_CHILD_SUMMARY_CHAR_LIMIT
&&
875 !(argFlags
& wxPG_EDITABLE_VALUE
) &&
876 !(argFlags
& wxPG_FULL_VALUE
) )
881 if ( !curChild
->GetChildCount() )
887 curChild
= m_children
[i
+1];
891 if ( (unsigned int)i
< m_children
.size() )
893 if ( !text
.EndsWith(wxS("; ")) )
894 text
+= wxS("; ...");
900 wxString
wxPGProperty::ValueToString( wxVariant
& WXUNUSED(value
),
903 wxCHECK_MSG( GetChildCount() > 0,
905 "If user property does not have any children, it must "
906 "override GetValueAsString" );
908 // FIXME: Currently code below only works if value is actually m_value
909 wxASSERT_MSG( argFlags
& wxPG_VALUE_IS_CURRENT
,
910 "Sorry, currently default wxPGProperty::ValueToString() "
911 "implementation only works if value is m_value." );
914 DoGenerateComposedValue(text
, argFlags
);
918 wxString
wxPGProperty::GetValueAsString( int argFlags
) const
920 #if wxPG_COMPATIBILITY_1_4
921 // This is backwards compatibility test
922 // That is, to make sure this function is not overridden
923 // (instead, ValueToString() should be).
924 if ( argFlags
== 0xFFFF )
926 // Do not override! (for backwards compliancy)
927 return g_invalidStringContent
;
931 wxPropertyGrid
* pg
= GetGrid();
933 if ( IsValueUnspecified() )
934 return pg
->GetUnspecifiedValueText(argFlags
);
936 if ( m_commonValue
== -1 )
938 wxVariant
value(GetValue());
939 return ValueToString(value
, argFlags
|wxPG_VALUE_IS_CURRENT
);
943 // Return common value's string representation
944 const wxPGCommonValue
* cv
= pg
->GetCommonValue(m_commonValue
);
946 if ( argFlags
& wxPG_FULL_VALUE
)
948 return cv
->GetLabel();
950 else if ( argFlags
& wxPG_EDITABLE_VALUE
)
952 return cv
->GetEditableText();
956 return cv
->GetLabel();
960 wxString
wxPGProperty::GetValueString( int argFlags
) const
962 return GetValueAsString(argFlags
);
965 bool wxPGProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
967 variant
= (long)number
;
971 // Convert semicolon delimited tokens into child values.
972 bool wxPGProperty::StringToValue( wxVariant
& variant
, const wxString
& text
, int argFlags
) const
974 if ( !GetChildCount() )
977 unsigned int curChild
= 0;
979 unsigned int iMax
= m_children
.size();
981 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
982 !(argFlags
& wxPG_FULL_VALUE
) )
983 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
985 bool changed
= false;
990 // Its best only to add non-empty group items
991 bool addOnlyIfNotEmpty
= false;
992 const wxChar delimeter
= wxS(';');
994 size_t tokenStart
= 0xFFFFFF;
996 wxVariantList temp_list
;
997 wxVariant
list(temp_list
);
999 int propagatedFlags
= argFlags
& (wxPG_REPORT_ERROR
|wxPG_PROGRAMMATIC_VALUE
);
1001 wxLogTrace("propgrid",
1002 wxT(">> %s.StringToValue('%s')"), GetLabel(), text
);
1004 wxString::const_iterator it
= text
.begin();
1007 if ( it
!= text
.end() )
1014 // How many units we iterate string forward at the end of loop?
1015 // We need to keep track of this or risk going to negative
1016 // with it-- operation.
1017 unsigned int strPosIncrement
= 1;
1019 if ( tokenStart
!= 0xFFFFFF )
1022 if ( a
== delimeter
|| a
== 0 )
1024 token
= text
.substr(tokenStart
,pos
-tokenStart
);
1026 size_t len
= token
.length();
1028 if ( !addOnlyIfNotEmpty
|| len
> 0 )
1030 const wxPGProperty
* child
= Item(curChild
);
1031 wxVariant
variant(child
->GetValue());
1032 wxString childName
= child
->GetBaseName();
1034 wxLogTrace("propgrid",
1035 wxT("token = '%s', child = %s"),
1038 // Add only if editable or setting programmatically
1039 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1040 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1044 if ( child
->StringToValue(variant
, token
,
1045 propagatedFlags
|wxPG_COMPOSITE_FRAGMENT
) )
1047 // We really need to set the variant's name
1048 // *after* child->StringToValue() has been
1049 // called, since variant's value may be set by
1050 // assigning another variant into it, which
1051 // then usually causes name to be copied (ie.
1052 // usually cleared) as well. wxBoolProperty
1053 // being case in point with its use of
1054 // wxPGVariant_Bool macro as an optimization.
1055 variant
.SetName(childName
);
1056 list
.Append(variant
);
1063 // Empty, becomes unspecified
1065 variant
.SetName(childName
);
1066 list
.Append(variant
);
1072 if ( curChild
>= iMax
)
1076 tokenStart
= 0xFFFFFF;
1081 // Token is not running
1082 if ( a
!= wxS(' ') )
1085 addOnlyIfNotEmpty
= false;
1087 // Is this a group of tokens?
1088 if ( a
== wxS('[') )
1092 if ( it
!= text
.end() ) ++it
;
1094 size_t startPos
= pos
;
1096 // Group item - find end
1097 while ( it
!= text
.end() && depth
> 0 )
1103 if ( a
== wxS(']') )
1105 else if ( a
== wxS('[') )
1109 token
= text
.substr(startPos
,pos
-startPos
-1);
1111 if ( !token
.length() )
1114 const wxPGProperty
* child
= Item(curChild
);
1116 wxVariant oldChildValue
= child
->GetValue();
1117 wxVariant
variant(oldChildValue
);
1119 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1120 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1122 wxString childName
= child
->GetBaseName();
1124 bool stvRes
= child
->StringToValue( variant
, token
,
1126 if ( stvRes
|| (variant
!= oldChildValue
) )
1128 variant
.SetName(childName
);
1129 list
.Append(variant
);
1140 if ( curChild
>= iMax
)
1143 addOnlyIfNotEmpty
= true;
1145 tokenStart
= 0xFFFFFF;
1151 if ( a
== delimeter
)
1152 strPosIncrement
-= 1;
1160 it
+= strPosIncrement
;
1162 if ( it
!= text
.end() )
1171 pos
+= strPosIncrement
;
1180 bool wxPGProperty::SetValueFromString( const wxString
& text
, int argFlags
)
1182 wxVariant
variant(m_value
);
1183 bool res
= StringToValue(variant
, text
, argFlags
);
1189 bool wxPGProperty::SetValueFromInt( long number
, int argFlags
)
1191 wxVariant
variant(m_value
);
1192 bool res
= IntToValue(variant
, number
, argFlags
);
1198 wxSize
wxPGProperty::OnMeasureImage( int WXUNUSED(item
) ) const
1200 if ( m_valueBitmap
)
1201 return wxSize(m_valueBitmap
->GetWidth(),-1);
1206 int wxPGProperty::GetImageOffset( int imageWidth
) const
1208 int imageOffset
= 0;
1212 // Do not increment offset too much for wide images
1213 if ( imageWidth
<= (wxPG_CUSTOM_IMAGE_WIDTH
+5) )
1214 imageOffset
= imageWidth
+ DEFAULT_IMAGE_OFFSET_INCREMENT
;
1216 imageOffset
= imageWidth
+ 1;
1222 wxPGCellRenderer
* wxPGProperty::GetCellRenderer( int WXUNUSED(column
) ) const
1224 return wxPGGlobalVars
->m_defaultRenderer
;
1227 void wxPGProperty::OnCustomPaint( wxDC
& dc
,
1231 wxBitmap
* bmp
= m_valueBitmap
;
1233 wxCHECK_RET( bmp
&& bmp
->Ok(), wxT("invalid bitmap") );
1235 wxCHECK_RET( rect
.x
>= 0, wxT("unexpected measure call") );
1237 dc
.DrawBitmap(*bmp
,rect
.x
,rect
.y
);
1240 const wxPGEditor
* wxPGProperty::DoGetEditorClass() const
1242 return wxPGEditor_TextCtrl
;
1245 // Default extra property event handling - that is, none at all.
1246 bool wxPGProperty::OnEvent( wxPropertyGrid
*, wxWindow
*, wxEvent
& )
1252 void wxPGProperty::SetValue( wxVariant value
, wxVariant
* pList
, int flags
)
1254 // If auto unspecified values are not wanted (via window or property style),
1255 // then get default value instead of wxNullVariant.
1256 if ( value
.IsNull() && (flags
& wxPG_SETVAL_BY_USER
) &&
1257 !UsesAutoUnspecified() )
1259 value
= GetDefaultValue();
1262 if ( !value
.IsNull() )
1264 wxVariant tempListVariant
;
1267 // List variants are reserved a special purpose
1268 // as intermediate containers for child values
1269 // of properties with children.
1270 if ( value
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1273 // However, situation is different for composed string properties
1274 if ( HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
1276 tempListVariant
= value
;
1277 pList
= &tempListVariant
;
1281 AdaptListToValue(value
, &newValue
);
1283 //wxLogDebug(wxT(">> %s.SetValue() adapted list value to type '%s'"),GetName().c_str(),value.GetType().c_str());
1286 if ( HasFlag( wxPG_PROP_AGGREGATE
) )
1287 flags
|= wxPG_SETVAL_AGGREGATED
;
1289 if ( pList
&& !pList
->IsNull() )
1291 wxASSERT( pList
->GetType() == wxPG_VARIANT_TYPE_LIST
);
1292 wxASSERT( GetChildCount() );
1293 wxASSERT( !IsCategory() );
1295 wxVariantList
& list
= pList
->GetList();
1296 wxVariantList::iterator node
;
1299 //wxLogDebug(wxT(">> %s.SetValue() pList parsing"),GetName().c_str());
1301 // Children in list can be in any order, but we will give hint to
1302 // GetPropertyByNameWH(). This optimizes for full list parsing.
1303 for ( node
= list
.begin(); node
!= list
.end(); ++node
)
1305 wxVariant
& childValue
= *((wxVariant
*)*node
);
1306 wxPGProperty
* child
= GetPropertyByNameWH(childValue
.GetName(), i
);
1309 //wxLogDebug(wxT("%i: child = %s, childValue.GetType()=%s"),i,child->GetBaseName().c_str(),childValue.GetType().c_str());
1310 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1312 if ( child
->HasFlag(wxPG_PROP_AGGREGATE
) && !(flags
& wxPG_SETVAL_AGGREGATED
) )
1314 wxVariant listRefCopy
= childValue
;
1315 child
->SetValue(childValue
, &listRefCopy
, flags
|wxPG_SETVAL_FROM_PARENT
);
1319 wxVariant oldVal
= child
->GetValue();
1320 child
->SetValue(oldVal
, &childValue
, flags
|wxPG_SETVAL_FROM_PARENT
);
1323 else if ( child
->GetValue() != childValue
)
1325 // For aggregate properties, we will trust RefreshChildren()
1326 // to update child values.
1327 if ( !HasFlag(wxPG_PROP_AGGREGATE
) )
1328 child
->SetValue(childValue
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1329 if ( flags
& wxPG_SETVAL_BY_USER
)
1330 child
->SetFlag(wxPG_PROP_MODIFIED
);
1337 if ( !value
.IsNull() )
1343 if ( flags
& wxPG_SETVAL_BY_USER
)
1344 SetFlag(wxPG_PROP_MODIFIED
);
1346 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
1351 if ( m_commonValue
!= -1 )
1353 wxPropertyGrid
* pg
= GetGrid();
1354 if ( !pg
|| m_commonValue
!= pg
->GetUnspecifiedCommonValue() )
1360 // Set children to unspecified, but only if aggregate or
1361 // value is <composed>
1362 if ( AreChildrenComponents() )
1365 for ( i
=0; i
<GetChildCount(); i
++ )
1366 Item(i
)->SetValue(value
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1370 if ( !(flags
& wxPG_SETVAL_FROM_PARENT
) )
1371 UpdateParentValues();
1374 // Update editor control.
1375 if ( flags
& wxPG_SETVAL_REFRESH_EDITOR
)
1377 wxPropertyGrid
* pg
= GetGridIfDisplayed();
1380 wxPGProperty
* selected
= pg
->GetSelectedProperty();
1382 // Only refresh the control if this was selected, or
1383 // this was some parent of selected, or vice versa)
1384 if ( selected
&& (selected
== this ||
1385 selected
->IsSomeParent(this) ||
1386 this->IsSomeParent(selected
)) )
1389 pg
->DrawItemAndValueRelated(this);
1395 void wxPGProperty::SetValueInEvent( wxVariant value
) const
1397 GetGrid()->ValueChangeInEvent(value
);
1400 void wxPGProperty::SetFlagRecursively( FlagType flag
, bool set
)
1402 ChangeFlag(flag
, set
);
1405 for ( i
= 0; i
< GetChildCount(); i
++ )
1406 Item(i
)->SetFlagRecursively(flag
, set
);
1409 void wxPGProperty::RefreshEditor()
1414 wxPropertyGrid
* pg
= GetGrid();
1415 if ( pg
&& pg
->GetSelectedProperty() == this )
1416 pg
->RefreshEditor();
1419 wxVariant
wxPGProperty::GetDefaultValue() const
1421 wxVariant defVal
= GetAttribute(wxPG_ATTR_DEFAULT_VALUE
);
1422 if ( !defVal
.IsNull() )
1425 wxVariant value
= GetValue();
1427 if ( !value
.IsNull() )
1429 wxString
valueType(value
.GetType());
1431 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1432 return wxPGVariant_Zero
;
1433 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1434 return wxPGVariant_EmptyString
;
1435 if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1436 return wxPGVariant_False
;
1437 if ( valueType
== wxPG_VARIANT_TYPE_DOUBLE
)
1438 return wxVariant(0.0);
1439 if ( valueType
== wxPG_VARIANT_TYPE_ARRSTRING
)
1440 return wxVariant(wxArrayString());
1441 if ( valueType
== wxS("wxLongLong") )
1442 return WXVARIANT(wxLongLong(0));
1443 if ( valueType
== wxS("wxULongLong") )
1444 return WXVARIANT(wxULongLong(0));
1445 if ( valueType
== wxS("wxColour") )
1446 return WXVARIANT(*wxBLACK
);
1448 if ( valueType
== wxPG_VARIANT_TYPE_DATETIME
)
1449 return wxVariant(wxDateTime::Now());
1451 if ( valueType
== wxS("wxFont") )
1452 return WXVARIANT(*wxNORMAL_FONT
);
1453 if ( valueType
== wxS("wxPoint") )
1454 return WXVARIANT(wxPoint(0, 0));
1455 if ( valueType
== wxS("wxSize") )
1456 return WXVARIANT(wxSize(0, 0));
1462 void wxPGProperty::EnsureCells( unsigned int column
)
1464 if ( column
>= m_cells
.size() )
1466 // Fill empty slots with default cells
1467 wxPropertyGrid
* pg
= GetGrid();
1468 wxPGCell defaultCell
;
1470 // Work around possible VC6 bug by using intermediate variables
1471 const wxPGCell
& propDefCell
= pg
->GetPropertyDefaultCell();
1472 const wxPGCell
& catDefCell
= pg
->GetCategoryDefaultCell();
1474 if ( !HasFlag(wxPG_PROP_CATEGORY
) )
1475 defaultCell
= propDefCell
;
1477 defaultCell
= catDefCell
;
1479 // TODO: Replace with resize() call
1480 unsigned int cellCountMax
= column
+1;
1482 for ( unsigned int i
=m_cells
.size(); i
<cellCountMax
; i
++ )
1483 m_cells
.push_back(defaultCell
);
1487 void wxPGProperty::SetCell( int column
,
1488 const wxPGCell
& cell
)
1490 EnsureCells(column
);
1492 m_cells
[column
] = cell
;
1495 void wxPGProperty::AdaptiveSetCell( unsigned int firstCol
,
1496 unsigned int lastCol
,
1497 const wxPGCell
& cell
,
1498 const wxPGCell
& srcData
,
1499 wxPGCellData
* unmodCellData
,
1500 FlagType ignoreWithFlags
,
1504 // Sets cell in memory optimizing fashion. That is, if
1505 // current cell data matches unmodCellData, we will
1506 // simply get reference to data from cell. Otherwise,
1507 // cell information from srcData is merged into current.
1510 if ( !(m_flags
& ignoreWithFlags
) && !IsRoot() )
1512 EnsureCells(lastCol
);
1514 for ( unsigned int col
=firstCol
; col
<=lastCol
; col
++ )
1516 if ( m_cells
[col
].GetData() == unmodCellData
)
1518 // Data matches... use cell directly
1519 m_cells
[col
] = cell
;
1523 // Data did not match... merge valid information
1524 m_cells
[col
].MergeFrom(srcData
);
1531 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
1532 Item(i
)->AdaptiveSetCell( firstCol
,
1542 const wxPGCell
& wxPGProperty::GetCell( unsigned int column
) const
1544 if ( m_cells
.size() > column
)
1545 return m_cells
[column
];
1547 wxPropertyGrid
* pg
= GetGrid();
1550 return pg
->GetCategoryDefaultCell();
1552 return pg
->GetPropertyDefaultCell();
1555 wxPGCell
& wxPGProperty::GetOrCreateCell( unsigned int column
)
1557 EnsureCells(column
);
1558 return m_cells
[column
];
1561 void wxPGProperty::SetBackgroundColour( const wxColour
& colour
,
1564 wxPGProperty
* firstProp
= this;
1565 bool recursively
= flags
& wxPG_RECURSE
? true : false;
1568 // If category is tried to set recursively, skip it and only
1569 // affect the children.
1572 while ( firstProp
->IsCategory() )
1574 if ( !firstProp
->GetChildCount() )
1576 firstProp
= firstProp
->Item(0);
1580 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1581 wxPGCellData
* firstCellData
= firstCell
.GetData();
1583 wxPGCell
newCell(firstCell
);
1584 newCell
.SetBgCol(colour
);
1586 srcCell
.SetBgCol(colour
);
1589 GetParentState()->GetColumnCount()-1,
1593 recursively
? wxPG_PROP_CATEGORY
: 0,
1597 void wxPGProperty::SetTextColour( const wxColour
& colour
,
1600 wxPGProperty
* firstProp
= this;
1601 bool recursively
= flags
& wxPG_RECURSE
? true : false;
1604 // If category is tried to set recursively, skip it and only
1605 // affect the children.
1608 while ( firstProp
->IsCategory() )
1610 if ( !firstProp
->GetChildCount() )
1612 firstProp
= firstProp
->Item(0);
1616 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1617 wxPGCellData
* firstCellData
= firstCell
.GetData();
1619 wxPGCell
newCell(firstCell
);
1620 newCell
.SetFgCol(colour
);
1622 srcCell
.SetFgCol(colour
);
1625 GetParentState()->GetColumnCount()-1,
1629 recursively
? wxPG_PROP_CATEGORY
: 0,
1633 wxPGEditorDialogAdapter
* wxPGProperty::GetEditorDialog() const
1638 bool wxPGProperty::DoSetAttribute( const wxString
& WXUNUSED(name
), wxVariant
& WXUNUSED(value
) )
1643 void wxPGProperty::SetAttribute( const wxString
& name
, wxVariant value
)
1645 if ( DoSetAttribute( name
, value
) )
1647 // Support working without grid, when possible
1648 if ( wxPGGlobalVars
->HasExtraStyle( wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
) )
1652 m_attributes
.Set( name
, value
);
1655 void wxPGProperty::SetAttributes( const wxPGAttributeStorage
& attributes
)
1657 wxPGAttributeStorage::const_iterator it
= attributes
.StartIteration();
1660 while ( attributes
.GetNext(it
, variant
) )
1661 SetAttribute( variant
.GetName(), variant
);
1664 wxVariant
wxPGProperty::DoGetAttribute( const wxString
& WXUNUSED(name
) ) const
1670 wxVariant
wxPGProperty::GetAttribute( const wxString
& name
) const
1672 return m_attributes
.FindValue(name
);
1675 wxString
wxPGProperty::GetAttribute( const wxString
& name
, const wxString
& defVal
) const
1677 wxVariant variant
= m_attributes
.FindValue(name
);
1679 if ( !variant
.IsNull() )
1680 return variant
.GetString();
1685 long wxPGProperty::GetAttributeAsLong( const wxString
& name
, long defVal
) const
1687 wxVariant variant
= m_attributes
.FindValue(name
);
1689 if ( variant
.IsNull() )
1692 return variant
.GetLong();
1695 double wxPGProperty::GetAttributeAsDouble( const wxString
& name
, double defVal
) const
1697 wxVariant variant
= m_attributes
.FindValue(name
);
1699 if ( variant
.IsNull() )
1702 return variant
.GetDouble();
1705 wxVariant
wxPGProperty::GetAttributesAsList() const
1707 wxVariantList tempList
;
1708 wxVariant
v( tempList
, wxString::Format(wxS("@%s@attr"),m_name
.c_str()) );
1710 wxPGAttributeStorage::const_iterator it
= m_attributes
.StartIteration();
1713 while ( m_attributes
.GetNext(it
, variant
) )
1719 // Slots of utility flags are NULL
1720 const unsigned int gs_propFlagToStringSize
= 14;
1722 static const wxChar
* const gs_propFlagToString
[gs_propFlagToStringSize
] = {
1739 wxString
wxPGProperty::GetFlagsAsString( FlagType flagsMask
) const
1742 int relevantFlags
= m_flags
& flagsMask
& wxPG_STRING_STORED_FLAGS
;
1746 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1748 if ( relevantFlags
& a
)
1750 const wxChar
* fs
= gs_propFlagToString
[i
];
1762 void wxPGProperty::SetFlagsFromString( const wxString
& str
)
1766 WX_PG_TOKENIZER1_BEGIN(str
, wxS('|'))
1768 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1770 const wxChar
* fs
= gs_propFlagToString
[i
];
1771 if ( fs
&& str
== fs
)
1777 WX_PG_TOKENIZER1_END()
1779 m_flags
= (m_flags
& ~wxPG_STRING_STORED_FLAGS
) | flags
;
1782 wxValidator
* wxPGProperty::DoGetValidator() const
1787 int wxPGProperty::InsertChoice( const wxString
& label
, int index
, int value
)
1789 wxPropertyGrid
* pg
= GetGrid();
1790 int sel
= GetChoiceSelection();
1794 if ( index
== wxNOT_FOUND
)
1795 index
= m_choices
.GetCount();
1800 m_choices
.Insert(label
, index
, value
);
1802 if ( sel
!= newSel
)
1803 SetChoiceSelection(newSel
);
1805 if ( this == pg
->GetSelection() )
1806 GetEditorClass()->InsertItem(pg
->GetEditorControl(),label
,index
);
1812 void wxPGProperty::DeleteChoice( int index
)
1814 wxPropertyGrid
* pg
= GetGrid();
1816 int sel
= GetChoiceSelection();
1819 // Adjust current value
1822 SetValueToUnspecified();
1825 else if ( index
< sel
)
1830 m_choices
.RemoveAt(index
);
1832 if ( sel
!= newSel
)
1833 SetChoiceSelection(newSel
);
1835 if ( this == pg
->GetSelection() )
1836 GetEditorClass()->DeleteItem(pg
->GetEditorControl(), index
);
1839 int wxPGProperty::GetChoiceSelection() const
1841 wxVariant value
= GetValue();
1842 wxString valueType
= value
.GetType();
1843 int index
= wxNOT_FOUND
;
1845 if ( IsValueUnspecified() || !m_choices
.GetCount() )
1848 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1850 index
= value
.GetLong();
1852 else if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1854 index
= m_choices
.Index(value
.GetString());
1856 else if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1858 index
= value
.GetBool()? 1 : 0;
1864 void wxPGProperty::SetChoiceSelection( int newValue
)
1866 // Changes value of a property with choices, but only
1867 // works if the value type is long or string.
1868 wxString valueType
= GetValue().GetType();
1870 wxCHECK_RET( m_choices
.IsOk(), wxT("invalid choiceinfo") );
1872 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1874 SetValue( m_choices
.GetLabel(newValue
) );
1876 else // if ( valueType == wxPG_VARIANT_TYPE_LONG )
1878 SetValue( (long) newValue
);
1882 bool wxPGProperty::SetChoices( wxPGChoices
& choices
)
1884 m_choices
.Assign(choices
);
1887 // This may be needed to trigger some initialization
1888 // (but don't do it if property is somewhat uninitialized)
1889 wxVariant defVal
= GetDefaultValue();
1890 if ( defVal
.IsNull() )
1900 const wxPGEditor
* wxPGProperty::GetEditorClass() const
1902 const wxPGEditor
* editor
;
1904 if ( !m_customEditor
)
1906 editor
= DoGetEditorClass();
1909 editor
= m_customEditor
;
1912 // Maybe override editor if common value specified
1913 if ( GetDisplayedCommonValueCount() )
1915 // TextCtrlAndButton -> ComboBoxAndButton
1916 if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlAndButtonEditor
)) )
1917 editor
= wxPGEditor_ChoiceAndButton
;
1919 // TextCtrl -> ComboBox
1920 else if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlEditor
)) )
1921 editor
= wxPGEditor_ComboBox
;
1927 bool wxPGProperty::HasVisibleChildren() const
1931 for ( i
=0; i
<GetChildCount(); i
++ )
1933 wxPGProperty
* child
= Item(i
);
1935 if ( !child
->HasFlag(wxPG_PROP_HIDDEN
) )
1942 bool wxPGProperty::RecreateEditor()
1944 wxPropertyGrid
* pg
= GetGrid();
1947 wxPGProperty
* selected
= pg
->GetSelection();
1948 if ( this == selected
)
1950 pg
->DoSelectProperty(this, wxPG_SEL_FORCE
);
1957 void wxPGProperty::SetValueImage( wxBitmap
& bmp
)
1959 delete m_valueBitmap
;
1961 if ( &bmp
&& bmp
.Ok() )
1964 wxSize maxSz
= GetGrid()->GetImageSize();
1965 wxSize
imSz(bmp
.GetWidth(),bmp
.GetHeight());
1967 if ( imSz
.y
!= maxSz
.y
)
1969 // Create a memory DC
1970 wxBitmap
* bmpNew
= new wxBitmap(maxSz
.x
,maxSz
.y
,bmp
.GetDepth());
1973 dc
.SelectObject(*bmpNew
);
1976 // FIXME: This is ugly - use image or wait for scaling patch.
1977 double scaleY
= (double)maxSz
.y
/ (double)imSz
.y
;
1979 dc
.SetUserScale(scaleY
, scaleY
);
1981 dc
.DrawBitmap(bmp
, 0, 0);
1983 m_valueBitmap
= bmpNew
;
1987 m_valueBitmap
= new wxBitmap(bmp
);
1990 m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
1994 m_valueBitmap
= NULL
;
1995 m_flags
&= ~(wxPG_PROP_CUSTOMIMAGE
);
2000 wxPGProperty
* wxPGProperty::GetMainParent() const
2002 const wxPGProperty
* curChild
= this;
2003 const wxPGProperty
* curParent
= m_parent
;
2005 while ( curParent
&& !curParent
->IsCategory() )
2007 curChild
= curParent
;
2008 curParent
= curParent
->m_parent
;
2011 return (wxPGProperty
*) curChild
;
2015 const wxPGProperty
* wxPGProperty::GetLastVisibleSubItem() const
2018 // Returns last visible sub-item, recursively.
2019 if ( !IsExpanded() || !GetChildCount() )
2022 return Last()->GetLastVisibleSubItem();
2026 bool wxPGProperty::IsVisible() const
2028 const wxPGProperty
* parent
;
2030 if ( HasFlag(wxPG_PROP_HIDDEN
) )
2033 for ( parent
= GetParent(); parent
!= NULL
; parent
= parent
->GetParent() )
2035 if ( !parent
->IsExpanded() || parent
->HasFlag(wxPG_PROP_HIDDEN
) )
2042 wxPropertyGrid
* wxPGProperty::GetGridIfDisplayed() const
2044 wxPropertyGridPageState
* state
= GetParentState();
2047 wxPropertyGrid
* propGrid
= state
->GetGrid();
2048 if ( state
== propGrid
->GetState() )
2054 int wxPGProperty::GetY2( int lh
) const
2056 const wxPGProperty
* parent
;
2057 const wxPGProperty
* child
= this;
2061 for ( parent
= GetParent(); parent
!= NULL
; parent
= child
->GetParent() )
2063 if ( !parent
->IsExpanded() )
2065 y
+= parent
->GetChildrenHeight(lh
, child
->GetIndexInParent());
2070 y
-= lh
; // need to reduce one level
2076 int wxPGProperty::GetY() const
2078 return GetY2(GetGrid()->GetRowHeight());
2081 // This is used by Insert etc.
2082 void wxPGProperty::DoAddChild( wxPGProperty
* prop
, int index
,
2085 if ( index
< 0 || (size_t)index
>= m_children
.size() )
2087 if ( correct_mode
) prop
->m_arrIndex
= m_children
.size();
2088 m_children
.push_back( prop
);
2092 m_children
.insert( m_children
.begin()+index
, prop
);
2093 if ( correct_mode
) FixIndicesOfChildren( index
);
2096 prop
->m_parent
= this;
2099 void wxPGProperty::DoPreAddChild( int index
, wxPGProperty
* prop
)
2101 wxASSERT_MSG( prop
->GetBaseName().length(),
2102 "Property's children must have unique, non-empty "
2103 "names within their scope" );
2105 prop
->m_arrIndex
= index
;
2106 m_children
.insert( m_children
.begin()+index
,
2109 int custImgHeight
= prop
->OnMeasureImage().y
;
2110 if ( custImgHeight
< 0 /*|| custImgHeight > 1*/ )
2111 prop
->m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
2113 prop
->m_parent
= this;
2116 void wxPGProperty::AddPrivateChild( wxPGProperty
* prop
)
2118 if ( !(m_flags
& wxPG_PROP_PARENTAL_FLAGS
) )
2119 SetParentalType(wxPG_PROP_AGGREGATE
);
2121 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
2122 wxPG_PROP_AGGREGATE
,
2123 "Do not mix up AddPrivateChild() calls with other "
2124 "property adders." );
2126 DoPreAddChild( m_children
.size(), prop
);
2129 #if wxPG_COMPATIBILITY_1_4
2130 void wxPGProperty::AddChild( wxPGProperty
* prop
)
2132 AddPrivateChild(prop
);
2136 wxPGProperty
* wxPGProperty::InsertChild( int index
,
2137 wxPGProperty
* childProperty
)
2140 index
= m_children
.size();
2142 if ( m_parentState
)
2144 m_parentState
->DoInsert(this, index
, childProperty
);
2148 if ( !(m_flags
& wxPG_PROP_PARENTAL_FLAGS
) )
2149 SetParentalType(wxPG_PROP_MISC_PARENT
);
2151 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
) ==
2152 wxPG_PROP_MISC_PARENT
,
2153 "Do not mix up AddPrivateChild() calls with other "
2154 "property adders." );
2156 DoPreAddChild( index
, childProperty
);
2159 return childProperty
;
2162 void wxPGProperty::RemoveChild( wxPGProperty
* p
)
2164 wxArrayPGProperty::iterator it
;
2165 wxArrayPGProperty
& children
= m_children
;
2167 for ( it
=children
.begin(); it
!= children
.end(); it
++ )
2177 void wxPGProperty::AdaptListToValue( wxVariant
& list
, wxVariant
* value
) const
2179 wxASSERT( GetChildCount() );
2180 wxASSERT( !IsCategory() );
2182 *value
= GetValue();
2184 if ( !list
.GetCount() )
2187 wxASSERT( GetChildCount() >= (unsigned int)list
.GetCount() );
2189 bool allChildrenSpecified
;
2191 // Don't fully update aggregate properties unless all children have
2193 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
2194 allChildrenSpecified
= AreAllChildrenSpecified(&list
);
2196 allChildrenSpecified
= true;
2198 wxVariant childValue
= list
[0];
2202 //wxLogDebug(wxT(">> %s.AdaptListToValue()"),GetBaseName().c_str());
2204 for ( i
=0; i
<GetChildCount(); i
++ )
2206 const wxPGProperty
* child
= Item(i
);
2208 if ( childValue
.GetName() == child
->GetBaseName() )
2210 //wxLogDebug(wxT(" %s(n=%i), %s"),childValue.GetName().c_str(),n,childValue.GetType().c_str());
2212 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2214 wxVariant
cv2(child
->GetValue());
2215 child
->AdaptListToValue(childValue
, &cv2
);
2219 if ( allChildrenSpecified
)
2221 *value
= ChildChanged(*value
, i
, childValue
);
2225 if ( n
== (unsigned int)list
.GetCount() )
2227 childValue
= list
[n
];
2233 void wxPGProperty::FixIndicesOfChildren( unsigned int starthere
)
2236 for ( i
=starthere
;i
<GetChildCount();i
++)
2237 Item(i
)->m_arrIndex
= i
;
2241 // Returns (direct) child property with given name (or NULL if not found)
2242 wxPGProperty
* wxPGProperty::GetPropertyByName( const wxString
& name
) const
2246 for ( i
=0; i
<GetChildCount(); i
++ )
2248 wxPGProperty
* p
= Item(i
);
2249 if ( p
->m_name
== name
)
2253 // Does it have point, then?
2254 int pos
= name
.Find(wxS('.'));
2258 wxPGProperty
* p
= GetPropertyByName(name
. substr(0,pos
));
2260 if ( !p
|| !p
->GetChildCount() )
2263 return p
->GetPropertyByName(name
.substr(pos
+1,name
.length()-pos
-1));
2266 wxPGProperty
* wxPGProperty::GetPropertyByNameWH( const wxString
& name
, unsigned int hintIndex
) const
2268 unsigned int i
= hintIndex
;
2270 if ( i
>= GetChildCount() )
2273 unsigned int lastIndex
= i
- 1;
2275 if ( lastIndex
>= GetChildCount() )
2276 lastIndex
= GetChildCount() - 1;
2280 wxPGProperty
* p
= Item(i
);
2281 if ( p
->m_name
== name
)
2284 if ( i
== lastIndex
)
2288 if ( i
== GetChildCount() )
2295 int wxPGProperty::GetChildrenHeight( int lh
, int iMax_
) const
2297 // Returns height of children, recursively, and
2298 // by taking expanded/collapsed status into account.
2300 // iMax is used when finding property y-positions.
2306 iMax_
= GetChildCount();
2308 unsigned int iMax
= iMax_
;
2310 wxASSERT( iMax
<= GetChildCount() );
2312 if ( !IsExpanded() && GetParent() )
2317 wxPGProperty
* pwc
= (wxPGProperty
*) Item(i
);
2319 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2321 if ( !pwc
->IsExpanded() ||
2322 pwc
->GetChildCount() == 0 )
2325 h
+= pwc
->GetChildrenHeight(lh
) + lh
;
2334 wxPGProperty
* wxPGProperty::GetItemAtY( unsigned int y
,
2336 unsigned int* nextItemY
) const
2338 wxASSERT( nextItemY
);
2340 // Linear search at the moment
2342 // nextItemY = y of next visible property, final value will be written back.
2343 wxPGProperty
* result
= NULL
;
2344 wxPGProperty
* current
= NULL
;
2345 unsigned int iy
= *nextItemY
;
2347 unsigned int iMax
= GetChildCount();
2351 wxPGProperty
* pwc
= Item(i
);
2353 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2364 if ( pwc
->IsExpanded() &&
2365 pwc
->GetChildCount() > 0 )
2367 result
= (wxPGProperty
*) pwc
->GetItemAtY( y
, lh
, &iy
);
2379 if ( !result
&& y
< iy
)
2387 wxLogDebug(wxT("%s::GetItemAtY(%i) -> %s"),this->GetLabel().c_str(),y,current->GetLabel().c_str());
2391 wxLogDebug(wxT("%s::GetItemAtY(%i) -> NULL"),this->GetLabel().c_str(),y);
2395 return (wxPGProperty
*) result
;
2398 void wxPGProperty::Empty()
2401 if ( !HasFlag(wxPG_PROP_CHILDREN_ARE_COPIES
) )
2403 for ( i
=0; i
<GetChildCount(); i
++ )
2405 delete m_children
[i
];
2412 wxPGProperty
* wxPGProperty::GetItemAtY( unsigned int y
) const
2414 unsigned int nextItem
;
2415 return GetItemAtY( y
, GetGrid()->GetRowHeight(), &nextItem
);
2418 void wxPGProperty::DeleteChildren()
2420 wxPropertyGridPageState
* state
= m_parentState
;
2422 while ( GetChildCount() )
2424 wxPGProperty
* child
= Item(GetChildCount()-1);
2425 state
->DoDelete(child
, true);
2429 wxVariant
wxPGProperty::ChildChanged( wxVariant
& WXUNUSED(thisValue
),
2430 int WXUNUSED(childIndex
),
2431 wxVariant
& WXUNUSED(childValue
) ) const
2433 return wxNullVariant
;
2436 bool wxPGProperty::AreAllChildrenSpecified( wxVariant
* pendingList
) const
2440 const wxVariantList
* pList
= NULL
;
2441 wxVariantList::const_iterator node
;
2445 pList
= &pendingList
->GetList();
2446 node
= pList
->begin();
2449 for ( i
=0; i
<GetChildCount(); i
++ )
2451 wxPGProperty
* child
= Item(i
);
2452 const wxVariant
* listValue
= NULL
;
2457 const wxString
& childName
= child
->GetBaseName();
2459 for ( ; node
!= pList
->end(); ++node
)
2461 const wxVariant
& item
= *((const wxVariant
*)*node
);
2462 if ( item
.GetName() == childName
)
2472 value
= child
->GetValue();
2474 if ( value
.IsNull() )
2477 // Check recursively
2478 if ( child
->GetChildCount() )
2480 const wxVariant
* childList
= NULL
;
2482 if ( listValue
&& listValue
->GetType() == wxPG_VARIANT_TYPE_LIST
)
2483 childList
= listValue
;
2485 if ( !child
->AreAllChildrenSpecified((wxVariant
*)childList
) )
2493 wxPGProperty
* wxPGProperty::UpdateParentValues()
2495 wxPGProperty
* parent
= m_parent
;
2496 if ( parent
&& parent
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
2497 !parent
->IsCategory() && !parent
->IsRoot() )
2500 parent
->DoGenerateComposedValue(s
);
2501 parent
->m_value
= s
;
2502 return parent
->UpdateParentValues();
2507 bool wxPGProperty::IsTextEditable() const
2509 if ( HasFlag(wxPG_PROP_READONLY
) )
2512 if ( HasFlag(wxPG_PROP_NOEDITOR
) &&
2514 wxString(GetEditorClass()->GetClassInfo()->GetClassName()).EndsWith(wxS("Button")))
2521 // Call after fixed sub-properties added/removed after creation.
2522 // if oldSelInd >= 0 and < new max items, then selection is
2523 // moved to it. Note: oldSelInd -2 indicates that this property
2524 // should be selected.
2525 void wxPGProperty::SubPropsChanged( int oldSelInd
)
2527 wxPropertyGridPageState
* state
= GetParentState();
2528 wxPropertyGrid
* grid
= state
->GetGrid();
2531 // Re-repare children (recursively)
2532 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
2534 wxPGProperty
* child
= Item(i
);
2535 child
->InitAfterAdded(state
, grid
);
2538 wxPGProperty
* sel
= NULL
;
2539 if ( oldSelInd
>= (int)m_children
.size() )
2540 oldSelInd
= (int)m_children
.size() - 1;
2542 if ( oldSelInd
>= 0 )
2543 sel
= m_children
[oldSelInd
];
2544 else if ( oldSelInd
== -2 )
2548 state
->DoSelectProperty(sel
);
2550 if ( state
== grid
->GetState() )
2552 grid
->GetPanel()->Refresh();
2556 // -----------------------------------------------------------------------
2558 // -----------------------------------------------------------------------
2560 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPGRootProperty
,none
,TextCtrl
)
2561 IMPLEMENT_DYNAMIC_CLASS(wxPGRootProperty
, wxPGProperty
)
2564 wxPGRootProperty::wxPGRootProperty( const wxString
& name
)
2574 wxPGRootProperty::~wxPGRootProperty()
2579 // -----------------------------------------------------------------------
2580 // wxPropertyCategory
2581 // -----------------------------------------------------------------------
2583 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPropertyCategory
,none
,TextCtrl
)
2584 IMPLEMENT_DYNAMIC_CLASS(wxPropertyCategory
, wxPGProperty
)
2586 void wxPropertyCategory::Init()
2588 // don't set colour - prepareadditem method should do this
2589 SetParentalType(wxPG_PROP_CATEGORY
);
2590 m_capFgColIndex
= 1;
2594 wxPropertyCategory::wxPropertyCategory()
2601 wxPropertyCategory::wxPropertyCategory( const wxString
&label
, const wxString
& name
)
2602 : wxPGProperty(label
,name
)
2608 wxPropertyCategory::~wxPropertyCategory()
2613 wxString
wxPropertyCategory::ValueToString( wxVariant
& WXUNUSED(value
),
2614 int WXUNUSED(argFlags
) ) const
2616 return wxEmptyString
;
2619 int wxPropertyCategory::GetTextExtent( const wxWindow
* wnd
, const wxFont
& font
) const
2621 if ( m_textExtent
> 0 )
2622 return m_textExtent
;
2624 ((wxWindow
*)wnd
)->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2628 void wxPropertyCategory::CalculateTextExtent( wxWindow
* wnd
, const wxFont
& font
)
2631 wnd
->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2635 // -----------------------------------------------------------------------
2637 // -----------------------------------------------------------------------
2639 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, int value
)
2643 wxPGChoiceEntry
entry(label
, value
);
2644 return m_data
->Insert( -1, entry
);
2647 // -----------------------------------------------------------------------
2649 wxPGChoiceEntry
& wxPGChoices::Add( const wxString
& label
, const wxBitmap
& bitmap
, int value
)
2653 wxPGChoiceEntry
entry(label
, value
);
2654 entry
.SetBitmap(bitmap
);
2655 return m_data
->Insert( -1, entry
);
2658 // -----------------------------------------------------------------------
2660 wxPGChoiceEntry
& wxPGChoices::Insert( const wxPGChoiceEntry
& entry
, int index
)
2664 return m_data
->Insert( index
, entry
);
2667 // -----------------------------------------------------------------------
2669 wxPGChoiceEntry
& wxPGChoices::Insert( const wxString
& label
, int index
, int value
)
2673 wxPGChoiceEntry
entry(label
, value
);
2674 return m_data
->Insert( index
, entry
);
2677 // -----------------------------------------------------------------------
2679 wxPGChoiceEntry
& wxPGChoices::AddAsSorted( const wxString
& label
, int value
)
2685 while ( index
< GetCount() )
2687 int cmpRes
= GetLabel(index
).Cmp(label
);
2693 wxPGChoiceEntry
entry(label
, value
);
2694 return m_data
->Insert( index
, entry
);
2697 // -----------------------------------------------------------------------
2699 void wxPGChoices::Add( const wxChar
* const* labels
, const ValArrItem
* values
)
2703 unsigned int itemcount
= 0;
2704 const wxChar
* const* p
= &labels
[0];
2705 while ( *p
) { p
++; itemcount
++; }
2708 for ( i
= 0; i
< itemcount
; i
++ )
2713 wxPGChoiceEntry
entry(labels
[i
], value
);
2714 m_data
->Insert( i
, entry
);
2718 // -----------------------------------------------------------------------
2720 void wxPGChoices::Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
)
2725 unsigned int itemcount
= arr
.size();
2727 for ( i
= 0; i
< itemcount
; i
++ )
2730 if ( &arrint
&& arrint
.size() )
2732 wxPGChoiceEntry
entry(arr
[i
], value
);
2733 m_data
->Insert( i
, entry
);
2737 // -----------------------------------------------------------------------
2739 void wxPGChoices::RemoveAt(size_t nIndex
, size_t count
)
2743 wxASSERT( m_data
->GetRefCount() != -1 );
2744 m_data
->m_items
.erase(m_data
->m_items
.begin()+nIndex
,
2745 m_data
->m_items
.begin()+nIndex
+count
);
2748 // -----------------------------------------------------------------------
2750 void wxPGChoices::Clear()
2752 if ( m_data
!= wxPGChoicesEmptyData
)
2759 // -----------------------------------------------------------------------
2761 int wxPGChoices::Index( const wxString
& str
) const
2766 for ( i
=0; i
< m_data
->GetCount(); i
++ )
2768 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
2769 if ( entry
.HasText() && entry
.GetText() == str
)
2776 // -----------------------------------------------------------------------
2778 int wxPGChoices::Index( int val
) const
2783 for ( i
=0; i
< m_data
->GetCount(); i
++ )
2785 const wxPGChoiceEntry
& entry
= m_data
->Item(i
);
2786 if ( entry
.GetValue() == val
)
2793 // -----------------------------------------------------------------------
2795 wxArrayString
wxPGChoices::GetLabels() const
2800 if ( this && IsOk() )
2801 for ( i
=0; i
<GetCount(); i
++ )
2802 arr
.push_back(GetLabel(i
));
2807 // -----------------------------------------------------------------------
2809 wxArrayInt
wxPGChoices::GetValuesForStrings( const wxArrayString
& strings
) const
2816 for ( i
=0; i
< strings
.size(); i
++ )
2818 int index
= Index(strings
[i
]);
2820 arr
.Add(GetValue(index
));
2822 arr
.Add(wxPG_INVALID_VALUE
);
2829 // -----------------------------------------------------------------------
2831 wxArrayInt
wxPGChoices::GetIndicesForStrings( const wxArrayString
& strings
,
2832 wxArrayString
* unmatched
) const
2839 for ( i
=0; i
< strings
.size(); i
++ )
2841 const wxString
& str
= strings
[i
];
2842 int index
= Index(str
);
2845 else if ( unmatched
)
2846 unmatched
->Add(str
);
2853 // -----------------------------------------------------------------------
2855 void wxPGChoices::AllocExclusive()
2859 if ( m_data
->GetRefCount() != 1 )
2861 wxPGChoicesData
* data
= new wxPGChoicesData();
2862 data
->CopyDataFrom(m_data
);
2868 // -----------------------------------------------------------------------
2870 void wxPGChoices::AssignData( wxPGChoicesData
* data
)
2874 if ( data
!= wxPGChoicesEmptyData
)
2881 // -----------------------------------------------------------------------
2883 void wxPGChoices::Init()
2885 m_data
= wxPGChoicesEmptyData
;
2888 // -----------------------------------------------------------------------
2890 void wxPGChoices::Free()
2892 if ( m_data
!= wxPGChoicesEmptyData
)
2895 m_data
= wxPGChoicesEmptyData
;
2899 // -----------------------------------------------------------------------
2900 // wxPGAttributeStorage
2901 // -----------------------------------------------------------------------
2903 wxPGAttributeStorage::wxPGAttributeStorage()
2907 wxPGAttributeStorage::~wxPGAttributeStorage()
2909 wxPGHashMapS2P::iterator it
;
2911 for ( it
= m_map
.begin(); it
!= m_map
.end(); ++it
)
2913 wxVariantData
* data
= (wxVariantData
*) it
->second
;
2918 void wxPGAttributeStorage::Set( const wxString
& name
, const wxVariant
& value
)
2920 wxVariantData
* data
= value
.GetData();
2923 wxPGHashMapS2P::iterator it
= m_map
.find(name
);
2924 if ( it
!= m_map
.end() )
2926 ((wxVariantData
*)it
->second
)->DecRef();
2930 // If Null variant, just remove from set
2944 #endif // wxUSE_PROPGRID