]>
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__) |
da87a1ca JS |
7 | # include "wx/tbar95.h" |
8 | # define wxToolBar wxToolBar95 | |
9 | # define classwxToolBar classwxToolBar95 | |
2049ba38 | 10 | #elif defined(__WXMSW__) |
da87a1ca JS |
11 | # include "wx/tbarmsw.h" |
12 | # define wxToolBar wxToolBarMSW | |
13 | # define classwxToolBar classwxToolBarMSW | |
2049ba38 | 14 | #elif defined(__WXGTK__) |
da87a1ca | 15 | # include "wx/gtk/tbargtk.h" |
c801d85f KB |
16 | #endif |
17 | ||
18 | #endif | |
da87a1ca | 19 | // _TOOLBAR_H_BASE_ |