]> git.saurik.com Git - wxWidgets.git/commitdiff
Add index-based selection functions to wxDataViewListCtrl.
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 27 Jul 2010 21:45:50 +0000 (21:45 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 27 Jul 2010 21:45:50 +0000 (21:45 +0000)
These are convenience functions for work working with indexes, for
consistency with other wxDataViewListCtrl methods.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65122 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/dataview.h
interface/wx/dataview.h

index bdbc2f4bc038b3b180fef2d23ebbfc0fda15cb2a..b1229375ad15056c5283a892759446cbf5753882 100644 (file)
@@ -955,6 +955,15 @@ public:
     wxDataViewItem RowToItem(int row) const
         { return row == wxNOT_FOUND ? wxDataViewItem() : GetStore()->GetItem(row); }
 
     wxDataViewItem RowToItem(int row) const
         { return row == wxNOT_FOUND ? wxDataViewItem() : GetStore()->GetItem(row); }
 
+    int GetSelectedRow() const
+        { return ItemToRow(GetSelection()); }
+    void SelectRow(unsigned row)
+        { Select(RowToItem(row)); }
+    void UnselectRow(unsigned row)
+        { Unselect(RowToItem(row)); }
+    bool IsRowSelected(unsigned row) const
+        { return IsSelected(RowToItem(row)); }
+
     bool AppendColumn( wxDataViewColumn *column, const wxString &varianttype );
     bool PrependColumn( wxDataViewColumn *column, const wxString &varianttype );
     bool InsertColumn( unsigned int pos, wxDataViewColumn *column, const wxString &varianttype );
     bool AppendColumn( wxDataViewColumn *column, const wxString &varianttype );
     bool PrependColumn( wxDataViewColumn *column, const wxString &varianttype );
     bool InsertColumn( unsigned int pos, wxDataViewColumn *column, const wxString &varianttype );
index a5e2096cacaab71f1266f6f69e55912c0f20ce77..1bcdf86eb007dc3db619aa1b3bfffd815d132a1c 100644 (file)
@@ -1769,6 +1769,49 @@ public:
      */
     wxDataViewItem RowToItem(int row) const;
 
      */
     wxDataViewItem RowToItem(int row) const;
 
+    //@{
+    /**
+        @name Selection handling functions
+     */
+
+    /**
+        Returns index of the selected row or wxNOT_FOUND.
+
+        @see wxDataViewCtrl::GetSelection()
+
+        @since 2.9.2
+     */
+    int GetSelectedRow() const;
+
+    /**
+        Selects given row.
+
+        @see wxDataViewCtrl::Select()
+
+        @since 2.9.2
+     */
+    void SelectRow(unsigned row);
+
+    /**
+        Unselects given row.
+
+        @see wxDataViewCtrl::Unselect()
+
+        @since 2.9.2
+     */
+    void UnselectRow(unsigned row);
+
+    /**
+        Returns true if @a row is selected.
+
+        @see wxDataViewCtrl::IsSelected()
+
+        @since 2.9.2
+     */
+    bool IsRowSelected(unsigned row) const;
+
+    //@}
+
     /**
         @name Column management functions
     */
     /**
         @name Column management functions
     */