Classes | |
| class | wxDataViewModel |
| wxDataViewModel is the base class for all data model to be displayed by a wxDataViewCtrl. More... | |
| class | wxDataViewIndexListModel |
| wxDataViewIndexListModel is a specialized data model which lets you address an item by its position (row) rather than its wxDataViewItem (which you can obtain from this class). More... | |
| class | wxDataViewVirtualListModel |
| wxDataViewVirtualListModel is a specialized data model which lets you address an item by its position (row) rather than its wxDataViewItem and as such offers the exact same interface as wxDataViewIndexListModel. More... | |
| class | wxDataViewItemAttr |
| This class is used to indicate to a wxDataViewCtrl that a certain item (see wxDataViewItem) has extra font attributes for its renderer. More... | |
| class | wxDataViewItem |
| wxDataViewItem is a small opaque class that represents an item in a wxDataViewCtrl in a persistent way, i.e. More... | |
| class | wxDataViewCtrl |
| wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or both. More... | |
| class | wxDataViewModelNotifier |
| A wxDataViewModelNotifier instance is owned by a wxDataViewModel and mirrors its notification interface. More... | |
| class | wxDataViewRenderer |
| This class is used by wxDataViewCtrl to render the individual cells. More... | |
| class | wxDataViewTextRenderer |
| wxDataViewTextRenderer is used for rendering text. More... | |
| class | wxDataViewIconTextRenderer |
| The wxDataViewIconTextRenderer class is used to display text with a small icon next to it as it is typically done in a file manager. More... | |
| class | wxDataViewProgressRenderer |
| This class is used by wxDataViewCtrl to render progress bars. More... | |
| class | wxDataViewSpinRenderer |
| This is a specialized renderer for rendering integer values. More... | |
| class | wxDataViewToggleRenderer |
| This class is used by wxDataViewCtrl to render toggle controls. More... | |
| class | wxDataViewChoiceRenderer |
| This class is used by wxDataViewCtrl to render choice controls. More... | |
| class | wxDataViewDateRenderer |
| This class is used by wxDataViewCtrl to render calendar controls. More... | |
| class | wxDataViewCustomRenderer |
| You need to derive a new class from wxDataViewCustomRenderer in order to write a new renderer. More... | |
| class | wxDataViewBitmapRenderer |
| This class is used by wxDataViewCtrl to render bitmap controls. More... | |
| class | wxDataViewColumn |
| This class represents a column in a wxDataViewCtrl. More... | |
| class | wxDataViewListCtrl |
| This class is a wxDataViewCtrl which internally uses a wxDataViewListStore and forwards most of its API to that class. More... | |
| class | wxDataViewTreeCtrl |
| This class is a wxDataViewCtrl which internally uses a wxDataViewTreeStore and forwards most of its API to that class. More... | |
| class | wxDataViewListStore |
| wxDataViewListStore is a specialised wxDataViewModel for storing a simple table of data. More... | |
| class | wxDataViewTreeStore |
| wxDataViewTreeStore is a specialised wxDataViewModel for stroing simple trees very much like wxTreeCtrl does and it offers a similar API. More... | |
| class | wxDataViewIconText |
| wxDataViewIconText is used by wxDataViewIconTextRenderer for data transfer. More... | |
| class | wxDataViewEvent |
| This is the event class for the wxDataViewCtrl notifications. More... | |
Enumerations | |
| enum | wxDataViewCellMode { wxDATAVIEW_CELL_INERT, wxDATAVIEW_CELL_ACTIVATABLE, wxDATAVIEW_CELL_EDITABLE } |
The mode of a data-view cell; see wxDataViewRenderer for more info. More... | |
| enum | wxDataViewCellRenderState { wxDATAVIEW_CELL_SELECTED = 1, wxDATAVIEW_CELL_PRELIT = 2, wxDATAVIEW_CELL_INSENSITIVE = 4, wxDATAVIEW_CELL_FOCUSED = 8 } |
The values of this enum controls how a wxDataViewRenderer should display its contents in a cell. More... | |
| enum | wxDataViewColumnFlags { wxDATAVIEW_COL_RESIZABLE = 1, wxDATAVIEW_COL_SORTABLE = 2, wxDATAVIEW_COL_REORDERABLE = 4, wxDATAVIEW_COL_HIDDEN = 8 } |
The flags used by wxDataViewColumn. More... | |
| enum wxDataViewCellMode |
The mode of a data-view cell; see wxDataViewRenderer for more info.
The values of this enum controls how a wxDataViewRenderer should display its contents in a cell.
The flags used by wxDataViewColumn.
Can be combined together.
|
[ top ] |