]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_CONTROL_H_BASE_ |
2 | #define _WX_CONTROL_H_BASE_ | |
c801d85f | 3 | |
f03fc89f VZ |
4 | // all classes derived from wxControl need the validators |
5 | #include "wx/validate.h" | |
6 | ||
2049ba38 | 7 | #if defined(__WXMSW__) |
c801d85f | 8 | #include "wx/msw/control.h" |
2049ba38 | 9 | #elif defined(__WXMOTIF__) |
34138703 | 10 | #include "wx/motif/control.h" |
2049ba38 | 11 | #elif defined(__WXGTK__) |
c801d85f | 12 | #include "wx/gtk/control.h" |
b4e76e0d RR |
13 | #elif defined(__WXQT__) |
14 | #include "wx/qt/control.h" | |
34138703 JS |
15 | #elif defined(__WXMAC__) |
16 | #include "wx/mac/control.h" | |
17 | #elif defined(__WXSTUBS__) | |
18 | #include "wx/stubs/control.h" | |
c801d85f KB |
19 | #endif |
20 | ||
21 | #endif | |
34138703 | 22 | // _WX_CONTROL_H_BASE_ |