Contains low-level property page information (properties, column widths, etc) of a single wxPropertyGrid or single wxPropertyGridPage.
Generally you should not use this class directly, but instead member functions in wxPropertyGridInterface, wxPropertyGrid, wxPropertyGridPage, and wxPropertyGridManager.
<>< =''>:</>&;&;< =''>\ </></>
|
| | wxPropertyGridPageState () |
| | Default constructor.
|
| |
| virtual | ~wxPropertyGridPageState () |
| | Destructor.
|
| |
| void | CheckColumnWidths (int widthChange=0) |
| | Makes sure all columns have minimum width.
|
| |
| virtual void | DoDelete (wxPGProperty *item, bool doDelete=true) |
| | Override this member function to add custom behaviour on property deletion.
|
| |
| wxSize | DoFitColumns (bool allowGridResize=false) |
| |
| wxPGProperty * | DoGetItemAtY (int y) const |
| |
| virtual wxPGProperty * | DoInsert (wxPGProperty *parent, int index, wxPGProperty *property) |
| | Override this member function to add custom behaviour on property insertion.
|
| |
| virtual void | DoSetSplitterPosition (int pos, int splitterColumn=0, int flags=0) |
| | This needs to be overridden in grid used the manager so that splitter changes can be propagated to other pages.
|
| |
| bool | EnableCategories (bool enable) |
| |
| void | EnsureVirtualHeight () |
| | Make sure virtual height is up-to-date.
|
| |
| unsigned int | GetVirtualHeight () const |
| | Returns (precalculated) height of contained visible properties.
|
| |
| unsigned int | GetVirtualHeight () |
| | Returns (precalculated) height of contained visible properties.
|
| |
| unsigned int | GetActualVirtualHeight () const |
| | Returns actual height of contained visible properties.
|
| |
| unsigned int | GetColumnCount () const |
| |
| int | GetColumnMinWidth (int column) const |
| |
| int | GetColumnWidth (unsigned int column) const |
| |
| wxPropertyGrid * | GetGrid () const |
| |
| wxPGProperty * | GetLastItem (int flags=wxPG_ITERATE_DEFAULT) |
| | Returns last item which could be iterated using given flags.
|
| |
| const wxPGProperty * | GetLastItem (int flags=wxPG_ITERATE_DEFAULT) const |
| |
| wxPGProperty * | GetSelection () const |
| | Returns currently selected property.
|
| |
| void | DoSetSelection (wxPGProperty *prop) |
| |
| bool | DoClearSelection () |
| |
| void | DoRemoveFromSelection (wxPGProperty *prop) |
| |
| void | DoSetColumnProportion (unsigned int column, int proportion) |
| |
| int | DoGetColumnProportion (unsigned int column) const |
| |
| void | ResetColumnSizes (int setSplitterFlags) |
| |
| wxPropertyCategory * | GetPropertyCategory (const wxPGProperty *p) const |
| |
| wxPGProperty * | GetPropertyByLabel (const wxString &name, wxPGProperty *parent=NULL) const |
| |
| wxVariant | DoGetPropertyValues (const wxString &listname, wxPGProperty *baseparent, long flags) const |
| |
| wxPGProperty * | DoGetRoot () const |
| |
| void | DoSetPropertyName (wxPGProperty *p, const wxString &newName) |
| |
| int | GetVirtualWidth () const |
| |
| int | GetColumnFitWidth (wxClientDC &dc, wxPGProperty *pwc, unsigned int col, bool subProps) const |
| | Returns minimal width for given column so that all images and texts will fit entirely.
|
| |
| int | GetColumnFullWidth (wxClientDC &dc, wxPGProperty *p, unsigned int col) |
| |
| wxPropertyGridHitTestResult | HitTest (const wxPoint &pt) const |
| | Returns information about arbitrary position in the grid.
|
| |
| bool | IsDisplayed () const |
| | Returns true if page is visibly displayed.
|
| |
| bool | IsInNonCatMode () const |
| |
| void | DoLimitPropertyEditing (wxPGProperty *p, bool limit=true) |
| |
| bool | DoSelectProperty (wxPGProperty *p, unsigned int flags=0) |
| |
| void | OnClientWidthChange (int newWidth, int widthChange, bool fromOnResize=false) |
| | widthChange is non-client.
|
| |
| void | RecalculateVirtualHeight () |
| | Recalculates m_virtualHeight.
|
| |
| void | SetColumnCount (int colCount) |
| |
| void | PropagateColSizeDec (int column, int decrease, int dir) |
| |
| bool | DoHideProperty (wxPGProperty *p, bool hide, int flags=wxPG_RECURSE) |
| |
| bool | DoSetPropertyValueString (wxPGProperty *p, const wxString &value) |
| |
| bool | DoSetPropertyValue (wxPGProperty *p, wxVariant &value) |
| |
| bool | DoSetPropertyValueWxObjectPtr (wxPGProperty *p, wxObject *value) |
| |
| void | DoSetPropertyValues (const wxVariantList &list, wxPGProperty *default_category) |
| |
| void | SetSplitterLeft (bool subProps=false) |
| |
| void | SetVirtualWidth (int width) |
| | Set virtual width for this particular page.
|
| |
| void | DoSortChildren (wxPGProperty *p, int flags=0) |
| |
| void | DoSort (int flags=0) |
| |
| bool | PrepareAfterItemsAdded () |
| |
| void | VirtualHeightChanged () |
| | Called after virtual height needs to be recalculated.
|
| |
| wxPGProperty * | DoAppend (wxPGProperty *property) |
| | Base append.
|
| |
| wxPGProperty * | BaseGetPropertyByName (const wxString &name) const |
| | Returns property by its name.
|
| |
| void | DoClear () |
| | Called in, for example, wxPropertyGrid::Clear.
|
| |
| bool | DoIsPropertySelected (wxPGProperty *prop) const |
| |
| bool | DoCollapse (wxPGProperty *p) |
| |
| bool | DoExpand (wxPGProperty *p) |
| |
| void | CalculateFontAndBitmapStuff (int vspacing) |
| |