]> git.saurik.com Git - wxWidgets.git/commitdiff
added helper Is{Col,Row}Shown()
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Dec 2008 10:44:29 +0000 (10:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Dec 2008 10:44:29 +0000 (10:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57354 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/grid.h
interface/wx/grid.h

index 8a0e20eb1dfc688bc91abf5696a6c6de011680a8..6873ca0de534cd8ed2d36a7fa8c367a05f3fc556 100644 (file)
@@ -1485,8 +1485,10 @@ public:
     //
     int      GetDefaultRowSize() const;
     int      GetRowSize( int row ) const;
+    bool     IsRowShown(int row) const { return GetRowSize(row) != 0; }
     int      GetDefaultColSize() const;
     int      GetColSize( int col ) const;
+    bool     IsColShown(int col) const { return GetColSize(col) != 0; }
     wxColour GetDefaultCellBackgroundColour() const;
     wxColour GetCellBackgroundColour( int row, int col ) const;
     wxColour GetDefaultCellTextColour() const;
index 607f40c05739c3625cab53117bfd1fe8bd7bc5ea..0601bf603153830a425505d38c7cab508a067497 100644 (file)
@@ -2014,6 +2014,11 @@ public:
     */
     int GetColSize(int col) const;
 
+    /**
+        Returns @true if the specified column is not currently hidden.
+     */
+    bool IsColShown(int col) const;
+
     /**
         Returns the default height for column labels.
     */
@@ -2054,6 +2059,11 @@ public:
     */
     int GetRowSize(int row) const;
 
+    /**
+        Returns @true if the specified row is not currently hidden.
+     */
+    bool IsRowShown(int row) const;
+
     /**
         Sets the height of the column labels.