windowstyles.h 865 B

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