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