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