wx.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/wx.h
  3. // Purpose: wxWidgets central header including the most often used ones
  4. // Author: Julian Smart
  5. // Modified by:
  6. // Created: 01/02/97
  7. // Copyright: (c) Julian Smart
  8. // Licence: wxWindows licence
  9. /////////////////////////////////////////////////////////////////////////////
  10. #ifndef _WX_WX_H_
  11. #define _WX_WX_H_
  12. #include "wx/defs.h"
  13. #include "wx/object.h"
  14. #include "wx/dynarray.h"
  15. #include "wx/list.h"
  16. #include "wx/hash.h"
  17. #include "wx/string.h"
  18. #include "wx/hashmap.h"
  19. #include "wx/arrstr.h"
  20. #include "wx/intl.h"
  21. #include "wx/log.h"
  22. #include "wx/event.h"
  23. #include "wx/app.h"
  24. #include "wx/utils.h"
  25. #include "wx/stream.h"
  26. #include "wx/memory.h"
  27. #include "wx/math.h"
  28. #include "wx/stopwatch.h"
  29. #include "wx/timer.h"
  30. #include "wx/module.h"
  31. #include "wx/wxcrt.h"
  32. #include "wx/wxcrtvararg.h"
  33. #if wxUSE_GUI
  34. #include "wx/window.h"
  35. #include "wx/containr.h"
  36. #include "wx/panel.h"
  37. #include "wx/toplevel.h"
  38. #include "wx/frame.h"
  39. #include "wx/gdicmn.h"
  40. #include "wx/gdiobj.h"
  41. #include "wx/region.h"
  42. #include "wx/bitmap.h"
  43. #include "wx/image.h"
  44. #include "wx/colour.h"
  45. #include "wx/font.h"
  46. #include "wx/dc.h"
  47. #include "wx/dcclient.h"
  48. #include "wx/dcmemory.h"
  49. #include "wx/dcprint.h"
  50. #include "wx/dcscreen.h"
  51. #include "wx/button.h"
  52. #include "wx/menuitem.h"
  53. #include "wx/menu.h"
  54. #include "wx/pen.h"
  55. #include "wx/brush.h"
  56. #include "wx/palette.h"
  57. #include "wx/icon.h"
  58. #include "wx/cursor.h"
  59. #include "wx/dialog.h"
  60. #include "wx/settings.h"
  61. #include "wx/msgdlg.h"
  62. #include "wx/dataobj.h"
  63. #include "wx/control.h"
  64. #include "wx/ctrlsub.h"
  65. #include "wx/bmpbuttn.h"
  66. #include "wx/checkbox.h"
  67. #include "wx/checklst.h"
  68. #include "wx/choice.h"
  69. #include "wx/scrolbar.h"
  70. #include "wx/stattext.h"
  71. #include "wx/statbmp.h"
  72. #include "wx/statbox.h"
  73. #include "wx/listbox.h"
  74. #include "wx/radiobox.h"
  75. #include "wx/radiobut.h"
  76. #include "wx/textctrl.h"
  77. #include "wx/slider.h"
  78. #include "wx/gauge.h"
  79. #include "wx/scrolwin.h"
  80. #include "wx/dirdlg.h"
  81. #include "wx/toolbar.h"
  82. #include "wx/combobox.h"
  83. #include "wx/layout.h"
  84. #include "wx/sizer.h"
  85. #include "wx/statusbr.h"
  86. #include "wx/choicdlg.h"
  87. #include "wx/textdlg.h"
  88. #include "wx/filedlg.h"
  89. // this one is included by exactly one file (mdi.cpp) during wx build so even
  90. // although we keep it here for the library users, don't include it to avoid
  91. // bloating the PCH and (worse) rebuilding the entire library when it changes
  92. // when building the library itself
  93. #ifndef WXBUILDING
  94. #include "wx/mdi.h"
  95. #endif
  96. // always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator
  97. #include "wx/validate.h"
  98. #if wxUSE_VALIDATORS
  99. #include "wx/valtext.h"
  100. #endif // wxUSE_VALIDATORS
  101. #endif // wxUSE_GUI
  102. #endif // _WX_WX_H_