Add optional columns autosizing to wxDataViewCtrl.

Only implemented in the generic and GTK+ versions at the moment, OS X
support will be added later.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2010-10-30 15:57:41 +00:00
parent 9aebcb5e44
commit d0154e3a5a
6 changed files with 131 additions and 26 deletions

View File

@@ -9,9 +9,16 @@
/////////////////////////////////////////////////////////////////////////////
/**
Special value used for column width meaning unspecified or default.
Column width special values.
*/
enum { wxCOL_WIDTH_DEFAULT = -1 };
enum
{
/// Special value used for column width meaning unspecified or default.
wxCOL_WIDTH_DEFAULT = -1,
/// Size the column automatically to fit all values.
wxCOL_WIDTH_AUTOSIZE = -2
};
/**
Bit flags used as wxHeaderColumn flags.
@@ -77,7 +84,8 @@ public:
Returns the current width of the column.
@return
Width of the column in pixels, never wxCOL_WIDTH_DEFAULT.
Width of the column in pixels, never wxCOL_WIDTH_DEFAULT or
wxCOL_WIDTH_AUTOSIZE.
*/
virtual int GetWidth() const = 0;
@@ -199,8 +207,9 @@ public:
Set the column width.
@param width
The column width in pixels or the special wxCOL_WIDTH_DEFAULT value
meaning to use default width.
The column width in pixels or the special wxCOL_WIDTH_DEFAULT
(meaning to use default width) or wxCOL_WIDTH_AUTOSIZE (size to
fit the content) value.
*/
virtual void SetWidth(int width) = 0;