]>
Commit | Line | Data |
---|---|---|
15b6757b | 1 | ///////////////////////////////////////////////////////////////////////////// |
3863c5eb | 2 | // Name: windowstyles.h |
15b6757b FM |
3 | // Purpose: topic overview |
4 | // Author: wxWidgets team | |
526954c5 | 5 | // Licence: wxWindows licence |
15b6757b FM |
6 | ///////////////////////////////////////////////////////////////////////////// |
7 | ||
880efa2a | 8 | /** |
36c9828f | 9 | |
3863c5eb | 10 | @page overview_windowstyles Window Styles |
36c9828f | 11 | |
831e1028 BP |
12 | @tableofcontents |
13 | ||
3863c5eb BP |
14 | Window styles are used to specify alternative behaviour and appearances for |
15 | windows, when they are created. The symbols are defined in such a way that they | |
b1b95a65 FM |
16 | can be combined in a 'bit-list' using the C++ @e bitwise-or operator. |
17 | ||
18 | For example: | |
36c9828f | 19 | |
3863c5eb BP |
20 | @code |
21 | wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | |
22 | @endcode | |
36c9828f | 23 | |
3863c5eb | 24 | For the window styles specific to each window class, please see the |
b1b95a65 FM |
25 | documentation for the window. |
26 | ||
27 | Most windows can use the generic styles listed for wxWindow in addition to | |
28 | their own styles. | |
36c9828f | 29 | |
3863c5eb | 30 | */ |