]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/icon.h | |
3 | // Purpose: wxIcon base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_ICON_H_BASE_ |
13 | #define _WX_ICON_H_BASE_ | |
c801d85f | 14 | |
aaf7ab43 | 15 | #include "wx/iconloc.h" |
03f38c58 | 16 | |
4055ed82 | 17 | #if defined(__WXPALMOS__) |
803c61bf | 18 | #include "wx/generic/icon.h" |
ffecfa5a | 19 | #elif defined(__WXMSW__) |
03f38c58 | 20 | #include "wx/msw/icon.h" |
2049ba38 | 21 | #elif defined(__WXMOTIF__) |
03f38c58 | 22 | #include "wx/motif/icon.h" |
1be7a35c | 23 | #elif defined(__WXGTK20__) |
71451a6d | 24 | #include "wx/generic/icon.h" |
1be7a35c | 25 | #elif defined(__WXGTK__) |
71451a6d | 26 | #include "wx/generic/icon.h" |
83df96d6 | 27 | #elif defined(__WXX11__) |
71451a6d | 28 | #include "wx/generic/icon.h" |
1e6feb95 | 29 | #elif defined(__WXMGL__) |
71451a6d VS |
30 | #define wxICON_DEFAULT_BITMAP_TYPE wxBITMAP_TYPE_ICO_RESOURCE |
31 | #include "wx/generic/icon.h" | |
b3c86150 VS |
32 | #elif defined(__WXDFB__) |
33 | #include "wx/generic/icon.h" | |
34138703 | 34 | #elif defined(__WXMAC__) |
973b546e | 35 | #if wxOSX_USE_COCOA_OR_CARBON |
ef0e9220 | 36 | #include "wx/osx/icon.h" |
ac9e3f1f SC |
37 | #else |
38 | #include "wx/generic/icon.h" | |
39 | #endif | |
e64df9bc DE |
40 | #elif defined(__WXCOCOA__) |
41 | #include "wx/cocoa/icon.h" | |
1777b9bb DW |
42 | #elif defined(__WXPM__) |
43 | #include "wx/os2/icon.h" | |
c801d85f KB |
44 | #endif |
45 | ||
6f5d7825 RR |
46 | //----------------------------------------------------------------------------- |
47 | // wxVariant support | |
48 | //----------------------------------------------------------------------------- | |
49 | ||
50 | #if wxUSE_VARIANT | |
51 | #include "wx/variant.h" | |
53a2db12 | 52 | DECLARE_VARIANT_OBJECT_EXPORTED(wxIcon,WXDLLIMPEXP_CORE) |
6f5d7825 RR |
53 | #endif |
54 | ||
55 | ||
c801d85f | 56 | #endif |
34138703 | 57 | // _WX_ICON_H_BASE_ |