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
|
|
|
|
# define classwxToolBar 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
|
|
|
|
# define classwxToolBar classwxToolBarMSW
|
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-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-06-28 07:32:14 -04:00
|
|
|
// _TOOLBAR_H_BASE_
|