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:
@@ -22,7 +22,10 @@
|
||||
enum
|
||||
{
|
||||
// special value for column width meaning unspecified/default
|
||||
wxCOL_WIDTH_DEFAULT = -1
|
||||
wxCOL_WIDTH_DEFAULT = -1,
|
||||
|
||||
// size the column automatically to fit all values
|
||||
wxCOL_WIDTH_AUTOSIZE = -2
|
||||
};
|
||||
|
||||
// bit masks for the various column attributes
|
||||
|
Reference in New Issue
Block a user