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-06-28 07:32:14 -04:00
|
|
|
#if defined(__WINDOWS__) && defined(__WIN95__)
|
|
|
|
# include "wx/tbar95.h"
|
|
|
|
# define wxToolBar wxToolBar95
|
|
|
|
# define classwxToolBar classwxToolBar95
|
|
|
|
#elif defined(__WINDOWS__)
|
|
|
|
# include "wx/tbarmsw.h"
|
|
|
|
# define wxToolBar wxToolBarMSW
|
|
|
|
# define classwxToolBar classwxToolBarMSW
|
1998-05-20 10:01:55 -04:00
|
|
|
#elif defined(__GTK__)
|
1998-06-28 07:32:14 -04:00
|
|
|
# include "wx/gtk/tbargtk.h"
|
|
|
|
# define classwxToolBar wxToolBarGTK
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-06-28 07:32:14 -04:00
|
|
|
// _TOOLBAR_H_BASE_
|