]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dataview.h
Add class factories for filter streams. Also filters now follow the convention
[wxWidgets.git] / include / wx / gtk / dataview.h
index 2dac9cc212b145b720bcc565d059ccb64d97f1d8..6965502b28dd901b5f753fbb2103259a09c63dee 100644 (file)
@@ -196,7 +196,14 @@ public:
 
     virtual void SetTitle( const wxString &title );
     virtual void SetBitmap( const wxBitmap &bitmap );
+
+    virtual void SetAlignment( wxAlignment align );
     
+    virtual void SetSortable( bool sortable );
+    virtual bool GetSortable();
+    virtual void SetSortOrder( bool ascending );
+    virtual bool IsSortOrderAscending();
+
     virtual int GetWidth();
     
     virtual void SetFixedWidth( int width );
@@ -208,7 +215,12 @@ public:
 private:
     // holds the GTK handle
     void*   m_column;
-
+    
+    // delayed connection to mouse events
+    friend class wxDataViewCtrl;
+    void OnInternalIdle();
+    bool    m_isConnected;  
+    
 protected:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn)
 };
@@ -254,13 +266,15 @@ public:
     virtual int GetSelection() const;
     virtual int GetSelections(wxArrayInt& aSelections) const;
     
-    
 private:
     friend class wxDataViewCtrlDC;
+    friend class wxDataViewColumn;
     friend class wxGtkDataViewListModelNotifier;
     GtkWidget                   *m_treeview;
     wxDataViewListModelNotifier *m_notifier;
     
+    virtual void OnInternalIdle();
+    
 private:
     DECLARE_DYNAMIC_CLASS(wxDataViewCtrl)
     DECLARE_NO_COPY_CLASS(wxDataViewCtrl)