]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/grid.h
Last part from weak ref patch for event sink disconnection
[wxWidgets.git] / include / wx / generic / grid.h
index c78fe9494d25f29ec534a518c3232e0837ec0e6e..bdb2e1ff7b4d7ab38af8b118a72085f6cb1d116e 100644 (file)
@@ -1312,8 +1312,11 @@ public:
     int      GetCellHighlightPenWidth() const { return m_cellHighlightPenWidth; }
     int      GetCellHighlightROPenWidth() const { return m_cellHighlightROPenWidth; }
 
+    void     SetUseNativeColLabels( bool native = true );
     void     SetRowLabelSize( int width );
     void     SetColLabelSize( int height );
+    void     HideRowLabels() { SetRowLabelSize( 0 ); }
+    void     HideColLabels() { SetColLabelSize( 0 ); }
     void     SetLabelBackgroundColour( const wxColour& );
     void     SetLabelTextColour( const wxColour& );
     void     SetLabelFont( const wxFont& );
@@ -1834,6 +1837,8 @@ protected:
     int        m_minAcceptableColWidth;
     wxArrayInt m_colWidths;
     wxArrayInt m_colRights;
+    
+    bool m_nativeColumnLabels;
 
     // get the col/row coords
     int GetColWidth(int col) const;