1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/propgrid/propgridpagestate.cpp
3 // Purpose: wxPropertyGridPageState class
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"
35 #include "wx/stopwatch.h"
38 // This define is necessary to prevent macro clearing
39 #define __wxPG_SOURCE_FILE__
41 #include "wx/propgrid/propgridpagestate.h"
42 #include "wx/propgrid/propgrid.h"
43 #include "wx/propgrid/editors.h"
45 #define wxPG_DEFAULT_SPLITTERX 110
48 // -----------------------------------------------------------------------
49 // wxPropertyGridIterator
50 // -----------------------------------------------------------------------
52 void wxPropertyGridIteratorBase::Init( wxPropertyGridPageState
* state
, int flags
, wxPGProperty
* property
, int dir
)
54 wxASSERT( dir
== 1 || dir
== -1 );
57 m_baseParent
= state
->DoGetRoot();
58 if ( !property
&& m_baseParent
->GetChildCount() )
59 property
= m_baseParent
->Item(0);
61 m_property
= property
;
63 wxPG_ITERATOR_CREATE_MASKS(flags
, m_itemExMask
, m_parentExMask
)
65 // Need to skip first?
66 if ( property
&& (property
->GetFlags() & m_itemExMask
) )
75 void wxPropertyGridIteratorBase::Init( wxPropertyGridPageState
* state
, int flags
, int startPos
, int dir
)
77 wxPGProperty
* property
= NULL
;
79 if ( startPos
== wxTOP
)
84 else if ( startPos
== wxBOTTOM
)
86 property
= state
->GetLastItem(flags
);
92 wxFAIL_MSG("Only supported starting positions are wxTOP and wxBOTTOM");
95 Init( state
, flags
, property
, dir
);
98 void wxPropertyGridIteratorBase::Assign( const wxPropertyGridIteratorBase
& it
)
100 m_property
= it
.m_property
;
101 m_state
= it
.m_state
;
102 m_baseParent
= it
.m_baseParent
;
103 m_itemExMask
= it
.m_itemExMask
;
104 m_parentExMask
= it
.m_parentExMask
;
107 void wxPropertyGridIteratorBase::Prev()
109 wxPGProperty
* property
= m_property
;
113 wxPGProperty
* parent
= property
->GetParent();
115 unsigned int index
= property
->GetIndexInParent();
122 property
= parent
->Item(index
);
124 // Go to last children?
125 if ( property
->GetChildCount() &&
126 wxPG_ITERATOR_PARENTEXMASK_TEST(property
, m_parentExMask
) )
129 property
= property
->Last();
135 if ( parent
== m_baseParent
)
146 m_property
= property
;
148 // If property does not match our criteria, skip it
149 if ( property
->GetFlags() & m_itemExMask
)
153 void wxPropertyGridIteratorBase::Next( bool iterateChildren
)
155 wxPGProperty
* property
= m_property
;
159 if ( property
->GetChildCount() &&
160 wxPG_ITERATOR_PARENTEXMASK_TEST(property
, m_parentExMask
) &&
164 property
= property
->Item(0);
168 wxPGProperty
* parent
= property
->GetParent();
170 unsigned int index
= property
->GetIndexInParent() + 1;
172 if ( index
< parent
->GetChildCount() )
175 property
= parent
->Item(index
);
179 // Next sibling of parent
180 if ( parent
== m_baseParent
)
193 m_property
= property
;
195 // If property does not match our criteria, skip it
196 if ( property
->GetFlags() & m_itemExMask
)
200 // -----------------------------------------------------------------------
201 // wxPropertyGridPageState
202 // -----------------------------------------------------------------------
204 wxPropertyGridPageState::wxPropertyGridPageState()
207 m_regularArray
.SetParentState(this);
208 m_properties
= &m_regularArray
;
210 m_currentCategory
= NULL
;
213 m_lastCaptionBottomnest
= 1;
217 m_colWidths
.push_back( wxPG_DEFAULT_SPLITTERX
);
218 m_colWidths
.push_back( wxPG_DEFAULT_SPLITTERX
);
219 m_fSplitterX
= wxPG_DEFAULT_SPLITTERX
;
221 m_isSplitterPreSet
= false;
222 m_dontCenterSplitter
= false;
224 // By default, we only have the 'value' column editable
225 m_editableColumns
.push_back(1);
228 // -----------------------------------------------------------------------
230 wxPropertyGridPageState::~wxPropertyGridPageState()
235 // -----------------------------------------------------------------------
237 void wxPropertyGridPageState::InitNonCatMode()
241 m_abcArray
= new wxPGRootProperty(wxS("<Root_NonCat>"));
242 m_abcArray
->SetParentState(this);
243 m_abcArray
->SetFlag(wxPG_PROP_CHILDREN_ARE_COPIES
);
246 // Must be called when state::m_properties still points to regularArray.
247 wxPGProperty
* oldProperties
= m_properties
;
249 // Must use temp value in state::m_properties for item iteration loop
250 // to run as expected.
251 m_properties
= &m_regularArray
;
253 if ( m_properties
->GetChildCount() )
256 // Prepare m_abcArray
257 wxPropertyGridIterator
it( this, wxPG_ITERATE_PROPERTIES
);
259 for ( ; !it
.AtEnd(); it
.Next() )
261 wxPGProperty
* p
= it
.GetProperty();
262 wxPGProperty
* parent
= p
->GetParent();
263 if ( parent
->IsCategory() || parent
->IsRoot() )
265 m_abcArray
->DoAddChild(p
);
266 p
->m_parent
= &m_regularArray
;
271 m_properties
= oldProperties
;
274 // -----------------------------------------------------------------------
276 void wxPropertyGridPageState::DoClear()
278 if ( m_pPropGrid
&& m_pPropGrid
->GetState() == this )
280 m_pPropGrid
->ClearSelection(false);
287 m_regularArray
.Empty();
293 m_currentCategory
= NULL
;
294 m_lastCaptionBottomnest
= 1;
301 // -----------------------------------------------------------------------
303 void wxPropertyGridPageState::CalculateFontAndBitmapStuff( int WXUNUSED(vspacing
) )
305 wxPropertyGrid
* propGrid
= GetGrid();
307 VirtualHeightChanged();
309 // Recalculate caption text extents.
312 for ( i
=0;i
<m_regularArray
.GetChildCount();i
++ )
314 wxPGProperty
* p
=m_regularArray
.Item(i
);
316 if ( p
->IsCategory() )
317 ((wxPropertyCategory
*)p
)->CalculateTextExtent(propGrid
, propGrid
->GetCaptionFont());
321 // -----------------------------------------------------------------------
323 void wxPropertyGridPageState::SetVirtualWidth( int width
)
325 // Sometimes width less than 0 is offered. Let's make things easy for
326 // everybody and deal with it here.
330 wxPropertyGrid
* pg
= GetGrid();
331 int gw
= pg
->GetClientSize().x
;
338 // -----------------------------------------------------------------------
340 void wxPropertyGridPageState::OnClientWidthChange( int newWidth
, int widthChange
, bool fromOnResize
)
342 wxPropertyGrid
* pg
= GetGrid();
344 if ( pg
->HasVirtualWidth() )
346 if ( m_width
< newWidth
)
347 SetVirtualWidth( newWidth
);
349 CheckColumnWidths(widthChange
);
353 SetVirtualWidth( newWidth
);
355 // This should be done before splitter auto centering
356 // NOTE: Splitter auto-centering is done in this function.
359 CheckColumnWidths(widthChange
);
361 if ( !m_isSplitterPreSet
&& m_dontCenterSplitter
)
363 long timeSinceCreation
= (::wxGetLocalTimeMillis() - GetGrid()->m_timeCreated
).ToLong();
365 // If too long, don't set splitter
366 if ( timeSinceCreation
< 250 )
368 if ( m_properties
->GetChildCount() )
370 SetSplitterLeft( false );
374 DoSetSplitterPosition( newWidth
/ 2 );
375 m_isSplitterPreSet
= false;
382 // -----------------------------------------------------------------------
383 // wxPropertyGridPageState item iteration methods
384 // -----------------------------------------------------------------------
386 wxPGProperty
* wxPropertyGridPageState::GetLastItem( int flags
)
388 if ( !m_properties
->GetChildCount() )
391 wxPG_ITERATOR_CREATE_MASKS(flags
, int itemExMask
, int parentExMask
)
393 // First, get last child of last parent
394 wxPGProperty
* pwc
= (wxPGProperty
*)m_properties
->Last();
395 while ( pwc
->GetChildCount() &&
396 wxPG_ITERATOR_PARENTEXMASK_TEST(pwc
, parentExMask
) )
397 pwc
= (wxPGProperty
*) pwc
->Last();
399 // Then, if it doesn't fit our criteria, back up until we find something that does
400 if ( pwc
->GetFlags() & itemExMask
)
402 wxPropertyGridIterator
it( this, flags
, pwc
);
403 for ( ; !it
.AtEnd(); it
.Prev() )
405 pwc
= (wxPGProperty
*) it
.GetProperty();
411 wxPropertyCategory
* wxPropertyGridPageState::GetPropertyCategory( const wxPGProperty
* p
) const
413 const wxPGProperty
* parent
= (const wxPGProperty
*)p
;
414 const wxPGProperty
* grandparent
= (const wxPGProperty
*)parent
->GetParent();
417 parent
= grandparent
;
418 grandparent
= (wxPGProperty
*)parent
->GetParent();
419 if ( parent
->IsCategory() && grandparent
)
420 return (wxPropertyCategory
*)parent
;
421 } while ( grandparent
);
426 // -----------------------------------------------------------------------
427 // wxPropertyGridPageState GetPropertyXXX methods
428 // -----------------------------------------------------------------------
430 wxPGProperty
* wxPropertyGridPageState::GetPropertyByLabel( const wxString
& label
,
431 wxPGProperty
* parent
) const
436 if ( !parent
) parent
= (wxPGProperty
*) &m_regularArray
;
438 for ( i
=0; i
<parent
->GetChildCount(); i
++ )
440 wxPGProperty
* p
= parent
->Item(i
);
441 if ( p
->m_label
== label
)
443 // Check children recursively.
444 if ( p
->GetChildCount() )
446 p
= GetPropertyByLabel(label
,(wxPGProperty
*)p
);
455 // -----------------------------------------------------------------------
457 wxPGProperty
* wxPropertyGridPageState::BaseGetPropertyByName( const wxString
& name
) const
459 wxPGHashMapS2P::const_iterator it
;
460 it
= m_dictName
.find(name
);
461 if ( it
!= m_dictName
.end() )
462 return (wxPGProperty
*) it
->second
;
466 // -----------------------------------------------------------------------
468 void wxPropertyGridPageState::DoSetPropertyName( wxPGProperty
* p
,
469 const wxString
& newName
)
471 wxCHECK_RET( p
, wxT("invalid property id") );
473 wxPGProperty
* parent
= p
->GetParent();
475 if ( parent
->IsCategory() || parent
->IsRoot() )
477 if ( p
->GetBaseName().length() )
478 m_dictName
.erase( p
->GetBaseName() );
479 if ( newName
.length() )
480 m_dictName
[newName
] = (void*) p
;
483 p
->DoSetName(newName
);
486 // -----------------------------------------------------------------------
487 // wxPropertyGridPageState global operations
488 // -----------------------------------------------------------------------
490 // -----------------------------------------------------------------------
491 // Item iteration macros
492 // NB: Nowadays only needed for alphabetic/categoric mode switching.
493 // -----------------------------------------------------------------------
495 //#define II_INVALID_I 0x00FFFFFF
497 #define ITEM_ITERATION_VARIABLES \
498 wxPGProperty* parent; \
502 #define ITEM_ITERATION_INIT_FROM_THE_TOP \
503 parent = m_properties; \
507 #define ITEM_ITERATION_INIT(startparent, startindex, state) \
508 parent = startparent; \
509 i = (unsigned int)startindex; \
510 if ( parent == NULL ) \
512 parent = state->m_properties; \
517 #define ITEM_ITERATION_LOOP_BEGIN \
520 iMax = parent->GetChildCount(); \
523 wxPGProperty* p = parent->Item(i);
525 #define ITEM_ITERATION_LOOP_END \
526 if ( p->GetChildCount() ) \
529 parent = (wxPGProperty*)p; \
530 iMax = parent->GetChildCount(); \
535 i = parent->m_arrIndex + 1; \
536 parent = parent->m_parent; \
538 while ( parent != NULL );
540 bool wxPropertyGridPageState::EnableCategories( bool enable
)
543 // NB: We can't use wxPropertyGridIterator in this
544 // function, since it depends on m_arrIndexes,
545 // which, among other things, is being fixed here.
547 ITEM_ITERATION_VARIABLES
555 if ( !IsInNonCatMode() )
558 m_properties
= &m_regularArray
;
560 // fix parents, indexes, and depths
561 ITEM_ITERATION_INIT_FROM_THE_TOP
563 ITEM_ITERATION_LOOP_BEGIN
567 p
->m_parent
= parent
;
569 // If parent was category, and this is not,
570 // then the depth stays the same.
571 if ( parent
->IsCategory() &&
573 p
->m_depth
= parent
->m_depth
;
575 p
->m_depth
= parent
->m_depth
+ 1;
577 ITEM_ITERATION_LOOP_END
583 // Disable categories
586 if ( IsInNonCatMode() )
589 // Create array, if necessary.
593 m_properties
= m_abcArray
;
595 // fix parents, indexes, and depths
596 ITEM_ITERATION_INIT_FROM_THE_TOP
598 ITEM_ITERATION_LOOP_BEGIN
602 p
->m_parent
= parent
;
604 p
->m_depth
= parent
->m_depth
+ 1;
606 ITEM_ITERATION_LOOP_END
609 VirtualHeightChanged();
611 if ( m_pPropGrid
->GetState() == this )
612 m_pPropGrid
->RecalculateVirtualSize();
617 // -----------------------------------------------------------------------
619 static int wxPG_SortFunc_ByFunction(wxPGProperty
**pp1
, wxPGProperty
**pp2
)
621 wxPGProperty
*p1
= *pp1
;
622 wxPGProperty
*p2
= *pp2
;
623 wxPropertyGrid
* pg
= p1
->GetGrid();
624 wxPGSortCallback sortFunction
= pg
->GetSortFunction();
625 return sortFunction(pg
, p1
, p2
);
628 static int wxPG_SortFunc_ByLabel(wxPGProperty
**pp1
, wxPGProperty
**pp2
)
630 wxPGProperty
*p1
= *pp1
;
631 wxPGProperty
*p2
= *pp2
;
632 return p1
->GetLabel().CmpNoCase( p2
->GetLabel() );
637 // For wxVector w/ wxUSE_STL=1, you would use code like this instead:
642 static bool wxPG_SortFunc_ByFunction(wxPGProperty
*p1
, wxPGProperty
*p2
)
644 wxPropertyGrid
* pg
= p1
->GetGrid();
645 wxPGSortCallback sortFunction
= pg
->GetSortFunction();
646 return sortFunction(pg
, p1
, p2
) < 0;
649 static bool wxPG_SortFunc_ByLabel(wxPGProperty
*p1
, wxPGProperty
*p2
)
651 return p1
->GetLabel().CmpNoCase( p2
->GetLabel() ) < 0;
655 void wxPropertyGridPageState::DoSortChildren( wxPGProperty
* p
,
661 // Can only sort items with children
662 if ( !p
->GetChildCount() )
665 // Never sort children of aggregate properties
666 if ( p
->HasFlag(wxPG_PROP_AGGREGATE
) )
669 if ( (flags
& wxPG_SORT_TOP_LEVEL_ONLY
)
670 && !p
->IsCategory() && !p
->IsRoot() )
673 if ( GetGrid()->GetSortFunction() )
674 p
->m_children
.Sort( wxPG_SortFunc_ByFunction
);
676 p
->m_children
.Sort( wxPG_SortFunc_ByLabel
);
680 // For wxVector w/ wxUSE_STL=1, you would use code like this instead:
682 if ( GetGrid()->GetSortFunction() )
683 std::sort(p
->m_children
.begin(), p
->m_children
.end(),
684 wxPG_SortFunc_ByFunction
);
686 std::sort(p
->m_children
.begin(), p
->m_children
.end(),
687 wxPG_SortFunc_ByLabel
);
691 p
->FixIndicesOfChildren();
693 if ( flags
& wxPG_RECURSE
)
695 // Apply sort recursively
696 for ( unsigned int i
=0; i
<p
->GetChildCount(); i
++ )
697 DoSortChildren(p
->Item(i
), flags
);
701 // -----------------------------------------------------------------------
703 void wxPropertyGridPageState::DoSort( int flags
)
705 DoSortChildren( m_properties
, flags
| wxPG_RECURSE
);
707 // We used to sort categories as well here also if in non-categorized
708 // mode, but doing would naturally cause child indices to become
712 // -----------------------------------------------------------------------
714 bool wxPropertyGridPageState::PrepareAfterItemsAdded()
716 if ( !m_itemsAdded
) return false;
718 wxPropertyGrid
* pg
= GetGrid();
722 if ( pg
->HasFlag(wxPG_AUTO_SORT
) )
723 DoSort(wxPG_SORT_TOP_LEVEL_ONLY
);
728 // -----------------------------------------------------------------------
729 // wxPropertyGridPageState splitter, column and hittest functions
730 // -----------------------------------------------------------------------
732 wxPGProperty
* wxPropertyGridPageState::DoGetItemAtY( int y
) const
739 return m_properties
->GetItemAtY(y
, GetGrid()->m_lineHeight
, &a
);
742 // -----------------------------------------------------------------------
744 wxPropertyGridHitTestResult
745 wxPropertyGridPageState::HitTest( const wxPoint
&pt
) const
747 wxPropertyGridHitTestResult result
;
748 result
.m_column
= HitTestH( pt
.x
, &result
.m_splitter
,
749 &result
.m_splitterHitOffset
);
750 result
.m_property
= DoGetItemAtY( pt
.y
);
754 // -----------------------------------------------------------------------
756 // Used by SetSplitterLeft() and DotFitColumns()
757 int wxPropertyGridPageState::GetColumnFitWidth(wxClientDC
& dc
,
762 wxPropertyGrid
* pg
= m_pPropGrid
;
767 for ( i
=0; i
<pwc
->GetChildCount(); i
++ )
769 wxPGProperty
* p
= pwc
->Item(i
);
770 if ( !p
->IsCategory() )
772 const wxPGCell
* cell
= NULL
;
774 p
->GetDisplayInfo(col
, -1, 0, &text
, &cell
);
775 dc
.GetTextExtent(text
, &w
, &h
);
777 w
+= ( ((int)p
->m_depth
-1) * pg
->m_subgroup_extramargin
);
779 // account for the bitmap
781 w
+= p
->GetImageOffset(pg
->GetImageRect(p
, -1).GetWidth());
784 w
+= (wxPG_XBEFORETEXT
*2);
790 if ( p
->GetChildCount() &&
791 ( subProps
|| p
->IsCategory() ) )
793 w
= GetColumnFitWidth( dc
, p
, col
, subProps
);
803 int wxPropertyGridPageState::DoGetSplitterPosition( int splitterColumn
) const
805 int n
= GetGrid()->m_marginWidth
;
807 for ( i
=0; i
<=splitterColumn
; i
++ )
812 int wxPropertyGridPageState::GetColumnMinWidth( int WXUNUSED(column
) ) const
814 return wxPG_DRAG_MARGIN
;
817 void wxPropertyGridPageState::PropagateColSizeDec( int column
,
821 int origWidth
= m_colWidths
[column
];
822 m_colWidths
[column
] -= decrease
;
823 int min
= GetColumnMinWidth(column
);
825 if ( m_colWidths
[column
] < min
)
827 more
= decrease
- (origWidth
- min
);
828 m_colWidths
[column
] = min
;
832 // FIXME: Causes erratic splitter changing, so as a workaround
833 // disabled if two or less columns.
835 if ( m_colWidths
.size() <= 2 )
839 if ( more
&& column
< (int)m_colWidths
.size() && column
>= 0 )
840 PropagateColSizeDec( column
, more
, dir
);
843 void wxPropertyGridPageState::DoSetSplitterPosition( int newXPos
,
847 wxPropertyGrid
* pg
= GetGrid();
849 int adjust
= newXPos
- DoGetSplitterPosition(splitterColumn
);
851 if ( !pg
->HasVirtualWidth() )
857 otherColumn
= splitterColumn
+ 1;
858 if ( otherColumn
== (int)m_colWidths
.size() )
860 m_colWidths
[splitterColumn
] += adjust
;
861 PropagateColSizeDec( otherColumn
, adjust
, 1 );
865 otherColumn
= splitterColumn
+ 1;
866 if ( otherColumn
== (int)m_colWidths
.size() )
868 m_colWidths
[otherColumn
] -= adjust
;
869 PropagateColSizeDec( splitterColumn
, -adjust
, -1 );
874 m_colWidths
[splitterColumn
] += adjust
;
877 if ( splitterColumn
== 0 )
878 m_fSplitterX
= (double) newXPos
;
880 if ( !(flags
& wxPG_SPLITTER_FROM_AUTO_CENTER
) &&
881 !(flags
& wxPG_SPLITTER_FROM_EVENT
) )
883 // Don't allow initial splitter auto-positioning after this.
884 m_isSplitterPreSet
= true;
890 // Moves splitter so that all labels are visible, but just.
891 void wxPropertyGridPageState::SetSplitterLeft( bool subProps
)
893 wxPropertyGrid
* pg
= GetGrid();
895 dc
.SetFont(pg
->GetFont());
897 int maxW
= GetColumnFitWidth(dc
, m_properties
, 0, subProps
);
901 maxW
+= pg
->m_marginWidth
;
902 DoSetSplitterPosition( maxW
);
905 m_dontCenterSplitter
= true;
908 wxSize
wxPropertyGridPageState::DoFitColumns( bool WXUNUSED(allowGridResize
) )
910 wxPropertyGrid
* pg
= GetGrid();
912 dc
.SetFont(pg
->GetFont());
914 int marginWidth
= pg
->m_marginWidth
;
915 int accWid
= marginWidth
;
916 int maxColWidth
= 500;
918 for ( unsigned int col
=0; col
< GetColumnCount(); col
++ )
920 int fitWid
= GetColumnFitWidth(dc
, m_properties
, col
, true);
921 int colMinWidth
= GetColumnMinWidth(col
);
922 if ( fitWid
< colMinWidth
)
923 fitWid
= colMinWidth
;
924 else if ( fitWid
> maxColWidth
)
925 fitWid
= maxColWidth
;
927 m_colWidths
[col
] = fitWid
;
932 // Expand last one to fill the width
933 int remaining
= m_width
- accWid
;
934 m_colWidths
[GetColumnCount()-1] += remaining
;
936 m_dontCenterSplitter
= true;
938 int firstSplitterX
= marginWidth
+ m_colWidths
[0];
939 m_fSplitterX
= (double) firstSplitterX
;
941 // Don't allow initial splitter auto-positioning after this.
942 if ( pg
->GetState() == this )
944 pg
->SetSplitterPosition(firstSplitterX
, false);
949 pg
->GetVirtualSize(&x
, &y
);
951 return wxSize(accWid
, y
);
954 void wxPropertyGridPageState::CheckColumnWidths( int widthChange
)
959 wxPropertyGrid
* pg
= GetGrid();
962 unsigned int lastColumn
= m_colWidths
.size() - 1;
964 int clientWidth
= pg
->GetClientSize().x
;
967 // Column to reduce, if needed. Take last one that exceeds minimum width.
970 wxLogTrace("propgrid",
971 wxS("ColumnWidthCheck (virtualWidth: %i, clientWidth: %i)"),
976 for ( i
=0; i
<m_colWidths
.size(); i
++ )
978 int min
= GetColumnMinWidth(i
);
979 if ( m_colWidths
[i
] <= min
)
981 m_colWidths
[i
] = min
;
985 // Always reduce the last column that is larger than minimum size
986 // (looks nicer, even with auto-centering enabled).
991 int colsWidth
= pg
->m_marginWidth
;
992 for ( i
=0; i
<m_colWidths
.size(); i
++ )
993 colsWidth
+= m_colWidths
[i
];
995 wxLogTrace("propgrid",
996 wxS(" HasVirtualWidth: %i colsWidth: %i"),
997 (int)pg
->HasVirtualWidth(), colsWidth
);
999 // Then mode-based requirement
1000 if ( !pg
->HasVirtualWidth() )
1002 int widthHigher
= width
- colsWidth
;
1004 // Adapt colsWidth to width
1005 if ( colsWidth
< width
)
1008 wxLogTrace("propgrid",
1009 wxS(" Adjust last column to %i"),
1010 m_colWidths
[lastColumn
] + widthHigher
);
1011 m_colWidths
[lastColumn
] = m_colWidths
[lastColumn
] + widthHigher
;
1013 else if ( colsWidth
> width
)
1016 if ( reduceCol
!= -1 )
1018 wxLogTrace("propgrid",
1019 wxT(" Reduce column %i (by %i)"),
1020 reduceCol
, -widthHigher
);
1022 // Reduce widest column, and recheck
1023 m_colWidths
[reduceCol
] = m_colWidths
[reduceCol
] + widthHigher
;
1024 CheckColumnWidths();
1030 // Only check colsWidth against clientWidth
1031 if ( colsWidth
< clientWidth
)
1033 m_colWidths
[lastColumn
] = m_colWidths
[lastColumn
] + (clientWidth
-colsWidth
);
1036 m_width
= colsWidth
;
1038 // If width changed, recalculate virtual size
1039 if ( pg
->GetState() == this )
1040 pg
->RecalculateVirtualSize();
1043 for ( i
=0; i
<m_colWidths
.size(); i
++ )
1045 wxLogTrace("propgrid", wxS("col%i: %i"), i
, m_colWidths
[i
]);
1048 // Auto center splitter
1049 if ( !m_dontCenterSplitter
&& m_colWidths
.size() == 2 )
1051 float centerX
= (float)(pg
->m_width
/2);
1054 if ( m_fSplitterX
< 0.0 )
1056 splitterX
= centerX
;
1058 else if ( widthChange
)
1060 //float centerX = float(pg->GetSize().x) * 0.5;
1063 splitterX
= m_fSplitterX
+ (float(widthChange
) * 0.5);
1064 float deviation
= fabs(centerX
- splitterX
);
1066 // If deviating from center, adjust towards it
1067 if ( deviation
> 20.0 )
1069 if ( splitterX
> centerX
)
1077 // No width change, just keep sure we keep splitter position intact
1078 splitterX
= m_fSplitterX
;
1079 float deviation
= fabs(centerX
- splitterX
);
1080 if ( deviation
> 50.0 )
1082 splitterX
= centerX
;
1086 DoSetSplitterPosition((int)splitterX
, 0,
1087 wxPG_SPLITTER_FROM_AUTO_CENTER
);
1089 m_fSplitterX
= splitterX
; // needed to retain accuracy
1093 void wxPropertyGridPageState::SetColumnCount( int colCount
)
1095 wxASSERT( colCount
>= 2 );
1096 m_colWidths
.SetCount( colCount
, wxPG_DRAG_MARGIN
);
1097 if ( m_colWidths
.size() > (unsigned int)colCount
)
1098 m_colWidths
.RemoveAt( m_colWidths
.size()-1,
1099 m_colWidths
.size() - colCount
);
1101 if ( m_pPropGrid
->GetState() == this )
1102 m_pPropGrid
->RecalculateVirtualSize();
1104 CheckColumnWidths();
1107 // Returns column index, -1 for margin
1108 int wxPropertyGridPageState::HitTestH( int x
, int* pSplitterHit
, int* pSplitterHitOffset
) const
1110 int cx
= GetGrid()->m_marginWidth
;
1112 int prevSplitter
= -1;
1117 if ( col
>= (int)m_colWidths
.size() )
1123 cx
+= m_colWidths
[col
];
1126 // Near prev. splitter
1129 int diff
= x
- prevSplitter
;
1130 if ( abs(diff
) < wxPG_SPLITTERX_DETECTMARGIN1
)
1132 *pSplitterHit
= col
- 1;
1133 *pSplitterHitOffset
= diff
;
1138 // Near next splitter
1139 int nextSplitter
= cx
;
1140 if ( col
< (int)(m_colWidths
.size()-1) )
1142 int diff
= x
- nextSplitter
;
1143 if ( abs(diff
) < wxPG_SPLITTERX_DETECTMARGIN1
)
1145 *pSplitterHit
= col
;
1146 *pSplitterHitOffset
= diff
;
1155 bool wxPropertyGridPageState::ArePropertiesAdjacent( wxPGProperty
* prop1
,
1156 wxPGProperty
* prop2
,
1157 int iterFlags
) const
1159 const wxPGProperty
* ap1
=
1160 wxPropertyGridConstIterator::OneStep(this,
1164 if ( ap1
&& ap1
== prop2
)
1167 const wxPGProperty
* ap2
=
1168 wxPropertyGridConstIterator::OneStep(this,
1172 if ( ap2
&& ap2
== prop2
)
1178 // -----------------------------------------------------------------------
1179 // wxPropertyGridPageState property value setting and getting
1180 // -----------------------------------------------------------------------
1182 bool wxPropertyGridPageState::DoSetPropertyValueString( wxPGProperty
* p
, const wxString
& value
)
1186 int flags
= wxPG_REPORT_ERROR
|wxPG_FULL_VALUE
|wxPG_PROGRAMMATIC_VALUE
;
1188 wxVariant variant
= p
->GetValueRef();
1191 if ( p
->GetMaxLength() <= 0 )
1192 res
= p
->StringToValue( variant
, value
, flags
);
1194 res
= p
->StringToValue( variant
, value
.Mid(0,p
->GetMaxLength()), flags
);
1198 p
->SetValue(variant
);
1199 if ( p
== m_pPropGrid
->GetSelection() &&
1200 this == m_pPropGrid
->GetState() )
1201 m_pPropGrid
->RefreshEditor();
1209 // -----------------------------------------------------------------------
1211 bool wxPropertyGridPageState::DoSetPropertyValue( wxPGProperty
* p
, wxVariant
& value
)
1216 if ( p
== m_pPropGrid
->GetSelection() &&
1217 this == m_pPropGrid
->GetState() )
1218 m_pPropGrid
->RefreshEditor();
1225 // -----------------------------------------------------------------------
1227 bool wxPropertyGridPageState::DoSetPropertyValueWxObjectPtr( wxPGProperty
* p
, wxObject
* value
)
1231 // wnd_primary has to be given so the control can be updated as well.
1233 DoSetPropertyValue(p
, v
);
1239 // -----------------------------------------------------------------------
1240 // wxPropertyGridPageState property operations
1241 // -----------------------------------------------------------------------
1243 bool wxPropertyGridPageState::DoIsPropertySelected( wxPGProperty
* prop
) const
1245 const wxArrayPGProperty
& selection
= m_selection
;
1247 for ( unsigned int i
=0; i
<selection
.size(); i
++ )
1249 if ( selection
[i
] == prop
)
1256 // -----------------------------------------------------------------------
1258 void wxPropertyGridPageState::DoRemoveFromSelection( wxPGProperty
* prop
)
1260 for ( unsigned int i
=0; i
<m_selection
.size(); i
++ )
1262 if ( m_selection
[i
] == prop
)
1264 wxPropertyGrid
* pg
= m_pPropGrid
;
1265 if ( i
== 0 && pg
->GetState() == this )
1267 // If first item (ie. one with the active editor) was
1268 // deselected, then we need to take some extra measures.
1269 wxArrayPGProperty sel
= m_selection
;
1270 sel
.erase( sel
.begin() + i
);
1272 wxPGProperty
* newFirst
;
1278 pg
->DoSelectProperty(newFirst
,
1279 wxPG_SEL_DONT_SEND_EVENT
);
1287 m_selection
.erase( m_selection
.begin() + i
);
1294 // -----------------------------------------------------------------------
1296 bool wxPropertyGridPageState::DoCollapse( wxPGProperty
* p
)
1298 wxCHECK_MSG( p
, false, wxT("invalid property id") );
1300 if ( !p
->GetChildCount() ) return false;
1302 if ( !p
->IsExpanded() ) return false;
1304 p
->SetExpanded(false);
1306 VirtualHeightChanged();
1311 // -----------------------------------------------------------------------
1313 bool wxPropertyGridPageState::DoExpand( wxPGProperty
* p
)
1315 wxCHECK_MSG( p
, false, wxT("invalid property id") );
1317 if ( !p
->GetChildCount() ) return false;
1319 if ( p
->IsExpanded() ) return false;
1321 p
->SetExpanded(true);
1323 VirtualHeightChanged();
1328 // -----------------------------------------------------------------------
1330 bool wxPropertyGridPageState::DoSelectProperty( wxPGProperty
* p
, unsigned int flags
)
1332 if ( this == m_pPropGrid
->GetState() )
1333 return m_pPropGrid
->DoSelectProperty( p
, flags
);
1339 // -----------------------------------------------------------------------
1341 bool wxPropertyGridPageState::DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
)
1344 p
->ClearFlag( wxPG_PROP_HIDDEN
);
1346 p
->SetFlag( wxPG_PROP_HIDDEN
);
1348 if ( flags
& wxPG_RECURSE
)
1351 for ( i
= 0; i
< p
->GetChildCount(); i
++ )
1352 DoHideProperty(p
->Item(i
), hide
, flags
| wxPG_RECURSE_STARTS
);
1355 VirtualHeightChanged();
1360 // -----------------------------------------------------------------------
1362 bool wxPropertyGridPageState::DoEnableProperty( wxPGProperty
* p
, bool enable
)
1368 if ( !(p
->m_flags
& wxPG_PROP_DISABLED
) )
1373 p
->m_flags
&= ~(wxPG_PROP_DISABLED
);
1377 if ( p
->m_flags
& wxPG_PROP_DISABLED
)
1382 p
->m_flags
|= wxPG_PROP_DISABLED
;
1386 // Apply same to sub-properties as well
1388 for ( i
= 0; i
< p
->GetChildCount(); i
++ )
1389 DoEnableProperty( p
->Item(i
), enable
);
1396 // -----------------------------------------------------------------------
1397 // wxPropertyGridPageState wxVariant related routines
1398 // -----------------------------------------------------------------------
1400 // Returns list of wxVariant objects (non-categories and non-sub-properties only).
1401 // Never includes sub-properties (unless they are parented by wxParentProperty).
1402 wxVariant
wxPropertyGridPageState::DoGetPropertyValues( const wxString
& listname
,
1403 wxPGProperty
* baseparent
,
1406 wxPGProperty
* pwc
= (wxPGProperty
*) baseparent
;
1408 // Root is the default base-parent.
1412 wxVariantList tempList
;
1413 wxVariant
v( tempList
, listname
);
1415 if ( pwc
->GetChildCount() )
1417 if ( flags
& wxPG_KEEP_STRUCTURE
)
1419 wxASSERT( !pwc
->HasFlag(wxPG_PROP_AGGREGATE
) );
1422 for ( i
=0; i
<pwc
->GetChildCount(); i
++ )
1424 wxPGProperty
* p
= pwc
->Item(i
);
1425 if ( !p
->GetChildCount() || p
->HasFlag(wxPG_PROP_AGGREGATE
) )
1427 wxVariant variant
= p
->GetValue();
1428 variant
.SetName( p
->GetBaseName() );
1429 v
.Append( variant
);
1433 v
.Append( DoGetPropertyValues(p
->m_name
,p
,flags
|wxPG_KEEP_STRUCTURE
) );
1435 if ( (flags
& wxPG_INC_ATTRIBUTES
) && p
->m_attributes
.GetCount() )
1436 v
.Append( p
->GetAttributesAsList() );
1441 wxPropertyGridConstIterator
it( this, wxPG_ITERATE_DEFAULT
, pwc
->Item(0) );
1442 it
.SetBaseParent( pwc
);
1444 for ( ; !it
.AtEnd(); it
.Next() )
1446 const wxPGProperty
* p
= it
.GetProperty();
1448 // Use a trick to ignore wxParentProperty itself, but not its sub-properties.
1449 if ( !p
->GetChildCount() || p
->HasFlag(wxPG_PROP_AGGREGATE
) )
1451 wxVariant variant
= p
->GetValue();
1452 variant
.SetName( p
->GetName() );
1453 v
.Append( variant
);
1454 if ( (flags
& wxPG_INC_ATTRIBUTES
) && p
->m_attributes
.GetCount() )
1455 v
.Append( p
->GetAttributesAsList() );
1464 // -----------------------------------------------------------------------
1466 void wxPropertyGridPageState::DoSetPropertyValues( const wxVariantList
& list
, wxPGProperty
* defaultCategory
)
1468 unsigned char origFrozen
= 1;
1470 if ( m_pPropGrid
->GetState() == this )
1472 origFrozen
= m_pPropGrid
->m_frozen
;
1473 if ( !origFrozen
) m_pPropGrid
->Freeze();
1476 wxPropertyCategory
* use_category
= (wxPropertyCategory
*)defaultCategory
;
1478 if ( !use_category
)
1479 use_category
= (wxPropertyCategory
*)m_properties
;
1481 // Let's iterate over the list of variants.
1482 wxVariantList::const_iterator node
;
1483 int numSpecialEntries
= 0;
1486 // Second pass for special entries
1487 for ( node
= list
.begin(); node
!= list
.end(); ++node
)
1489 wxVariant
*current
= (wxVariant
*)*node
;
1491 // Make sure it is wxVariant.
1492 wxASSERT( current
);
1493 wxASSERT( wxStrcmp(current
->GetClassInfo()->GetClassName(),wxT("wxVariant")) == 0 );
1495 const wxString
& name
= current
->GetName();
1496 if ( name
.length() > 0 )
1499 // '@' signified a special entry
1500 if ( name
[0] == wxS('@') )
1502 numSpecialEntries
++;
1506 wxPGProperty
* foundProp
= BaseGetPropertyByName(name
);
1509 wxPGProperty
* p
= foundProp
;
1511 // If it was a list, we still have to go through it.
1512 if ( wxStrcmp(current
->GetType(), wxS("list")) == 0 )
1514 DoSetPropertyValues( current
->GetList(),
1515 p
->IsCategory()?p
:(NULL
)
1520 wxASSERT_LEVEL_2_MSG(
1521 wxStrcmp(current
->GetType(), p
->GetValue().GetType()) == 0,
1523 wxS("setting value of property \"%s\" from variant"),
1524 p
->GetName().c_str())
1527 p
->SetValue(*current
);
1533 if ( current
->GetType() != wxS("list") )
1539 // Yes, it is; create a sub category and append contents there.
1540 wxPGProperty
* newCat
= DoInsert(use_category
,-1,new wxPropertyCategory(current
->GetName(),wxPG_LABEL
));
1541 DoSetPropertyValues( current
->GetList(), newCat
);
1548 if ( numSpecialEntries
)
1550 for ( node
= list
.begin(); node
!= list
.end(); ++node
)
1552 wxVariant
*current
= (wxVariant
*)*node
;
1554 const wxString
& name
= current
->GetName();
1555 if ( name
.length() > 0 )
1558 // '@' signified a special entry
1559 if ( name
[0] == wxS('@') )
1561 numSpecialEntries
--;
1563 size_t pos2
= name
.rfind(wxS('@'));
1564 if ( pos2
> 0 && pos2
< (name
.size()-1) )
1566 wxString propName
= name
.substr(1, pos2
-1);
1567 wxString entryType
= name
.substr(pos2
+1, wxString::npos
);
1569 if ( entryType
== wxS("attr") )
1572 // List of attributes
1573 wxPGProperty
* foundProp
= BaseGetPropertyByName(propName
);
1576 wxASSERT( current
->GetType() == wxPG_VARIANT_TYPE_LIST
);
1578 wxVariantList
& list2
= current
->GetList();
1579 wxVariantList::const_iterator node2
;
1581 for ( node2
= list2
.begin(); node2
!= list2
.end(); ++node2
)
1583 wxVariant
*attr
= (wxVariant
*)*node2
;
1584 foundProp
->SetAttribute( attr
->GetName(), *attr
);
1589 // ERROR: No such property: 'propName'
1595 // ERROR: Special entry requires name of format @<propname>@<entrytype>
1600 if ( !numSpecialEntries
)
1607 m_pPropGrid
->Thaw();
1609 if ( this == m_pPropGrid
->GetState() )
1610 m_pPropGrid
->RefreshEditor();
1615 // -----------------------------------------------------------------------
1616 // wxPropertyGridPageState property adding and removal
1617 // -----------------------------------------------------------------------
1619 bool wxPropertyGridPageState::PrepareToAddItem( wxPGProperty
* property
,
1620 wxPGProperty
* scheduledParent
)
1622 wxPropertyGrid
* propGrid
= m_pPropGrid
;
1624 // This will allow better behavior.
1625 if ( scheduledParent
== m_properties
)
1626 scheduledParent
= NULL
;
1628 if ( scheduledParent
&& !scheduledParent
->IsCategory() )
1630 wxASSERT_MSG( property
->GetBaseName().length(),
1631 "Property's children must have unique, non-empty names within their scope" );
1634 property
->m_parentState
= this;
1636 if ( property
->IsCategory() )
1639 // Parent of a category must be either root or another category
1640 // (otherwise Bad Things might happen).
1641 wxASSERT_MSG( scheduledParent
== NULL
||
1642 scheduledParent
== m_properties
||
1643 scheduledParent
->IsCategory(),
1644 wxT("Parent of a category must be either root or another category."));
1646 // If we already have category with same name, delete given property
1647 // and use it instead as most recent caption item.
1648 wxPGProperty
* found_id
= BaseGetPropertyByName( property
->GetBaseName() );
1651 wxPropertyCategory
* pwc
= (wxPropertyCategory
*) found_id
;
1652 if ( pwc
->IsCategory() ) // Must be a category.
1655 m_currentCategory
= pwc
;
1662 // Warn for identical names in debug mode.
1663 if ( BaseGetPropertyByName(property
->GetName()) &&
1664 (!scheduledParent
|| scheduledParent
->IsCategory()) )
1666 wxFAIL_MSG(wxString::Format(
1667 "wxPropertyGrid item with name \"%s\" already exists",
1668 property
->GetName()));
1670 wxPGGlobalVars
->m_warnings
++;
1672 #endif // wxDEBUG_LEVEL
1674 // Make sure nothing is selected.
1676 propGrid
->ClearSelection(false);
1678 // NULL parent == root parent
1679 if ( !scheduledParent
)
1680 scheduledParent
= DoGetRoot();
1682 property
->m_parent
= scheduledParent
;
1684 property
->InitAfterAdded(this, propGrid
);
1686 if ( property
->IsCategory() )
1688 wxPropertyCategory
* pc
= wxStaticCast(property
, wxPropertyCategory
);
1690 m_currentCategory
= pc
;
1692 // Calculate text extent for category caption
1694 pc
->CalculateTextExtent(propGrid
, propGrid
->GetCaptionFont());
1700 // -----------------------------------------------------------------------
1702 wxPGProperty
* wxPropertyGridPageState::DoAppend( wxPGProperty
* property
)
1704 wxPropertyCategory
* cur_cat
= m_currentCategory
;
1705 if ( property
->IsCategory() )
1708 return DoInsert( cur_cat
, -1, property
);
1711 // -----------------------------------------------------------------------
1713 wxPGProperty
* wxPropertyGridPageState::DoInsert( wxPGProperty
* parent
, int index
, wxPGProperty
* property
)
1716 parent
= m_properties
;
1718 wxCHECK_MSG( !parent
->HasFlag(wxPG_PROP_AGGREGATE
),
1720 wxT("when adding properties to fixed parents, use BeginAddChildren and EndAddChildren.") );
1722 bool res
= PrepareToAddItem( property
, (wxPropertyCategory
*)parent
);
1724 // PrepareToAddItem() may just decide to use use current category
1725 // instead of adding new one.
1727 return m_currentCategory
;
1729 bool parentIsRoot
= parent
->IsRoot();
1730 bool parentIsCategory
= parent
->IsCategory();
1732 // Note that item must be added into current mode later.
1734 // If parent is wxParentProperty, just stick it in...
1735 // If parent is root (m_properties), then...
1736 // In categoric mode: Add as last item in m_abcArray (if not category).
1737 // Add to given index in m_regularArray.
1738 // In non-cat mode: Add as last item in m_regularArray.
1739 // Add to given index in m_abcArray.
1740 // If parent is category, then...
1741 // 1) Add to given category in given index.
1742 // 2) Add as last item in m_abcArray.
1744 if ( m_properties
== &m_regularArray
)
1746 // We are currently in Categorized mode
1748 // Only add non-categories to m_abcArray.
1749 if ( m_abcArray
&& !property
->IsCategory() &&
1750 (parentIsCategory
|| parentIsRoot
) )
1752 m_abcArray
->DoAddChild( property
, -1, false );
1755 // Add to current mode.
1756 parent
->DoAddChild( property
, index
, true );
1760 // We are currently in Non-categorized/Alphabetic mode
1762 if ( parentIsCategory
)
1763 // Parent is category.
1764 parent
->DoAddChild( property
, index
, false );
1765 else if ( parentIsRoot
)
1767 m_regularArray
.DoAddChild( property
, -1, false );
1769 // Add to current mode
1770 if ( !property
->IsCategory() )
1771 m_abcArray
->DoAddChild( property
, index
, true );
1775 if ( property
->IsCategory() )
1777 // This is a category caption item.
1779 // Last caption is not the bottom one (this info required by append)
1780 m_lastCaptionBottomnest
= 0;
1783 // Only add name to hashmap if parent is root or category
1784 if ( property
->m_name
.length() &&
1785 (parentIsCategory
|| parentIsRoot
) )
1786 m_dictName
[property
->m_name
] = (void*) property
;
1788 VirtualHeightChanged();
1790 property
->UpdateParentValues();
1797 // -----------------------------------------------------------------------
1799 void wxPropertyGridPageState::DoDelete( wxPGProperty
* item
, bool doDelete
)
1801 wxCHECK_RET( item
->GetParent(),
1802 wxT("this property was already deleted") );
1804 wxCHECK_RET( item
!= &m_regularArray
&& item
!= m_abcArray
,
1805 wxT("wxPropertyGrid: Do not attempt to remove the root item.") );
1807 unsigned int indinparent
= item
->GetIndexInParent();
1809 wxPGProperty
* pwc
= (wxPGProperty
*)item
;
1810 wxPGProperty
* parent
= item
->GetParent();
1812 wxCHECK_RET( !parent
->HasFlag(wxPG_PROP_AGGREGATE
),
1813 wxT("wxPropertyGrid: Do not attempt to remove sub-properties.") );
1815 wxASSERT( item
->GetParentState() == this );
1817 wxPropertyGrid
* pg
= GetGrid();
1819 if ( DoIsPropertySelected(item
) )
1821 if ( pg
&& pg
->GetState() == this )
1823 pg
->DoRemoveFromSelection(item
,
1824 wxPG_SEL_DELETING
|wxPG_SEL_NOVALIDATE
);
1828 DoRemoveFromSelection(item
);
1832 item
->SetFlag(wxPG_PROP_BEING_DELETED
);
1835 if ( item
->GetChildCount() && !item
->HasFlag(wxPG_PROP_AGGREGATE
) )
1837 // deleting a category
1838 if ( item
->IsCategory() )
1840 if ( pwc
== m_currentCategory
)
1841 m_currentCategory
= NULL
;
1844 item
->DeleteChildren();
1847 if ( !IsInNonCatMode() )
1849 // categorized mode - non-categorized array
1851 // Remove from non-cat array
1852 if ( !item
->IsCategory() &&
1853 (parent
->IsCategory() || parent
->IsRoot()) )
1856 m_abcArray
->RemoveChild(item
);
1859 // categorized mode - categorized array
1860 wxArrayPGProperty
& parentsChildren
= parent
->m_children
;
1861 parentsChildren
.erase( parentsChildren
.begin() + indinparent
);
1862 item
->m_parent
->FixIndicesOfChildren();
1866 // non-categorized mode - categorized array
1868 // We need to find location of item.
1869 wxPGProperty
* cat_parent
= &m_regularArray
;
1870 int cat_index
= m_regularArray
.GetChildCount();
1872 for ( i
= 0; i
< m_regularArray
.GetChildCount(); i
++ )
1874 wxPGProperty
* p
= m_regularArray
.Item(i
);
1875 if ( p
== item
) { cat_index
= i
; break; }
1876 if ( p
->IsCategory() )
1878 int subind
= ((wxPGProperty
*)p
)->Index(item
);
1879 if ( subind
!= wxNOT_FOUND
)
1881 cat_parent
= ((wxPGProperty
*)p
);
1887 cat_parent
->m_children
.erase(cat_parent
->m_children
.begin()+cat_index
);
1889 // non-categorized mode - non-categorized array
1890 if ( !item
->IsCategory() )
1892 wxASSERT( item
->m_parent
== m_abcArray
);
1893 wxArrayPGProperty
& parentsChildren
= item
->m_parent
->m_children
;
1894 parentsChildren
.erase(parentsChildren
.begin() + indinparent
);
1895 item
->m_parent
->FixIndicesOfChildren(indinparent
);
1899 if ( item
->GetBaseName().length() &&
1900 (parent
->IsCategory() || parent
->IsRoot()) )
1901 m_dictName
.erase(item
->GetBaseName());
1903 // We need to clear parent grid's m_propHover, if it matches item
1904 if ( pg
&& pg
->m_propHover
== item
)
1905 pg
->m_propHover
= NULL
;
1907 // We can actually delete it now
1911 m_itemsAdded
= 1; // Not a logical assignment (but required nonetheless).
1913 VirtualHeightChanged();
1916 // -----------------------------------------------------------------------
1918 #endif // wxUSE_PROPGRID