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