added wxDataViewCell

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37675 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-02-23 02:04:46 +00:00
parent 8ab9a53699
commit 6842a71a5b
4 changed files with 152 additions and 46 deletions

View File

@@ -21,6 +21,40 @@
class WXDLLIMPEXP_CORE wxDataViewCtrl;
// ---------------------------------------------------------
// wxDataViewCell
// ---------------------------------------------------------
class wxDataViewCell: public wxDataViewCellBase
{
public:
wxDataViewCell( const wxString &varianttype, wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
// implementation
void* GetGtkHandle() { return m_renderer; }
protected:
// holds the GTK handle
void* m_renderer;
protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCell)
};
// ---------------------------------------------------------
// wxDataViewTextCell
// ---------------------------------------------------------
class wxDataViewTextCell: public wxDataViewCell
{
public:
wxDataViewTextCell( const wxString &varianttype = wxT("string"),
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextCell)
};
// ---------------------------------------------------------
// wxDataViewColumn
// ---------------------------------------------------------
@@ -28,8 +62,7 @@ class WXDLLIMPEXP_CORE wxDataViewCtrl;
class WXDLLIMPEXP_CORE wxDataViewColumn: public wxDataViewColumnBase
{
public:
wxDataViewColumn( const wxString &title, wxDataViewCtrl *ctrl,
wxDataViewColumnType kind, int flags = 0 );
wxDataViewColumn( const wxString &title, wxDataViewCell *cell, size_t model_column, int flags = 0 );
virtual ~wxDataViewColumn();
virtual void SetTitle( const wxString &title );
@@ -38,6 +71,7 @@ public:
void* GetGtkHandle() { return m_column; }
private:
// holds the GTK handle
void* m_column;
protected: