The wxDEFAULT_CONTROL_BORDER symbol can be used to specify a sunken

border on some platforms, simple border on e.g. WinCE


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33269 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2005-04-02 17:23:08 +00:00
parent 0367d3391c
commit 0bbd4f0ff4

View File

@ -1232,6 +1232,13 @@ enum wxBorder
wxBORDER_MASK = 0x1f200000
};
/* This makes it easier to specify a 'normal' border for a control */
#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
#define wxDEFAULT_CONTROL_BORDER wxBORDER_SIMPLE
#else
#define wxDEFAULT_CONTROL_BORDER wxBORDER_SUNKEN
#endif
/* ---------------------------------------------------------------------------- */
/* Window style flags */
/* ---------------------------------------------------------------------------- */