]> git.saurik.com Git - wxWidgets.git/commitdiff
Mention wxDataViewRenderer Set/GetAlignment
authorRobert Roebling <robert@roebling.de>
Sun, 6 Apr 2008 22:59:15 +0000 (22:59 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 6 Apr 2008 22:59:15 +0000 (22:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53065 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/dataview.h

index 7c1be3f2b5de8f7feceb280efa832df7a991d30e..8dcfc4840a8aec75430bde0f4267898e4d70c9d5 100644 (file)
@@ -1273,6 +1273,11 @@ public:
                        wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
                        int alignment = wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL);
 
+    /**
+        Returns the alignment.
+    */
+    virtual int GetAlignment() const;
+
     /**
         Returns the cell mode.
     */
@@ -1296,6 +1301,10 @@ public:
     */
     virtual wxString GetVariantType();
 
+    /**
+        Sets the alignment.
+    */
+    virtual void SetAlignment( int align );
     /**
         Sets the owning wxDataViewColumn. This
         is usually called from within wxDataViewColumn.