]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
6d167489 | 2 | // Name: wx/msw/icon.h |
2bda0e17 KB |
3 | // Purpose: wxIcon class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
c793fa87 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_ICON_H_ |
13 | #define _WX_ICON_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
c793fa87 | 16 | #pragma interface "icon.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
6d167489 VZ |
19 | // ---------------------------------------------------------------------------- |
20 | // headers | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
c781807d | 23 | #include "wx/msw/gdiimage.h" |
2bda0e17 | 24 | |
c793fa87 VZ |
25 | // --------------------------------------------------------------------------- |
26 | // icon data | |
27 | // --------------------------------------------------------------------------- | |
c793fa87 | 28 | |
6d167489 VZ |
29 | // notice that although wxIconRefData inherits from wxBitmapRefData, it is not |
30 | // a valid wxBitmapRefData | |
c781807d | 31 | class WXDLLEXPORT wxIconRefData : public wxGDIImageRefData |
6d167489 | 32 | { |
2bda0e17 | 33 | public: |
6d167489 VZ |
34 | wxIconRefData() { } |
35 | virtual ~wxIconRefData() { Free(); } | |
2bda0e17 | 36 | |
6d167489 | 37 | virtual void Free(); |
2bda0e17 KB |
38 | }; |
39 | ||
c793fa87 | 40 | // --------------------------------------------------------------------------- |
2bda0e17 | 41 | // Icon |
c793fa87 | 42 | // --------------------------------------------------------------------------- |
2bda0e17 | 43 | |
c781807d | 44 | class WXDLLEXPORT wxIcon : public wxGDIImage |
6d167489 | 45 | { |
2bda0e17 | 46 | public: |
4b7f2165 VZ |
47 | // ctors |
48 | // default | |
49 | wxIcon() { } | |
2bda0e17 | 50 | |
4b7f2165 | 51 | // copy |
c793fa87 | 52 | wxIcon(const wxIcon& icon) { Ref(icon); } |
2bda0e17 | 53 | |
4b7f2165 | 54 | // from raw data |
c793fa87 | 55 | wxIcon(const char bits[], int width, int height); |
4b7f2165 | 56 | // from XPM data |
4ce1efe1 | 57 | #ifndef __DIGITALMARS__ |
4b7f2165 | 58 | wxIcon(const char **data) { CreateIconFromXpm(data); } |
4ce1efe1 | 59 | #endif |
4b7f2165 VZ |
60 | wxIcon(char **data) { CreateIconFromXpm((const char **)data); } |
61 | // from resource/file | |
6d167489 VZ |
62 | wxIcon(const wxString& name, |
63 | long type = wxBITMAP_TYPE_ICO_RESOURCE, | |
c793fa87 | 64 | int desiredWidth = -1, int desiredHeight = -1); |
4b7f2165 | 65 | |
6d167489 | 66 | virtual ~wxIcon(); |
2bda0e17 | 67 | |
6d167489 VZ |
68 | virtual bool LoadFile(const wxString& name, |
69 | long type = wxBITMAP_TYPE_ICO_RESOURCE, | |
70 | int desiredWidth = -1, int desiredHeight = -1); | |
2bda0e17 | 71 | |
c793fa87 | 72 | wxIcon& operator = (const wxIcon& icon) |
6d167489 | 73 | { if ( *this != icon ) Ref(icon); return *this; } |
c793fa87 VZ |
74 | bool operator == (const wxIcon& icon) const |
75 | { return m_refData == icon.m_refData; } | |
76 | bool operator != (const wxIcon& icon) const | |
77 | { return m_refData != icon.m_refData; } | |
2bda0e17 | 78 | |
4004f41e | 79 | // implementation only from now on |
6d167489 | 80 | wxIconRefData *GetIconData() const { return (wxIconRefData *)m_refData; } |
2bda0e17 | 81 | |
6d167489 VZ |
82 | void SetHICON(WXHICON icon) { SetHandle((WXHANDLE)icon); } |
83 | WXHICON GetHICON() const { return (WXHICON)GetHandle(); } | |
2bda0e17 | 84 | |
4004f41e VZ |
85 | // create from bitmap (which should have a mask unless it's monochrome): |
86 | // there shouldn't be any implicit bitmap -> icon conversion (i.e. no | |
87 | // ctors, assignment operators...), but it's ok to have such function | |
88 | void CopyFromBitmap(const wxBitmap& bmp); | |
89 | ||
6d167489 VZ |
90 | protected: |
91 | virtual wxGDIImageRefData *CreateData() const | |
c793fa87 | 92 | { |
6d167489 VZ |
93 | return new wxIconRefData; |
94 | } | |
2bda0e17 | 95 | |
4b7f2165 VZ |
96 | // create from XPM data |
97 | void CreateIconFromXpm(const char **data); | |
98 | ||
6d167489 VZ |
99 | private: |
100 | DECLARE_DYNAMIC_CLASS(wxIcon) | |
2bda0e17 KB |
101 | }; |
102 | ||
103 | #endif | |
bbcdf8bc | 104 | // _WX_ICON_H_ |