]> git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/icon.h
More framework fixes and fixes for building dlls.
[wxWidgets.git] / include / wx / os2 / icon.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: icon.h
3 // Purpose: wxIcon class
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/09/99
7 // RCS-ID: $Id$
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_ICON_H_
13 #define _WX_ICON_H_
14
15 // ----------------------------------------------------------------------------
16 // headers
17 // ----------------------------------------------------------------------------
18
19 // compatible (even if incorrect) behaviour by default: derive wxIcon from
20 // wxBitmap
21 #ifndef wxICON_IS_BITMAP
22 #define wxICON_IS_BITMAP 1
23 #endif
24
25 #if wxICON_IS_BITMAP
26 #include "wx/bitmap.h"
27
28 #define wxIconRefDataBase wxBitmapRefData
29 #define wxIconBase wxBitmap
30 #else
31 #include "wx/os2/gdiimage.h"
32
33 #define wxIconRefDataBase wxGDIImageRefData
34 #define wxIconBase wxGDIImage
35 #endif
36
37 class WXDLLEXPORT wxIconRefData: public wxIconRefDataBase
38 {
39 public:
40 wxIconRefData() { };
41 virtual ~wxIconRefData() { Free(); }
42
43 virtual void Free();
44 }; // end of
45
46 // ---------------------------------------------------------------------------
47 // Icon
48 // ---------------------------------------------------------------------------
49
50 class WXDLLEXPORT wxIcon: public wxIconBase
51 {
52 public:
53 wxIcon();
54
55 // Copy constructors
56 inline wxIcon(const wxIcon& icon) { Ref(icon); }
57
58 wxIcon( const char bits[]
59 ,int nWidth
60 ,int nHeight
61 );
62 wxIcon( const wxString& rName
63 ,long lFlags = wxBITMAP_TYPE_ICO_RESOURCE
64 ,int nDesiredWidth = -1
65 ,int nDesiredHeight = -1
66 );
67 ~wxIcon();
68
69 bool LoadFile( const wxString& rName
70 ,long lFlags = wxBITMAP_TYPE_ICO_RESOURCE
71 ,int nDesiredWidth = -1
72 ,int nDesiredHeight = -1
73 );
74
75 inline wxIcon& operator = (const wxIcon& rIcon)
76 { if (*this != rIcon) Ref(rIcon); return *this; }
77 inline bool operator == (const wxIcon& rIcon)
78 { return m_refData == rIcon.m_refData; }
79 inline bool operator != (const wxIcon& rIcon)
80 { return m_refData != rIcon.m_refData; }
81
82 wxIconRefData *GetIconData() const { return (wxIconRefData *)m_refData; }
83
84 inline void SetHICON(WXHICON hIcon) { SetHandle((WXHANDLE)hIcon); }
85 inline WXHICON GetHICON() const { return (WXHICON)GetHandle(); }
86
87 protected:
88 virtual wxGDIImageRefData* CreateData() const
89 {
90 return new wxIconRefData;
91 }
92
93 private:
94 DECLARE_DYNAMIC_CLASS(wxIcon)
95 };
96
97 #endif
98 // _WX_ICON_H_