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