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