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 xOffset
+= wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
100 rect
.x
+xOffset
+wxPG_XBEFORETEXT
,
101 rect
.y
+((rect
.height
-dc
.GetCharHeight())/2) );
104 void wxPGCellRenderer::DrawEditorValue( wxDC
& dc
, const wxRect
& rect
,
105 int xOffset
, const wxString
& text
,
106 wxPGProperty
* property
,
107 const wxPGEditor
* editor
) const
110 xOffset
+= wxCC_CUSTOM_IMAGE_MARGIN1
+ wxCC_CUSTOM_IMAGE_MARGIN2
;
112 int yOffset
= ((rect
.height
-dc
.GetCharHeight())/2);
119 rect2
.height
-= yOffset
;
120 editor
->DrawValue( dc
, rect2
, property
, text
);
125 rect
.x
+xOffset
+wxPG_XBEFORETEXT
,
130 void wxPGCellRenderer::DrawCaptionSelectionRect( wxDC
& dc
, int x
, int y
, int w
, int h
) const
132 wxRect
focusRect(x
,y
+((h
-dc
.GetCharHeight())/2),w
,h
);
133 wxPGDrawFocusRect(dc
,focusRect
);
136 int wxPGCellRenderer::PreDrawCell( wxDC
& dc
, const wxRect
& rect
, const wxPGCell
& cell
, int flags
) const
140 // If possible, use cell colours
141 if ( !(flags
& DontUseCellBgCol
) )
143 dc
.SetPen(cell
.GetBgCol());
144 dc
.SetBrush(cell
.GetBgCol());
147 if ( !(flags
& DontUseCellFgCol
) )
149 dc
.SetTextForeground(cell
.GetFgCol());
153 dc
.DrawRectangle(rect
);
155 const wxBitmap
& bmp
= cell
.GetBitmap();
157 // Do not draw oversized bitmap outside choice popup
158 ((flags
& ChoicePopup
) || bmp
.GetHeight() < rect
.height
)
162 rect
.x
+ wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
163 rect
.y
+ wxPG_CUSTOM_IMAGE_SPACINGY
,
165 imageOffset
= bmp
.GetWidth();
171 // -----------------------------------------------------------------------
172 // wxPGDefaultRenderer
173 // -----------------------------------------------------------------------
175 void wxPGDefaultRenderer::Render( wxDC
& dc
, const wxRect
& rect
,
176 const wxPropertyGrid
* propertyGrid
, wxPGProperty
* property
,
177 int column
, int item
, int flags
) const
179 bool isUnspecified
= property
->IsValueUnspecified();
181 if ( column
== 1 && item
== -1 )
183 int cmnVal
= property
->GetCommonValue();
187 if ( !isUnspecified
)
188 DrawText( dc
, rect
, 0, propertyGrid
->GetCommonValueLabel(cmnVal
) );
193 const wxPGEditor
* editor
= NULL
;
194 const wxPGCell
* cell
= NULL
;
198 int preDrawFlags
= flags
;
200 property
->GetDisplayInfo(column
, item
, flags
, &text
, &cell
);
202 imageOffset
= PreDrawCell( dc
, rect
, *cell
, preDrawFlags
);
206 if ( !isUnspecified
)
208 editor
= property
->GetColumnEditor(column
);
210 // Regular property value
212 wxSize imageSize
= propertyGrid
->GetImageSize(property
, item
);
214 wxPGPaintData paintdata
;
215 paintdata
.m_parent
= propertyGrid
;
216 paintdata
.m_choiceItem
= item
;
218 if ( imageSize
.x
> 0 )
220 wxRect
imageRect(rect
.x
+ wxPG_CONTROL_MARGIN
+ wxCC_CUSTOM_IMAGE_MARGIN1
,
221 rect
.y
+wxPG_CUSTOM_IMAGE_SPACINGY
,
222 wxPG_CUSTOM_IMAGE_WIDTH
,
223 rect
.height
-(wxPG_CUSTOM_IMAGE_SPACINGY
*2));
225 dc
.SetPen( wxPen(propertyGrid
->GetCellTextColour(), 1, wxSOLID
) );
227 paintdata
.m_drawnWidth
= imageSize
.x
;
228 paintdata
.m_drawnHeight
= imageSize
.y
;
230 property
->OnCustomPaint( dc
, imageRect
, paintdata
);
232 imageOffset
= paintdata
.m_drawnWidth
;
235 text
= property
->GetValueAsString();
238 if ( propertyGrid
->GetColumnCount() <= 2 )
240 wxString unitsString
= property
->GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
241 if ( unitsString
.length() )
242 text
= wxString::Format(wxS("%s %s"), text
.c_str(), unitsString
.c_str() );
246 if ( text
.length() == 0 )
248 // Try to show inline help if no text
249 wxVariant vInlineHelp
= property
->GetAttribute(wxPGGlobalVars
->m_strInlineHelp
);
250 if ( !vInlineHelp
.IsNull() )
252 text
= vInlineHelp
.GetString();
253 dc
.SetTextForeground(propertyGrid
->GetCellDisabledTextColour());
258 DrawEditorValue( dc
, rect
, imageOffset
, text
, property
, editor
);
260 // active caption gets nice dotted rectangle
261 if ( property
->IsCategory() /*&& column == 0*/ )
263 if ( flags
& Selected
)
265 if ( imageOffset
> 0 )
266 imageOffset
+= wxCC_CUSTOM_IMAGE_MARGIN2
+ 4;
268 DrawCaptionSelectionRect( dc
,
269 rect
.x
+wxPG_XBEFORETEXT
-wxPG_CAPRECTXMARGIN
+imageOffset
,
270 rect
.y
-wxPG_CAPRECTYMARGIN
+1,
271 ((wxPropertyCategory
*)property
)->GetTextExtent(propertyGrid
,
272 propertyGrid
->GetCaptionFont())
273 +(wxPG_CAPRECTXMARGIN
*2),
274 propertyGrid
->GetFontHeight()+(wxPG_CAPRECTYMARGIN
*2) );
279 wxSize
wxPGDefaultRenderer::GetImageSize( const wxPGProperty
* property
,
283 if ( property
&& column
== 1 )
287 wxBitmap
* bmp
= property
->GetValueImage();
289 if ( bmp
&& bmp
->Ok() )
290 return wxSize(bmp
->GetWidth(),bmp
->GetHeight());
296 // -----------------------------------------------------------------------
298 // -----------------------------------------------------------------------
300 wxPGCellData::wxPGCellData()
303 m_hasValidText
= false;
306 // -----------------------------------------------------------------------
308 // -----------------------------------------------------------------------
315 wxPGCell::wxPGCell( const wxString
& text
,
316 const wxBitmap
& bitmap
,
317 const wxColour
& fgCol
,
318 const wxColour
& bgCol
)
321 wxPGCellData
* data
= new wxPGCellData();
324 data
->m_bitmap
= bitmap
;
325 data
->m_fgCol
= fgCol
;
326 data
->m_bgCol
= bgCol
;
327 data
->m_hasValidText
= true;
330 wxObjectRefData
*wxPGCell::CloneRefData( const wxObjectRefData
*data
) const
332 wxPGCellData
* c
= new wxPGCellData();
333 const wxPGCellData
* o
= (const wxPGCellData
*) data
;
334 c
->m_text
= o
->m_text
;
335 c
->m_bitmap
= o
->m_bitmap
;
336 c
->m_fgCol
= o
->m_fgCol
;
337 c
->m_bgCol
= o
->m_bgCol
;
338 c
->m_hasValidText
= o
->m_hasValidText
;
342 void wxPGCell::SetText( const wxString
& text
)
346 GetData()->SetText(text
);
349 void wxPGCell::SetBitmap( const wxBitmap
& bitmap
)
353 GetData()->SetBitmap(bitmap
);
356 void wxPGCell::SetFgCol( const wxColour
& col
)
360 GetData()->SetFgCol(col
);
363 void wxPGCell::SetBgCol( const wxColour
& col
)
367 GetData()->SetBgCol(col
);
370 void wxPGCell::MergeFrom( const wxPGCell
& srcCell
)
374 wxPGCellData
* data
= GetData();
376 if ( srcCell
.HasText() )
377 data
->SetText(srcCell
.GetText());
379 if ( srcCell
.GetFgCol().IsOk() )
380 data
->SetFgCol(srcCell
.GetFgCol());
382 if ( srcCell
.GetBgCol().IsOk() )
383 data
->SetBgCol(srcCell
.GetBgCol());
385 if ( srcCell
.GetBitmap().IsOk() )
386 data
->SetBitmap(srcCell
.GetBitmap());
389 // -----------------------------------------------------------------------
391 // -----------------------------------------------------------------------
393 IMPLEMENT_ABSTRACT_CLASS(wxPGProperty
, wxObject
)
395 wxString
* wxPGProperty::sm_wxPG_LABEL
= NULL
;
397 void wxPGProperty::Init()
403 m_parentState
= (wxPropertyGridPageState
*) NULL
;
406 m_clientObject
= NULL
;
408 m_customEditor
= (wxPGEditor
*) NULL
;
410 m_validator
= (wxValidator
*) NULL
;
412 m_valueBitmap
= (wxBitmap
*) NULL
;
414 m_maxLen
= 0; // infinite maximum length
416 m_flags
= wxPG_PROP_PROPERTY
;
424 void wxPGProperty::Init( const wxString
& label
, const wxString
& name
)
426 // We really need to check if &label and &name are NULL pointers
427 // (this can if we are called before property grid has been initalized)
429 if ( (&label
) != NULL
&& label
!= wxPG_LABEL
)
432 if ( (&name
) != NULL
&& name
!= wxPG_LABEL
)
435 DoSetName( m_label
);
440 void wxPGProperty::InitAfterAdded( wxPropertyGridPageState
* pageState
,
441 wxPropertyGrid
* propgrid
)
444 // Called after property has been added to grid or page
445 // (so propgrid can be NULL, too).
447 wxPGProperty
* parent
= m_parent
;
448 bool parentIsRoot
= parent
->IsKindOf(CLASSINFO(wxPGRootProperty
));
450 m_parentState
= pageState
;
452 #if wxPG_COMPATIBILITY_1_4
453 // Make sure deprecated virtual functions are not implemented
454 wxString s
= GetValueAsString( 0xFFFF );
455 wxASSERT_MSG( s
== g_invalidStringContent
,
456 "Implement ValueToString() instead of GetValueAsString()" );
459 if ( !parentIsRoot
&& !parent
->IsCategory() )
461 m_cells
= parent
->m_cells
;
464 // If in hideable adding mode, or if assigned parent is hideable, then
465 // make this one hideable.
467 ( !parentIsRoot
&& parent
->HasFlag(wxPG_PROP_HIDDEN
) ) ||
468 ( propgrid
&& (propgrid
->HasInternalFlag(wxPG_FL_ADDING_HIDEABLES
)) )
470 SetFlag( wxPG_PROP_HIDDEN
);
472 // Set custom image flag.
473 int custImgHeight
= OnMeasureImage().y
;
474 if ( custImgHeight
< 0 )
476 SetFlag(wxPG_PROP_CUSTOMIMAGE
);
479 if ( propgrid
&& (propgrid
->HasFlag(wxPG_LIMITED_EDITING
)) )
480 SetFlag(wxPG_PROP_NOEDITOR
);
482 // Make sure parent has some parental flags
483 if ( !parent
->HasFlag(wxPG_PROP_PARENTAL_FLAGS
) )
484 parent
->SetParentalType(wxPG_PROP_MISC_PARENT
);
488 // This is not a category.
492 unsigned char depth
= 1;
495 depth
= parent
->m_depth
;
496 if ( !parent
->IsCategory() )
500 unsigned char greyDepth
= depth
;
504 wxPropertyCategory
* pc
;
506 if ( parent
->IsCategory() )
507 pc
= (wxPropertyCategory
* ) parent
;
509 // This conditional compile is necessary to
510 // bypass some compiler bug.
511 pc
= pageState
->GetPropertyCategory(parent
);
514 greyDepth
= pc
->GetDepth();
516 greyDepth
= parent
->m_depthBgCol
;
519 m_depthBgCol
= greyDepth
;
523 // This is a category.
526 unsigned char depth
= 1;
529 depth
= parent
->m_depth
+ 1;
532 m_depthBgCol
= depth
;
536 // Has initial children
537 if ( GetChildCount() )
539 // Check parental flags
540 wxASSERT_MSG( (m_flags
& wxPG_PROP_PARENTAL_FLAGS
),
541 "Call SetFlag(wxPG_PROP_MISC_PARENT) or"
542 "SetFlag(wxPG_PROP_AGGREGATE) before calling"
543 "wxPGProperty::AddChild()." );
545 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
547 // Properties with private children are not expanded by default.
550 else if ( propgrid
&& propgrid
->HasFlag(wxPG_HIDE_MARGIN
) )
552 // ...unless it cannot be expanded by user and therefore must
553 // remain visible at all times
558 // Prepare children recursively
559 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
561 wxPGProperty
* child
= Item(i
);
562 child
->InitAfterAdded(pageState
, pageState
->GetGrid());
565 if ( propgrid
&& (propgrid
->GetExtraStyle() & wxPG_EX_AUTO_UNSPECIFIED_VALUES
) )
566 SetFlagRecursively(wxPG_PROP_AUTO_UNSPECIFIED
, true);
570 wxPGProperty::wxPGProperty()
577 wxPGProperty::wxPGProperty( const wxString
& label
, const wxString
& name
)
584 wxPGProperty::~wxPGProperty()
586 delete m_clientObject
;
588 Empty(); // this deletes items
590 delete m_valueBitmap
;
595 // This makes it easier for us to detect dangling pointers
600 bool wxPGProperty::IsSomeParent( wxPGProperty
* candidate
) const
602 wxPGProperty
* parent
= m_parent
;
605 if ( parent
== candidate
)
607 parent
= parent
->m_parent
;
613 wxString
wxPGProperty::GetName() const
615 wxPGProperty
* parent
= GetParent();
617 if ( !m_name
.length() || !parent
|| parent
->IsCategory() || parent
->IsRoot() )
620 return m_parent
->GetName() + wxS(".") + m_name
;
623 wxPropertyGrid
* wxPGProperty::GetGrid() const
625 if ( !m_parentState
)
627 return m_parentState
->GetGrid();
630 int wxPGProperty::Index( const wxPGProperty
* p
) const
632 for ( unsigned int i
= 0; i
<m_children
.size(); i
++ )
634 if ( p
== m_children
[i
] )
640 void wxPGProperty::UpdateControl( wxWindow
* primary
)
643 GetEditorClass()->UpdateControl(this, primary
);
646 bool wxPGProperty::ValidateValue( wxVariant
& WXUNUSED(value
), wxPGValidationInfo
& WXUNUSED(validationInfo
) ) const
651 void wxPGProperty::OnSetValue()
655 void wxPGProperty::RefreshChildren ()
659 void wxPGProperty::GetDisplayInfo( unsigned int column
,
663 const wxPGCell
** pCell
)
665 const wxPGCell
* cell
= NULL
;
667 if ( !(flags
& wxPGCellRenderer::ChoicePopup
) )
669 // Not painting listi of choice popups, so get text from property
670 cell
= &GetCell(column
);
671 if ( cell
->HasText() )
673 *pString
= cell
->GetText();
678 *pString
= GetLabel();
679 else if ( column
== 1 )
680 *pString
= GetDisplayedString();
681 else if ( column
== 2 )
682 *pString
= GetAttribute(wxPGGlobalVars
->m_strUnits
, wxEmptyString
);
687 wxASSERT( column
== 1 );
689 if ( choiceIndex
!= wxNOT_FOUND
)
691 const wxPGChoiceEntry
& entry
= m_choices
[choiceIndex
];
692 if ( entry
.GetBitmap().IsOk() ||
693 entry
.GetFgCol().IsOk() ||
694 entry
.GetBgCol().IsOk() )
696 *pString
= m_choices
.GetLabel(choiceIndex
);
701 cell
= &GetCell(column
);
703 wxASSERT_MSG( cell
->GetData(),
704 wxString::Format("Invalid cell for property %s",
705 GetName().c_str()) );
711 wxString wxPGProperty::GetColumnText( unsigned int col, int choiceIndex ) const
714 if ( col != 1 || choiceIndex == wxNOT_FOUND )
716 const wxPGCell& cell = GetCell(col);
717 if ( cell->HasText() )
719 return cell->GetText();
726 return GetDisplayedString();
728 return GetAttribute(wxPGGlobalVars->m_strUnits, wxEmptyString);
734 return m_choices.GetLabel(choiceIndex);
737 return wxEmptyString;
741 void wxPGProperty::DoGenerateComposedValue( wxString
& text
,
743 const wxVariantList
* valueOverrides
,
744 wxPGHashMapS2S
* childResults
) const
747 int iMax
= m_children
.size();
753 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
754 !(argFlags
& wxPG_FULL_VALUE
) )
755 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
757 int iMaxMinusOne
= iMax
-1;
759 if ( !IsTextEditable() )
760 argFlags
|= wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
;
762 wxPGProperty
* curChild
= m_children
[0];
764 bool overridesLeft
= false;
765 wxVariant overrideValue
;
766 wxVariantList::const_iterator node
;
768 if ( valueOverrides
)
770 node
= valueOverrides
->begin();
771 if ( node
!= valueOverrides
->end() )
773 overrideValue
= *node
;
774 overridesLeft
= true;
778 for ( i
= 0; i
< iMax
; i
++ )
780 wxVariant childValue
;
782 wxString childLabel
= curChild
->GetLabel();
784 // Check for value override
785 if ( overridesLeft
&& overrideValue
.GetName() == childLabel
)
787 if ( !overrideValue
.IsNull() )
788 childValue
= overrideValue
;
790 childValue
= curChild
->GetValue();
792 if ( node
!= valueOverrides
->end() )
793 overrideValue
= *node
;
795 overridesLeft
= false;
799 childValue
= curChild
->GetValue();
803 if ( !childValue
.IsNull() )
805 if ( overridesLeft
&&
806 curChild
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
807 childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
809 wxVariantList
& childList
= childValue
.GetList();
810 DoGenerateComposedValue(s
, argFlags
|wxPG_COMPOSITE_FRAGMENT
,
811 &childList
, childResults
);
815 s
= curChild
->ValueToString(childValue
,
816 argFlags
|wxPG_COMPOSITE_FRAGMENT
);
820 if ( childResults
&& curChild
->GetChildCount() )
821 (*childResults
)[curChild
->GetName()] = s
;
824 if ( (argFlags
& wxPG_UNEDITABLE_COMPOSITE_FRAGMENT
) && !s
.length() )
827 if ( !curChild
->GetChildCount() || skip
)
830 text
+= wxS("[") + s
+ wxS("]");
832 if ( i
< iMaxMinusOne
)
834 if ( text
.length() > PWC_CHILD_SUMMARY_CHAR_LIMIT
&&
835 !(argFlags
& wxPG_EDITABLE_VALUE
) &&
836 !(argFlags
& wxPG_FULL_VALUE
) )
841 if ( !curChild
->GetChildCount() )
847 curChild
= m_children
[i
+1];
851 if ( (unsigned int)i
< m_children
.size() )
853 if ( !text
.EndsWith(wxS("; ")) )
854 text
+= wxS("; ...");
860 wxString
wxPGProperty::ValueToString( wxVariant
& WXUNUSED(value
),
863 wxCHECK_MSG( GetChildCount() > 0,
865 "If user property does not have any children, it must "
866 "override GetValueAsString" );
868 // FIXME: Currently code below only works if value is actually m_value
869 wxASSERT_MSG( argFlags
& wxPG_VALUE_IS_CURRENT
,
870 "Sorry, currently default wxPGProperty::ValueToString() "
871 "implementation only works if value is m_value." );
874 DoGenerateComposedValue(text
, argFlags
);
878 wxString
wxPGProperty::GetValueAsString( int argFlags
) const
880 #if wxPG_COMPATIBILITY_1_4
881 // This is backwards compatibility test
882 // That is, to make sure this function is not overridden
883 // (instead, ValueToString() should be).
884 if ( argFlags
== 0xFFFF )
886 // Do not override! (for backwards compliancy)
887 return g_invalidStringContent
;
891 if ( IsValueUnspecified() )
892 return wxEmptyString
;
894 if ( m_commonValue
== -1 )
896 wxVariant
value(GetValue());
897 return ValueToString(value
, argFlags
|wxPG_VALUE_IS_CURRENT
);
901 // Return common value's string representation
902 wxPropertyGrid
* pg
= GetGrid();
903 const wxPGCommonValue
* cv
= pg
->GetCommonValue(m_commonValue
);
905 if ( argFlags
& wxPG_FULL_VALUE
)
907 return cv
->GetLabel();
909 else if ( argFlags
& wxPG_EDITABLE_VALUE
)
911 return cv
->GetEditableText();
915 return cv
->GetLabel();
919 wxString
wxPGProperty::GetValueString( int argFlags
) const
921 return GetValueAsString(argFlags
);
924 bool wxPGProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
926 variant
= (long)number
;
930 // Convert semicolon delimited tokens into child values.
931 bool wxPGProperty::StringToValue( wxVariant
& variant
, const wxString
& text
, int argFlags
) const
933 if ( !GetChildCount() )
936 unsigned int curChild
= 0;
938 unsigned int iMax
= m_children
.size();
940 if ( iMax
> PWC_CHILD_SUMMARY_LIMIT
&&
941 !(argFlags
& wxPG_FULL_VALUE
) )
942 iMax
= PWC_CHILD_SUMMARY_LIMIT
;
944 bool changed
= false;
949 // Its best only to add non-empty group items
950 bool addOnlyIfNotEmpty
= false;
951 const wxChar delimeter
= wxS(';');
953 size_t tokenStart
= 0xFFFFFF;
955 wxVariantList temp_list
;
956 wxVariant
list(temp_list
);
958 int propagatedFlags
= argFlags
& (wxPG_REPORT_ERROR
|wxPG_PROGRAMMATIC_VALUE
);
961 bool debug_print
= false;
966 wxLogDebug(wxT(">> %s.StringToValue('%s')"),GetLabel().c_str(),text
.c_str());
969 wxString::const_iterator it
= text
.begin();
972 if ( it
!= text
.end() )
979 if ( tokenStart
!= 0xFFFFFF )
982 if ( a
== delimeter
|| a
== 0 )
984 token
= text
.substr(tokenStart
,pos
-tokenStart
);
986 size_t len
= token
.length();
988 if ( !addOnlyIfNotEmpty
|| len
> 0 )
990 const wxPGProperty
* child
= Item(curChild
);
991 wxVariant
variant(child
->GetValue());
992 variant
.SetName(child
->GetBaseName());
996 wxLogDebug(wxT("token = '%s', child = %s"),token
.c_str(),child
->GetLabel().c_str());
999 // Add only if editable or setting programmatically
1000 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1001 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1005 if ( child
->StringToValue(variant
, token
, propagatedFlags
|wxPG_COMPOSITE_FRAGMENT
) )
1007 list
.Append(variant
);
1014 // Empty, becomes unspecified
1016 list
.Append(variant
);
1022 if ( curChild
>= iMax
)
1026 tokenStart
= 0xFFFFFF;
1031 // Token is not running
1032 if ( a
!= wxS(' ') )
1035 addOnlyIfNotEmpty
= false;
1037 // Is this a group of tokens?
1038 if ( a
== wxS('[') )
1042 if ( it
!= text
.end() ) ++it
;
1044 size_t startPos
= pos
;
1046 // Group item - find end
1047 while ( it
!= text
.end() && depth
> 0 )
1053 if ( a
== wxS(']') )
1055 else if ( a
== wxS('[') )
1059 token
= text
.substr(startPos
,pos
-startPos
-1);
1061 if ( !token
.length() )
1064 const wxPGProperty
* child
= Item(curChild
);
1066 wxVariant oldChildValue
= child
->GetValue();
1067 wxVariant
variant(oldChildValue
);
1069 if ( (argFlags
& wxPG_PROGRAMMATIC_VALUE
) ||
1070 !child
->HasFlag(wxPG_PROP_DISABLED
|wxPG_PROP_READONLY
) )
1072 bool stvRes
= child
->StringToValue( variant
, token
, propagatedFlags
);
1073 if ( stvRes
|| (variant
!= oldChildValue
) )
1080 // Failed, becomes unspecified
1086 variant
.SetName(child
->GetBaseName());
1087 list
.Append(variant
);
1090 if ( curChild
>= iMax
)
1093 addOnlyIfNotEmpty
= true;
1095 tokenStart
= 0xFFFFFF;
1101 if ( a
== delimeter
)
1114 if ( it
!= text
.end() )
1131 bool wxPGProperty::SetValueFromString( const wxString
& text
, int argFlags
)
1133 wxVariant
variant(m_value
);
1134 bool res
= StringToValue(variant
, text
, argFlags
);
1140 bool wxPGProperty::SetValueFromInt( long number
, int argFlags
)
1142 wxVariant
variant(m_value
);
1143 bool res
= IntToValue(variant
, number
, argFlags
);
1149 wxSize
wxPGProperty::OnMeasureImage( int WXUNUSED(item
) ) const
1151 if ( m_valueBitmap
)
1152 return wxSize(m_valueBitmap
->GetWidth(),-1);
1157 wxPGCellRenderer
* wxPGProperty::GetCellRenderer( int WXUNUSED(column
) ) const
1159 return wxPGGlobalVars
->m_defaultRenderer
;
1162 void wxPGProperty::OnCustomPaint( wxDC
& dc
,
1166 wxBitmap
* bmp
= m_valueBitmap
;
1168 wxCHECK_RET( bmp
&& bmp
->Ok(), wxT("invalid bitmap") );
1170 wxCHECK_RET( rect
.x
>= 0, wxT("unexpected measure call") );
1172 dc
.DrawBitmap(*bmp
,rect
.x
,rect
.y
);
1175 const wxPGEditor
* wxPGProperty::DoGetEditorClass() const
1177 return wxPGEditor_TextCtrl
;
1180 // Default extra property event handling - that is, none at all.
1181 bool wxPGProperty::OnEvent( wxPropertyGrid
*, wxWindow
*, wxEvent
& )
1187 void wxPGProperty::SetValue( wxVariant value
, wxVariant
* pList
, int flags
)
1189 // If auto unspecified values are not wanted (via window or property style),
1190 // then get default value instead of wxNullVariant.
1191 if ( value
.IsNull() && (flags
& wxPG_SETVAL_BY_USER
) &&
1192 !UsesAutoUnspecified() )
1194 value
= GetDefaultValue();
1197 if ( !value
.IsNull() )
1199 wxVariant tempListVariant
;
1202 // List variants are reserved a special purpose
1203 // as intermediate containers for child values
1204 // of properties with children.
1205 if ( value
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1208 // However, situation is different for composed string properties
1209 if ( HasFlag(wxPG_PROP_COMPOSED_VALUE
) )
1211 tempListVariant
= value
;
1212 pList
= &tempListVariant
;
1216 AdaptListToValue(value
, &newValue
);
1218 //wxLogDebug(wxT(">> %s.SetValue() adapted list value to type '%s'"),GetName().c_str(),value.GetType().c_str());
1221 if ( HasFlag( wxPG_PROP_AGGREGATE
) )
1222 flags
|= wxPG_SETVAL_AGGREGATED
;
1224 if ( pList
&& !pList
->IsNull() )
1226 wxASSERT( pList
->GetType() == wxPG_VARIANT_TYPE_LIST
);
1227 wxASSERT( GetChildCount() );
1228 wxASSERT( !IsCategory() );
1230 wxVariantList
& list
= pList
->GetList();
1231 wxVariantList::iterator node
;
1234 //wxLogDebug(wxT(">> %s.SetValue() pList parsing"),GetName().c_str());
1236 // Children in list can be in any order, but we will give hint to
1237 // GetPropertyByNameWH(). This optimizes for full list parsing.
1238 for ( node
= list
.begin(); node
!= list
.end(); ++node
)
1240 wxVariant
& childValue
= *((wxVariant
*)*node
);
1241 wxPGProperty
* child
= GetPropertyByNameWH(childValue
.GetName(), i
);
1244 //wxLogDebug(wxT("%i: child = %s, childValue.GetType()=%s"),i,child->GetBaseName().c_str(),childValue.GetType().c_str());
1245 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
1247 if ( child
->HasFlag(wxPG_PROP_AGGREGATE
) && !(flags
& wxPG_SETVAL_AGGREGATED
) )
1249 wxVariant listRefCopy
= childValue
;
1250 child
->SetValue(childValue
, &listRefCopy
, flags
|wxPG_SETVAL_FROM_PARENT
);
1254 wxVariant oldVal
= child
->GetValue();
1255 child
->SetValue(oldVal
, &childValue
, flags
|wxPG_SETVAL_FROM_PARENT
);
1258 else if ( child
->GetValue() != childValue
)
1260 // For aggregate properties, we will trust RefreshChildren()
1261 // to update child values.
1262 if ( !HasFlag(wxPG_PROP_AGGREGATE
) )
1263 child
->SetValue(childValue
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1264 if ( flags
& wxPG_SETVAL_BY_USER
)
1265 child
->SetFlag(wxPG_PROP_MODIFIED
);
1272 if ( !value
.IsNull() )
1277 if ( !(flags
& wxPG_SETVAL_FROM_PARENT
) )
1278 UpdateParentValues();
1281 if ( flags
& wxPG_SETVAL_BY_USER
)
1282 SetFlag(wxPG_PROP_MODIFIED
);
1284 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
1289 if ( m_commonValue
!= -1 )
1291 wxPropertyGrid
* pg
= GetGrid();
1292 if ( !pg
|| m_commonValue
!= pg
->GetUnspecifiedCommonValue() )
1298 // Set children to unspecified, but only if aggregate or
1299 // value is <composed>
1300 if ( AreChildrenComponents() )
1303 for ( i
=0; i
<GetChildCount(); i
++ )
1304 Item(i
)->SetValue(value
, NULL
, flags
|wxPG_SETVAL_FROM_PARENT
);
1309 // Update editor control
1312 // We need to check for these, otherwise GetGrid() may fail.
1313 if ( flags
& wxPG_SETVAL_REFRESH_EDITOR
)
1318 void wxPGProperty::SetValueInEvent( wxVariant value
) const
1320 GetGrid()->ValueChangeInEvent(value
);
1323 void wxPGProperty::SetFlagRecursively( FlagType flag
, bool set
)
1331 for ( i
= 0; i
< GetChildCount(); i
++ )
1332 Item(i
)->SetFlagRecursively(flag
, set
);
1335 void wxPGProperty::RefreshEditor()
1337 if ( m_parent
&& GetParentState() )
1339 wxPropertyGrid
* pg
= GetParentState()->GetGrid();
1340 if ( pg
->GetSelectedProperty() == this )
1342 wxWindow
* editor
= pg
->GetEditorControl();
1344 GetEditorClass()->UpdateControl( this, editor
);
1350 wxVariant
wxPGProperty::GetDefaultValue() const
1352 wxVariant defVal
= GetAttribute(wxS("DefaultValue"));
1353 if ( !defVal
.IsNull() )
1356 wxVariant value
= GetValue();
1358 if ( !value
.IsNull() )
1360 wxString
valueType(value
.GetType());
1362 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1363 return wxPGVariant_Zero
;
1364 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1365 return wxPGVariant_EmptyString
;
1366 if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1367 return wxPGVariant_False
;
1368 if ( valueType
== wxPG_VARIANT_TYPE_DOUBLE
)
1369 return wxVariant(0.0);
1370 if ( valueType
== wxPG_VARIANT_TYPE_ARRSTRING
)
1371 return wxVariant(wxArrayString());
1372 if ( valueType
== wxS("wxLongLong") )
1373 return WXVARIANT(wxLongLong(0));
1374 if ( valueType
== wxS("wxULongLong") )
1375 return WXVARIANT(wxULongLong(0));
1376 if ( valueType
== wxS("wxColour") )
1377 return WXVARIANT(*wxBLACK
);
1379 if ( valueType
== wxPG_VARIANT_TYPE_DATETIME
)
1380 return wxVariant(wxDateTime::Now());
1382 if ( valueType
== wxS("wxFont") )
1383 return WXVARIANT(*wxNORMAL_FONT
);
1384 if ( valueType
== wxS("wxPoint") )
1385 return WXVARIANT(wxPoint(0, 0));
1386 if ( valueType
== wxS("wxSize") )
1387 return WXVARIANT(wxSize(0, 0));
1393 void wxPGProperty::EnsureCells( unsigned int column
)
1395 if ( column
>= m_cells
.size() )
1397 // Fill empty slots with default cells
1398 wxPropertyGrid
* pg
= GetGrid();
1399 wxPGCell defaultCell
;
1401 if ( !HasFlag(wxPG_PROP_CATEGORY
) )
1402 defaultCell
= pg
->GetPropertyDefaultCell();
1404 defaultCell
= pg
->GetCategoryDefaultCell();
1406 // TODO: Replace with resize() call
1407 unsigned int cellCountMax
= column
+1;
1409 for ( unsigned int i
=m_cells
.size(); i
<cellCountMax
; i
++ )
1410 m_cells
.push_back(defaultCell
);
1414 void wxPGProperty::SetCell( int column
,
1415 const wxPGCell
& cell
)
1417 EnsureCells(column
);
1419 m_cells
[column
] = cell
;
1422 void wxPGProperty::AdaptiveSetCell( unsigned int firstCol
,
1423 unsigned int lastCol
,
1424 const wxPGCell
& cell
,
1425 const wxPGCell
& srcData
,
1426 wxPGCellData
* unmodCellData
,
1427 FlagType ignoreWithFlags
,
1431 // Sets cell in memory optimizing fashion. That is, if
1432 // current cell data matches unmodCellData, we will
1433 // simply get reference to data from cell. Otherwise,
1434 // cell information from srcData is merged into current.
1437 if ( !(m_flags
& ignoreWithFlags
) && !IsRoot() )
1439 EnsureCells(lastCol
);
1441 for ( unsigned int col
=firstCol
; col
<=lastCol
; col
++ )
1443 if ( m_cells
[col
].GetData() == unmodCellData
)
1445 // Data matches... use cell directly
1446 m_cells
[col
] = cell
;
1450 // Data did not match... merge valid information
1451 m_cells
[col
].MergeFrom(srcData
);
1458 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
1459 Item(i
)->AdaptiveSetCell( firstCol
,
1469 const wxPGCell
& wxPGProperty::GetCell( unsigned int column
) const
1471 if ( m_cells
.size() > column
)
1472 return m_cells
[column
];
1474 wxPropertyGrid
* pg
= GetGrid();
1477 return pg
->GetCategoryDefaultCell();
1479 return pg
->GetPropertyDefaultCell();
1482 wxPGCell
& wxPGProperty::GetCell( unsigned int column
)
1484 EnsureCells(column
);
1485 return m_cells
[column
];
1488 void wxPGProperty::SetBackgroundColour( const wxColour
& colour
,
1491 wxPGProperty
* firstProp
= this;
1494 // If category is tried to set recursively, skip it and only
1495 // affect the children.
1498 while ( firstProp
->IsCategory() )
1500 if ( !firstProp
->GetChildCount() )
1502 firstProp
= firstProp
->Item(0);
1506 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1507 wxPGCellData
* firstCellData
= firstCell
.GetData();
1509 wxPGCell
newCell(firstCell
);
1510 newCell
.SetBgCol(colour
);
1512 srcCell
.SetBgCol(colour
);
1515 GetParentState()->GetColumnCount()-1,
1519 recursively
? wxPG_PROP_CATEGORY
: 0,
1523 void wxPGProperty::SetTextColour( const wxColour
& colour
,
1526 wxPGProperty
* firstProp
= this;
1529 // If category is tried to set recursively, skip it and only
1530 // affect the children.
1533 while ( firstProp
->IsCategory() )
1535 if ( !firstProp
->GetChildCount() )
1537 firstProp
= firstProp
->Item(0);
1541 wxPGCell
& firstCell
= firstProp
->GetCell(0);
1542 wxPGCellData
* firstCellData
= firstCell
.GetData();
1544 wxPGCell
newCell(firstCell
);
1545 newCell
.SetFgCol(colour
);
1547 srcCell
.SetFgCol(colour
);
1550 GetParentState()->GetColumnCount()-1,
1554 recursively
? wxPG_PROP_CATEGORY
: 0,
1558 wxPGEditorDialogAdapter
* wxPGProperty::GetEditorDialog() const
1563 bool wxPGProperty::DoSetAttribute( const wxString
& WXUNUSED(name
), wxVariant
& WXUNUSED(value
) )
1568 void wxPGProperty::SetAttribute( const wxString
& name
, wxVariant value
)
1570 if ( DoSetAttribute( name
, value
) )
1572 // Support working without grid, when possible
1573 if ( wxPGGlobalVars
->HasExtraStyle( wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
) )
1577 m_attributes
.Set( name
, value
);
1580 void wxPGProperty::SetAttributes( const wxPGAttributeStorage
& attributes
)
1582 wxPGAttributeStorage::const_iterator it
= attributes
.StartIteration();
1585 while ( attributes
.GetNext(it
, variant
) )
1586 SetAttribute( variant
.GetName(), variant
);
1589 wxVariant
wxPGProperty::DoGetAttribute( const wxString
& WXUNUSED(name
) ) const
1595 wxVariant
wxPGProperty::GetAttribute( const wxString
& name
) const
1597 return m_attributes
.FindValue(name
);
1600 wxString
wxPGProperty::GetAttribute( const wxString
& name
, const wxString
& defVal
) const
1602 wxVariant variant
= m_attributes
.FindValue(name
);
1604 if ( !variant
.IsNull() )
1605 return variant
.GetString();
1610 long wxPGProperty::GetAttributeAsLong( const wxString
& name
, long defVal
) const
1612 wxVariant variant
= m_attributes
.FindValue(name
);
1614 return wxPGVariantToInt(variant
, defVal
);
1617 double wxPGProperty::GetAttributeAsDouble( const wxString
& name
, double defVal
) const
1620 wxVariant variant
= m_attributes
.FindValue(name
);
1622 if ( wxPGVariantToDouble(variant
, &retVal
) )
1628 wxVariant
wxPGProperty::GetAttributesAsList() const
1630 wxVariantList tempList
;
1631 wxVariant
v( tempList
, wxString::Format(wxS("@%s@attr"),m_name
.c_str()) );
1633 wxPGAttributeStorage::const_iterator it
= m_attributes
.StartIteration();
1636 while ( m_attributes
.GetNext(it
, variant
) )
1642 // Slots of utility flags are NULL
1643 const unsigned int gs_propFlagToStringSize
= 14;
1645 static const wxChar
* gs_propFlagToString
[gs_propFlagToStringSize
] = {
1662 wxString
wxPGProperty::GetFlagsAsString( FlagType flagsMask
) const
1665 int relevantFlags
= m_flags
& flagsMask
& wxPG_STRING_STORED_FLAGS
;
1669 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1671 if ( relevantFlags
& a
)
1673 const wxChar
* fs
= gs_propFlagToString
[i
];
1685 void wxPGProperty::SetFlagsFromString( const wxString
& str
)
1689 WX_PG_TOKENIZER1_BEGIN(str
, wxS('|'))
1691 for ( i
=0; i
<gs_propFlagToStringSize
; i
++ )
1693 const wxChar
* fs
= gs_propFlagToString
[i
];
1694 if ( fs
&& str
== fs
)
1700 WX_PG_TOKENIZER1_END()
1702 m_flags
= (m_flags
& ~wxPG_STRING_STORED_FLAGS
) | flags
;
1705 wxValidator
* wxPGProperty::DoGetValidator() const
1707 return (wxValidator
*) NULL
;
1710 int wxPGProperty::InsertChoice( const wxString
& label
, int index
, int value
)
1712 wxPropertyGrid
* pg
= GetGrid();
1713 int sel
= GetChoiceSelection();
1717 if ( index
== wxNOT_FOUND
)
1718 index
= m_choices
.GetCount();
1723 m_choices
.Insert(label
, index
, value
);
1725 if ( sel
!= newSel
)
1726 SetChoiceSelection(newSel
);
1728 if ( this == pg
->GetSelection() )
1729 GetEditorClass()->InsertItem(pg
->GetEditorControl(),label
,index
);
1735 void wxPGProperty::DeleteChoice( int index
)
1737 wxPropertyGrid
* pg
= GetGrid();
1739 int sel
= GetChoiceSelection();
1742 // Adjust current value
1745 SetValueToUnspecified();
1748 else if ( index
< sel
)
1753 m_choices
.RemoveAt(index
);
1755 if ( sel
!= newSel
)
1756 SetChoiceSelection(newSel
);
1758 if ( this == pg
->GetSelection() )
1759 GetEditorClass()->DeleteItem(pg
->GetEditorControl(), index
);
1762 int wxPGProperty::GetChoiceSelection() const
1764 wxVariant value
= GetValue();
1765 wxString valueType
= value
.GetType();
1766 int index
= wxNOT_FOUND
;
1768 if ( IsValueUnspecified() || !m_choices
.GetCount() )
1771 if ( valueType
== wxPG_VARIANT_TYPE_LONG
)
1773 index
= value
.GetLong();
1775 else if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1777 index
= m_choices
.Index(value
.GetString());
1779 else if ( valueType
== wxPG_VARIANT_TYPE_BOOL
)
1781 index
= value
.GetBool()? 1 : 0;
1787 void wxPGProperty::SetChoiceSelection( int newValue
)
1789 // Changes value of a property with choices, but only
1790 // works if the value type is long or string.
1791 wxString valueType
= GetValue().GetType();
1793 wxCHECK_RET( m_choices
.IsOk(), wxT("invalid choiceinfo") );
1795 if ( valueType
== wxPG_VARIANT_TYPE_STRING
)
1797 SetValue( m_choices
.GetLabel(newValue
) );
1799 else // if ( valueType == wxPG_VARIANT_TYPE_LONG )
1801 SetValue( (long) newValue
);
1805 bool wxPGProperty::SetChoices( wxPGChoices
& choices
)
1807 m_choices
.Assign(choices
);
1810 // This may be needed to trigger some initialization
1811 // (but don't do it if property is somewhat uninitialized)
1812 wxVariant defVal
= GetDefaultValue();
1813 if ( defVal
.IsNull() )
1823 const wxPGEditor
* wxPGProperty::GetEditorClass() const
1825 const wxPGEditor
* editor
;
1827 if ( !m_customEditor
)
1829 editor
= DoGetEditorClass();
1832 editor
= m_customEditor
;
1835 // Maybe override editor if common value specified
1836 if ( GetDisplayedCommonValueCount() )
1838 // TextCtrlAndButton -> ComboBoxAndButton
1839 if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlAndButtonEditor
)) )
1840 editor
= wxPGEditor_ChoiceAndButton
;
1842 // TextCtrl -> ComboBox
1843 else if ( editor
->IsKindOf(CLASSINFO(wxPGTextCtrlEditor
)) )
1844 editor
= wxPGEditor_ComboBox
;
1850 bool wxPGProperty::HasVisibleChildren() const
1854 for ( i
=0; i
<GetChildCount(); i
++ )
1856 wxPGProperty
* child
= Item(i
);
1858 if ( !child
->HasFlag(wxPG_PROP_HIDDEN
) )
1865 bool wxPGProperty::RecreateEditor()
1867 wxPropertyGrid
* pg
= GetGrid();
1870 wxPGProperty
* selected
= pg
->GetSelection();
1871 if ( this == selected
)
1873 pg
->DoSelectProperty(this, wxPG_SEL_FORCE
);
1880 void wxPGProperty::SetValueImage( wxBitmap
& bmp
)
1882 delete m_valueBitmap
;
1884 if ( &bmp
&& bmp
.Ok() )
1887 wxSize maxSz
= GetGrid()->GetImageSize();
1888 wxSize
imSz(bmp
.GetWidth(),bmp
.GetHeight());
1890 if ( imSz
.x
!= maxSz
.x
|| imSz
.y
!= maxSz
.y
)
1892 // Create a memory DC
1893 wxBitmap
* bmpNew
= new wxBitmap(maxSz
.x
,maxSz
.y
,bmp
.GetDepth());
1896 dc
.SelectObject(*bmpNew
);
1899 // FIXME: This is ugly - use image or wait for scaling patch.
1900 double scaleX
= (double)maxSz
.x
/ (double)imSz
.x
;
1901 double scaleY
= (double)maxSz
.y
/ (double)imSz
.y
;
1903 dc
.SetUserScale(scaleX
,scaleY
);
1905 dc
.DrawBitmap( bmp
, 0, 0 );
1907 m_valueBitmap
= bmpNew
;
1911 m_valueBitmap
= new wxBitmap(bmp
);
1914 m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
1918 m_valueBitmap
= NULL
;
1919 m_flags
&= ~(wxPG_PROP_CUSTOMIMAGE
);
1924 wxPGProperty
* wxPGProperty::GetMainParent() const
1926 const wxPGProperty
* curChild
= this;
1927 const wxPGProperty
* curParent
= m_parent
;
1929 while ( curParent
&& !curParent
->IsCategory() )
1931 curChild
= curParent
;
1932 curParent
= curParent
->m_parent
;
1935 return (wxPGProperty
*) curChild
;
1939 const wxPGProperty
* wxPGProperty::GetLastVisibleSubItem() const
1942 // Returns last visible sub-item, recursively.
1943 if ( !IsExpanded() || !GetChildCount() )
1946 return Last()->GetLastVisibleSubItem();
1950 bool wxPGProperty::IsVisible() const
1952 const wxPGProperty
* parent
;
1954 if ( HasFlag(wxPG_PROP_HIDDEN
) )
1957 for ( parent
= GetParent(); parent
!= NULL
; parent
= parent
->GetParent() )
1959 if ( !parent
->IsExpanded() || parent
->HasFlag(wxPG_PROP_HIDDEN
) )
1966 wxPropertyGrid
* wxPGProperty::GetGridIfDisplayed() const
1968 wxPropertyGridPageState
* state
= GetParentState();
1969 wxPropertyGrid
* propGrid
= state
->GetGrid();
1970 if ( state
== propGrid
->GetState() )
1976 int wxPGProperty::GetY2( int lh
) const
1978 const wxPGProperty
* parent
;
1979 const wxPGProperty
* child
= this;
1983 for ( parent
= GetParent(); parent
!= NULL
; parent
= child
->GetParent() )
1985 if ( !parent
->IsExpanded() )
1987 y
+= parent
->GetChildrenHeight(lh
, child
->GetIndexInParent());
1992 y
-= lh
; // need to reduce one level
1998 int wxPGProperty::GetY() const
2000 return GetY2(GetGrid()->GetRowHeight());
2003 // This is used by Insert etc.
2004 void wxPGProperty::AddChild2( wxPGProperty
* prop
, int index
, bool correct_mode
)
2006 if ( index
< 0 || (size_t)index
>= m_children
.size() )
2008 if ( correct_mode
) prop
->m_arrIndex
= m_children
.size();
2009 m_children
.push_back( prop
);
2013 m_children
.insert( m_children
.begin()+index
, prop
);
2014 if ( correct_mode
) FixIndicesOfChildren( index
);
2017 prop
->m_parent
= this;
2020 // This is used by properties that have fixed sub-properties
2021 void wxPGProperty::AddChild( wxPGProperty
* prop
)
2023 wxASSERT_MSG( prop
->GetBaseName().length(),
2024 "Property's children must have unique, non-empty names within their scope" );
2026 prop
->m_arrIndex
= m_children
.size();
2027 m_children
.push_back( prop
);
2029 int custImgHeight
= prop
->OnMeasureImage().y
;
2030 if ( custImgHeight
< 0 /*|| custImgHeight > 1*/ )
2031 prop
->m_flags
|= wxPG_PROP_CUSTOMIMAGE
;
2033 prop
->m_parent
= this;
2036 void wxPGProperty::RemoveChild( wxPGProperty
* p
)
2038 wxArrayPGProperty::iterator it
;
2039 wxArrayPGProperty
& children
= m_children
;
2041 for ( it
=children
.begin(); it
!= children
.end(); it
++ )
2045 m_children
.erase(it
);
2051 void wxPGProperty::AdaptListToValue( wxVariant
& list
, wxVariant
* value
) const
2053 wxASSERT( GetChildCount() );
2054 wxASSERT( !IsCategory() );
2056 *value
= GetValue();
2058 if ( !list
.GetCount() )
2061 wxASSERT( GetChildCount() >= (unsigned int)list
.GetCount() );
2063 bool allChildrenSpecified
;
2065 // Don't fully update aggregate properties unless all children have
2067 if ( HasFlag(wxPG_PROP_AGGREGATE
) )
2068 allChildrenSpecified
= AreAllChildrenSpecified(&list
);
2070 allChildrenSpecified
= true;
2072 wxVariant childValue
= list
[0];
2076 //wxLogDebug(wxT(">> %s.AdaptListToValue()"),GetBaseName().c_str());
2078 for ( i
=0; i
<GetChildCount(); i
++ )
2080 const wxPGProperty
* child
= Item(i
);
2082 if ( childValue
.GetName() == child
->GetBaseName() )
2084 //wxLogDebug(wxT(" %s(n=%i), %s"),childValue.GetName().c_str(),n,childValue.GetType().c_str());
2086 if ( childValue
.GetType() == wxPG_VARIANT_TYPE_LIST
)
2088 wxVariant
cv2(child
->GetValue());
2089 child
->AdaptListToValue(childValue
, &cv2
);
2093 if ( allChildrenSpecified
)
2094 ChildChanged(*value
, i
, childValue
);
2096 if ( n
== (unsigned int)list
.GetCount() )
2098 childValue
= list
[n
];
2104 void wxPGProperty::FixIndicesOfChildren( unsigned int starthere
)
2107 for ( i
=starthere
;i
<GetChildCount();i
++)
2108 Item(i
)->m_arrIndex
= i
;
2112 // Returns (direct) child property with given name (or NULL if not found)
2113 wxPGProperty
* wxPGProperty::GetPropertyByName( const wxString
& name
) const
2117 for ( i
=0; i
<GetChildCount(); i
++ )
2119 wxPGProperty
* p
= Item(i
);
2120 if ( p
->m_name
== name
)
2124 // Does it have point, then?
2125 int pos
= name
.Find(wxS('.'));
2127 return (wxPGProperty
*) NULL
;
2129 wxPGProperty
* p
= GetPropertyByName(name
. substr(0,pos
));
2131 if ( !p
|| !p
->GetChildCount() )
2134 return p
->GetPropertyByName(name
.substr(pos
+1,name
.length()-pos
-1));
2137 wxPGProperty
* wxPGProperty::GetPropertyByNameWH( const wxString
& name
, unsigned int hintIndex
) const
2139 unsigned int i
= hintIndex
;
2141 if ( i
>= GetChildCount() )
2144 unsigned int lastIndex
= i
- 1;
2146 if ( lastIndex
>= GetChildCount() )
2147 lastIndex
= GetChildCount() - 1;
2151 wxPGProperty
* p
= Item(i
);
2152 if ( p
->m_name
== name
)
2155 if ( i
== lastIndex
)
2159 if ( i
== GetChildCount() )
2166 int wxPGProperty::GetChildrenHeight( int lh
, int iMax_
) const
2168 // Returns height of children, recursively, and
2169 // by taking expanded/collapsed status into account.
2171 // iMax is used when finding property y-positions.
2177 iMax_
= GetChildCount();
2179 unsigned int iMax
= iMax_
;
2181 wxASSERT( iMax
<= GetChildCount() );
2183 if ( !IsExpanded() && GetParent() )
2188 wxPGProperty
* pwc
= (wxPGProperty
*) Item(i
);
2190 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2192 if ( !pwc
->IsExpanded() ||
2193 pwc
->GetChildCount() == 0 )
2196 h
+= pwc
->GetChildrenHeight(lh
) + lh
;
2205 wxPGProperty
* wxPGProperty::GetItemAtY( unsigned int y
, unsigned int lh
, unsigned int* nextItemY
) const
2207 wxASSERT( nextItemY
);
2209 // Linear search at the moment
2211 // nextItemY = y of next visible property, final value will be written back.
2212 wxPGProperty
* result
= NULL
;
2213 wxPGProperty
* current
= NULL
;
2214 unsigned int iy
= *nextItemY
;
2216 unsigned int iMax
= GetChildCount();
2220 wxPGProperty
* pwc
= Item(i
);
2222 if ( !pwc
->HasFlag(wxPG_PROP_HIDDEN
) )
2233 if ( pwc
->IsExpanded() &&
2234 pwc
->GetChildCount() > 0 )
2236 result
= (wxPGProperty
*) pwc
->GetItemAtY( y
, lh
, &iy
);
2248 if ( !result
&& y
< iy
)
2255 wxLogDebug(wxT("%s::GetItemAtY(%i) -> %s"),this->GetLabel().c_str(),y,current->GetLabel().c_str());
2257 wxLogDebug(wxT("%s::GetItemAtY(%i) -> NULL"),this->GetLabel().c_str(),y);
2260 return (wxPGProperty
*) result
;
2263 void wxPGProperty::Empty()
2266 if ( !HasFlag(wxPG_PROP_CHILDREN_ARE_COPIES
) )
2268 for ( i
=0; i
<GetChildCount(); i
++ )
2270 delete m_children
[i
];
2277 void wxPGProperty::ChildChanged( wxVariant
& WXUNUSED(thisValue
),
2278 int WXUNUSED(childIndex
),
2279 wxVariant
& WXUNUSED(childValue
) ) const
2283 bool wxPGProperty::AreAllChildrenSpecified( wxVariant
* pendingList
) const
2287 const wxVariantList
* pList
= NULL
;
2288 wxVariantList::const_iterator node
;
2292 pList
= &pendingList
->GetList();
2293 node
= pList
->begin();
2296 for ( i
=0; i
<GetChildCount(); i
++ )
2298 wxPGProperty
* child
= Item(i
);
2299 const wxVariant
* listValue
= NULL
;
2304 const wxString
& childName
= child
->GetBaseName();
2306 for ( ; node
!= pList
->end(); ++node
)
2308 const wxVariant
& item
= *((const wxVariant
*)*node
);
2309 if ( item
.GetName() == childName
)
2319 value
= child
->GetValue();
2321 if ( value
.IsNull() )
2324 // Check recursively
2325 if ( child
->GetChildCount() )
2327 const wxVariant
* childList
= NULL
;
2329 if ( listValue
&& listValue
->GetType() == wxPG_VARIANT_TYPE_LIST
)
2330 childList
= listValue
;
2332 if ( !child
->AreAllChildrenSpecified((wxVariant
*)childList
) )
2340 wxPGProperty
* wxPGProperty::UpdateParentValues()
2342 wxPGProperty
* parent
= m_parent
;
2343 if ( parent
&& parent
->HasFlag(wxPG_PROP_COMPOSED_VALUE
) &&
2344 !parent
->IsCategory() && !parent
->IsRoot() )
2347 parent
->DoGenerateComposedValue(s
);
2348 parent
->m_value
= s
;
2349 return parent
->UpdateParentValues();
2354 bool wxPGProperty::IsTextEditable() const
2356 if ( HasFlag(wxPG_PROP_READONLY
) )
2359 if ( HasFlag(wxPG_PROP_NOEDITOR
) &&
2361 wxString(GetEditorClass()->GetClassInfo()->GetClassName()).EndsWith(wxS("Button")))
2368 // Call after fixed sub-properties added/removed after creation.
2369 // if oldSelInd >= 0 and < new max items, then selection is
2370 // moved to it. Note: oldSelInd -2 indicates that this property
2371 // should be selected.
2372 void wxPGProperty::SubPropsChanged( int oldSelInd
)
2374 wxPropertyGridPageState
* state
= GetParentState();
2375 wxPropertyGrid
* grid
= state
->GetGrid();
2378 // Re-repare children (recursively)
2379 for ( unsigned int i
=0; i
<GetChildCount(); i
++ )
2381 wxPGProperty
* child
= Item(i
);
2382 child
->InitAfterAdded(state
, grid
);
2385 wxPGProperty
* sel
= (wxPGProperty
*) NULL
;
2386 if ( oldSelInd
>= (int)m_children
.size() )
2387 oldSelInd
= (int)m_children
.size() - 1;
2389 if ( oldSelInd
>= 0 )
2390 sel
= m_children
[oldSelInd
];
2391 else if ( oldSelInd
== -2 )
2395 state
->DoSelectProperty(sel
);
2397 if ( state
== grid
->GetState() )
2399 grid
->GetPanel()->Refresh();
2403 // -----------------------------------------------------------------------
2405 // -----------------------------------------------------------------------
2407 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPGRootProperty
,none
,TextCtrl
)
2408 IMPLEMENT_DYNAMIC_CLASS(wxPGRootProperty
, wxPGProperty
)
2411 wxPGRootProperty::wxPGRootProperty()
2415 m_name
= wxS("<root>");
2422 wxPGRootProperty::~wxPGRootProperty()
2427 // -----------------------------------------------------------------------
2428 // wxPropertyCategory
2429 // -----------------------------------------------------------------------
2431 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(wxPropertyCategory
,none
,TextCtrl
)
2432 IMPLEMENT_DYNAMIC_CLASS(wxPropertyCategory
, wxPGProperty
)
2434 void wxPropertyCategory::Init()
2436 // don't set colour - prepareadditem method should do this
2437 SetParentalType(wxPG_PROP_CATEGORY
);
2438 m_capFgColIndex
= 1;
2442 wxPropertyCategory::wxPropertyCategory()
2449 wxPropertyCategory::wxPropertyCategory( const wxString
&label
, const wxString
& name
)
2450 : wxPGProperty(label
,name
)
2456 wxPropertyCategory::~wxPropertyCategory()
2461 wxString
wxPropertyCategory::ValueToString( wxVariant
& WXUNUSED(value
),
2462 int WXUNUSED(argFlags
) ) const
2464 return wxEmptyString
;
2467 int wxPropertyCategory::GetTextExtent( const wxWindow
* wnd
, const wxFont
& font
) const
2469 if ( m_textExtent
> 0 )
2470 return m_textExtent
;
2472 ((wxWindow
*)wnd
)->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2476 void wxPropertyCategory::CalculateTextExtent( wxWindow
* wnd
, const wxFont
& font
)
2479 wnd
->GetTextExtent( m_label
, &x
, &y
, 0, 0, &font
);
2483 // -----------------------------------------------------------------------
2484 // wxPGAttributeStorage
2485 // -----------------------------------------------------------------------
2487 wxPGAttributeStorage::wxPGAttributeStorage()
2491 wxPGAttributeStorage::~wxPGAttributeStorage()
2493 wxPGHashMapS2P::iterator it
;
2495 for ( it
= m_map
.begin(); it
!= m_map
.end(); ++it
)
2497 wxVariantData
* data
= (wxVariantData
*) it
->second
;
2502 void wxPGAttributeStorage::Set( const wxString
& name
, const wxVariant
& value
)
2504 wxVariantData
* data
= value
.GetData();
2507 wxPGHashMapS2P::iterator it
= m_map
.find(name
);
2508 if ( it
!= m_map
.end() )
2510 ((wxVariantData
*)it
->second
)->DecRef();
2514 // If Null variant, just remove from set
2528 #endif // wxUSE_PROPGRID