]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/overviews/windowstyles.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: topic overview
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
11 @page windowstyles_overview Window styles
13 Window styles are used to specify alternative behaviour and appearances for windows, when they are
14 created. The symbols are defined in such a way that they can be combined in a 'bit-list' using the
15 C++ @e bitwise-or operator. For example:
18 wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
21 For the window styles specific to each window class, please see the documentation
22 for the window. Most windows can use the generic styles listed for #wxWindow in
23 addition to their own styles.