1998-06-28 07:32:14 -04:00
|
|
|
#ifndef _TOOLBAR_H_BASE_
|
|
|
|
#define _TOOLBAR_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1998-07-24 09:17:04 -04:00
|
|
|
// the application code should use only wxToolBar which is #define'd to be the
|
|
|
|
// native implementation for each platform
|
1998-07-10 10:15:17 -04:00
|
|
|
#if defined(__WXMSW__) && defined(__WIN95__)
|
1998-07-27 05:47:57 -04:00
|
|
|
# include "wx/msw/tbar95.h"
|
1998-06-28 07:32:14 -04:00
|
|
|
# define wxToolBar wxToolBar95
|
1998-09-12 13:31:48 -04:00
|
|
|
# define sm_classwxToolBar sm_classwxToolBar95
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMSW__)
|
1998-07-27 05:47:57 -04:00
|
|
|
# include "wx/msw/tbarmsw.h"
|
1998-06-28 07:32:14 -04:00
|
|
|
# define wxToolBar wxToolBarMSW
|
1998-09-12 13:31:48 -04:00
|
|
|
# define sm_classwxToolBar sm_classwxToolBarMSW
|
1998-09-17 12:57:01 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
1998-10-21 17:43:20 -04:00
|
|
|
# include "wx/motif/toolbar.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXGTK__)
|
1998-06-28 07:32:14 -04:00
|
|
|
# include "wx/gtk/tbargtk.h"
|
1998-08-07 16:23:17 -04:00
|
|
|
#elif defined(__WXQT__)
|
1998-08-09 12:46:37 -04:00
|
|
|
# include "wx/qt/tbarqt.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
# include "wx/mac/toolbar.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
# include "wx/os2/toolbar.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXSTUBS__)
|
|
|
|
# include "wx/stubs/toolbar.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-06-28 07:32:14 -04:00
|
|
|
// _TOOLBAR_H_BASE_
|