access-specifier fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56274 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-13 11:29:37 +00:00
parent 9861dc94bb
commit 551266a969
8 changed files with 206 additions and 190 deletions

View File

@@ -141,12 +141,6 @@ public:
*/
bool IsVisible(size_t unit) const;
/**
This function must be overridden in the derived class, and should
return the size of the given unit in pixels.
*/
virtual wxCoord OnGetUnitSize(size_t unit) const;
/**
This function doesn't have to be overridden but it may be useful to do
so if calculating the units' sizes is a relatively expensive operation
@@ -190,6 +184,15 @@ public:
last item).
*/
int VirtualHitTest(wxCoord coord) const;
protected:
/**
This function must be overridden in the derived class, and should
return the size of the given unit in pixels.
*/
virtual wxCoord OnGetUnitSize(size_t unit) const;
};
@@ -257,12 +260,6 @@ public:
*/
bool IsRowVisible(size_t row) const;
/**
This function must be overridden in the derived class, and should
return the height of the given row in pixels.
*/
virtual wxCoord OnGetRowHeight(size_t row) const;
/**
This function doesn't have to be overridden but it may be useful to do
so if calculating the rows' sizes is a relatively expensive operation
@@ -324,6 +321,14 @@ public:
@see GetRowCount()
*/
void SetRowCount(size_t rowCount);
protected:
/**
This function must be overridden in the derived class, and should
return the height of the given row in pixels.
*/
virtual wxCoord OnGetRowHeight(size_t row) const;
};
@@ -392,12 +397,6 @@ public:
*/
bool IsColumnVisible(size_t column) const;
/**
This function must be overridden in the derived class, and should
return the width of the given column in pixels.
*/
virtual wxCoord OnGetColumnWidth(size_t column) const;
/**
This function doesn't have to be overridden but it may be useful to do
so if calculating the columns' sizes is a relatively expensive
@@ -460,6 +459,14 @@ public:
@see GetColumnCount()
*/
void SetColumnCount(size_t columnCount);
protected:
/**
This function must be overridden in the derived class, and should
return the width of the given column in pixels.
*/
virtual wxCoord OnGetColumnWidth(size_t column) const;
};