]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/icon.h
Never refresh controls from EVT_PAINT handler in wxPropertyGrid.
[wxWidgets.git] / include / wx / icon.h
... / ...
CommitLineData
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
12#ifndef _WX_ICON_H_BASE_
13#define _WX_ICON_H_BASE_
14
15#include "wx/iconloc.h"
16
17
18// a more readable way to tell
19#define wxICON_SCREEN_DEPTH (-1)
20
21
22// the wxICON_DEFAULT_TYPE (the wxIcon equivalent of wxBITMAP_DEFAULT_TYPE)
23// constant defines the default argument value for wxIcon ctor and wxIcon::LoadFile()
24// functions.
25
26#if defined(__WXMSW__)
27 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_ICO_RESOURCE
28 #include "wx/msw/icon.h"
29#elif defined(__WXMOTIF__)
30 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_XPM
31 #include "wx/motif/icon.h"
32#elif defined(__WXGTK20__)
33 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_XPM
34 #include "wx/generic/icon.h"
35#elif defined(__WXGTK__)
36 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_XPM
37 #include "wx/generic/icon.h"
38#elif defined(__WXX11__)
39 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_XPM
40 #include "wx/generic/icon.h"
41#elif defined(__WXDFB__)
42 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_XPM
43 #include "wx/generic/icon.h"
44#elif defined(__WXMAC__)
45#if wxOSX_USE_COCOA_OR_CARBON
46 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_ICON_RESOURCE
47 #include "wx/osx/icon.h"
48#else
49 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_PNG_RESOURCE
50 #include "wx/generic/icon.h"
51#endif
52#elif defined(__WXCOCOA__)
53 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_ICON_RESOURCE
54 #include "wx/cocoa/icon.h"
55#elif defined(__WXPM__)
56 #define wxICON_DEFAULT_TYPE wxBITMAP_TYPE_ICO_RESOURCE
57 #include "wx/os2/icon.h"
58#endif
59
60//-----------------------------------------------------------------------------
61// wxVariant support
62//-----------------------------------------------------------------------------
63
64#if wxUSE_VARIANT
65#include "wx/variant.h"
66DECLARE_VARIANT_OBJECT_EXPORTED(wxIcon,WXDLLIMPEXP_CORE)
67#endif
68
69
70#endif
71 // _WX_ICON_H_BASE_