Added wxRA_SPECIFY_COLS/ROWS (same as wxRA_HORIZONTAL/VERTICAL)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 1998-12-17 21:05:28 +00:00
parent d7a15103f7
commit fa18b7575b

View File

@ -463,6 +463,15 @@ typedef void (*wxFunction) (wxObject&, wxEvent&);
/*
* wxRadioBox/wxRadioButton style flags
*/
// New, more intuitive names to specify majorDim argument
// Same as wxRA_HORIZONTAL
#define wxRA_SPECIFY_COLS 0x0001
// Same as wxRA_VERTICAL
#define wxRA_SPECIFY_ROWS 0x0002
// Old names for compatibility
#define wxRA_HORIZONTAL wxHORIZONTAL
#define wxRA_VERTICAL wxVERTICAL
#define wxRB_GROUP 0x0004