1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_ICON_H_BASE_
|
|
|
|
#define _WX_ICON_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-10-16 14:38:52 +00:00
|
|
|
/* Commenting out since duplicated in gdicmn.h
|
1998-10-12 13:09:15 +00:00
|
|
|
// this is for Unix (i.e. now for anything other than MSW)
|
|
|
|
#undef wxICON
|
|
|
|
#define wxICON(icon_name) wxIcon(icon_name##_xpm)
|
1998-10-16 14:38:52 +00:00
|
|
|
*/
|
1998-10-12 13:09:15 +00:00
|
|
|
|
1998-07-10 14:15:17 +00:00
|
|
|
#if defined(__WXMSW__)
|
1998-10-12 13:09:15 +00:00
|
|
|
#include "wx/msw/icon.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
1998-10-12 13:09:15 +00:00
|
|
|
#include "wx/motif/icon.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
1998-10-12 13:09:15 +00:00
|
|
|
#include "wx/gtk/icon.h"
|
1998-08-07 20:23:17 +00:00
|
|
|
#elif defined(__WXQT__)
|
1998-10-12 13:09:15 +00:00
|
|
|
#include "wx/qt/icon.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
1998-10-12 13:09:15 +00:00
|
|
|
#include "wx/mac/icon.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/icon.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXSTUBS__)
|
1998-10-12 13:09:15 +00:00
|
|
|
#include "wx/stubs/icon.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_ICON_H_BASE_
|