+void wxGrid::DrawCornerLabel(wxDC& dc)
+{
+ if ( m_nativeColumnLabels )
+ {
+ wxRect rect(wxSize(m_rowLabelWidth, m_colLabelHeight));
+ rect.Deflate(1);
+
+ wxRendererNative::Get().DrawHeaderButton(m_cornerLabelWin, dc, rect, 0);
+ }
+ else
+ {
+ dc.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW)));
+ dc.DrawLine( m_rowLabelWidth - 1, m_colLabelHeight - 1,
+ m_rowLabelWidth - 1, 0 );
+ dc.DrawLine( m_rowLabelWidth - 1, m_colLabelHeight - 1,
+ 0, m_colLabelHeight - 1 );
+ dc.DrawLine( 0, 0, m_rowLabelWidth, 0 );
+ dc.DrawLine( 0, 0, 0, m_colLabelHeight );
+
+ dc.SetPen( *wxWHITE_PEN );
+ dc.DrawLine( 1, 1, m_rowLabelWidth - 1, 1 );
+ dc.DrawLine( 1, 1, 1, m_colLabelHeight - 1 );
+ }
+}
+
+void wxGrid::DrawColLabel(wxDC& dc, int col)