]>
Commit | Line | Data |
---|---|---|
da87a1ca JS |
1 | #ifndef _TOOLBAR_H_BASE_ |
2 | #define _TOOLBAR_H_BASE_ | |
c801d85f | 3 | |
a7ca513e VZ |
4 | // the application code should use only wxToolBar which is #define'd to be the |
5 | // native implementation for each platform | |
2049ba38 | 6 | #if defined(__WXMSW__) && defined(__WIN95__) |
81d66cf3 | 7 | # include "wx/msw/tbar95.h" |
da87a1ca | 8 | # define wxToolBar wxToolBar95 |
8cb50e4b | 9 | # define sm_classwxToolBar sm_classwxToolBar95 |
2049ba38 | 10 | #elif defined(__WXMSW__) |
81d66cf3 | 11 | # include "wx/msw/tbarmsw.h" |
da87a1ca | 12 | # define wxToolBar wxToolBarMSW |
8cb50e4b | 13 | # define sm_classwxToolBar sm_classwxToolBarMSW |
46ccb510 | 14 | #elif defined(__WXMOTIF__) |
0d57be45 | 15 | # include "wx/motif/toolbar.h" |
2049ba38 | 16 | #elif defined(__WXGTK__) |
da87a1ca | 17 | # include "wx/gtk/tbargtk.h" |
b4e76e0d | 18 | #elif defined(__WXQT__) |
b823f5a1 | 19 | # include "wx/qt/tbarqt.h" |
34138703 JS |
20 | #elif defined(__WXMAC__) |
21 | # include "wx/mac/toolbar.h" | |
22 | #elif defined(__WXSTUBS__) | |
23 | # include "wx/stubs/toolbar.h" | |
c801d85f KB |
24 | #endif |
25 | ||
26 | #endif | |
da87a1ca | 27 | // _TOOLBAR_H_BASE_ |