]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dataview.h
Header listed twice removed.
[wxWidgets.git] / include / wx / gtk / dataview.h
index 47d9a026b5f7e73c1008135d7badebb8b1c2fd44..9afb521ac9ab87e4e8d0d0597454889c7b77a78a 100644 (file)
@@ -171,11 +171,17 @@ protected:
 class WXDLLIMPEXP_CORE wxDataViewColumn: public wxDataViewColumnBase
 {
 public:
-    wxDataViewColumn( const wxString &title, wxDataViewCell *cell, size_t model_column, int flags = 0 );
+    wxDataViewColumn( const wxString &title, wxDataViewCell *cell, size_t model_column,
+        int fixed_width = 80, wxDataViewColumnSizing sizing = wxDATAVIEW_COL_WIDTH_FIXED, int flags = 0 );
     virtual ~wxDataViewColumn();
 
     virtual void SetTitle( const wxString &title );
 
+    virtual int GetWidth();
+    
+    virtual void SetFixedWidth( int width );
+    virtual int GetFixedWidth();
+    
     // implementation
     void* GetGtkHandle() { return m_column; }
 
@@ -221,7 +227,9 @@ public:
     
 private:
     friend class wxDataViewCtrlDC;
-    GtkWidget       *m_treeview;
+    friend class wxGtkDataViewListModelNotifier;
+    GtkWidget                   *m_treeview;
+    wxDataViewListModelNotifier *m_notifier;
     
 private:
     DECLARE_DYNAMIC_CLASS(wxDataViewCtrl)