]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/icon.h
Avoid conflict between new transparency API and old background support.
[wxWidgets.git] / include / wx / msw / icon.h
CommitLineData
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
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_ICON_H_
13#define _WX_ICON_H_
2bda0e17 14
6d167489
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
c781807d 19#include "wx/msw/gdiimage.h"
2bda0e17 20
c793fa87
VZ
21// ---------------------------------------------------------------------------
22// icon data
23// ---------------------------------------------------------------------------
c793fa87 24
6d167489
VZ
25// notice that although wxIconRefData inherits from wxBitmapRefData, it is not
26// a valid wxBitmapRefData
c781807d 27class WXDLLEXPORT wxIconRefData : public wxGDIImageRefData
6d167489 28{
2bda0e17 29public:
6d167489
VZ
30 wxIconRefData() { }
31 virtual ~wxIconRefData() { Free(); }
2bda0e17 32
6d167489 33 virtual void Free();
2bda0e17
KB
34};
35
c793fa87 36// ---------------------------------------------------------------------------
2bda0e17 37// Icon
c793fa87 38// ---------------------------------------------------------------------------
2bda0e17 39
c781807d 40class WXDLLEXPORT wxIcon : public wxGDIImage
6d167489 41{
2bda0e17 42public:
4b7f2165
VZ
43 // ctors
44 // default
45 wxIcon() { }
2bda0e17 46
4b7f2165 47 // from raw data
c793fa87 48 wxIcon(const char bits[], int width, int height);
aaf7ab43 49
4b7f2165
VZ
50 // from XPM data
51 wxIcon(const char **data) { CreateIconFromXpm(data); }
7581faf6 52
4b7f2165 53 wxIcon(char **data) { CreateIconFromXpm((const char **)data); }
aaf7ab43 54
4b7f2165 55 // from resource/file
6d167489
VZ
56 wxIcon(const wxString& name,
57 long type = wxBITMAP_TYPE_ICO_RESOURCE,
c793fa87 58 int desiredWidth = -1, int desiredHeight = -1);
4b7f2165 59
aaf7ab43
VZ
60 wxIcon(const wxIconLocation& loc);
61
6d167489 62 virtual ~wxIcon();
2bda0e17 63
6d167489
VZ
64 virtual bool LoadFile(const wxString& name,
65 long type = wxBITMAP_TYPE_ICO_RESOURCE,
66 int desiredWidth = -1, int desiredHeight = -1);
2bda0e17 67
c793fa87
VZ
68 bool operator == (const wxIcon& icon) const
69 { return m_refData == icon.m_refData; }
70 bool operator != (const wxIcon& icon) const
71 { return m_refData != icon.m_refData; }
2bda0e17 72
4004f41e 73 // implementation only from now on
6d167489 74 wxIconRefData *GetIconData() const { return (wxIconRefData *)m_refData; }
2bda0e17 75
6d167489
VZ
76 void SetHICON(WXHICON icon) { SetHandle((WXHANDLE)icon); }
77 WXHICON GetHICON() const { return (WXHICON)GetHandle(); }
2bda0e17 78
4004f41e
VZ
79 // create from bitmap (which should have a mask unless it's monochrome):
80 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
81 // ctors, assignment operators...), but it's ok to have such function
82 void CopyFromBitmap(const wxBitmap& bmp);
83
6d167489
VZ
84protected:
85 virtual wxGDIImageRefData *CreateData() const
c793fa87 86 {
6d167489
VZ
87 return new wxIconRefData;
88 }
2bda0e17 89
9d769508
VZ
90 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
91
4b7f2165
VZ
92 // create from XPM data
93 void CreateIconFromXpm(const char **data);
94
6d167489
VZ
95private:
96 DECLARE_DYNAMIC_CLASS(wxIcon)
2bda0e17
KB
97};
98
99#endif
bbcdf8bc 100 // _WX_ICON_H_