]>
Commit | Line | Data |
---|---|---|
15b6757b FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: windowstyles | |
3 | // Purpose: topic overview | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /*! | |
36c9828f | 10 | |
75b31b23 | 11 | @page overview_windowstyles Window styles |
36c9828f | 12 | |
15b6757b FM |
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: | |
36c9828f | 16 | |
15b6757b FM |
17 | @code |
18 | wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | |
19 | @endcode | |
36c9828f | 20 | |
15b6757b FM |
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. | |
36c9828f | 24 | |
15b6757b | 25 | */ |
36c9828f FM |
26 | |
27 |