]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/icon.h
test
[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
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
23// compatible (even if incorrect) behaviour by default: derive wxIcon from
24// wxBitmap
25#ifndef wxICON_IS_BITMAP
26 #define wxICON_IS_BITMAP 1
27#endif
28
29#if wxICON_IS_BITMAP
30 #include "wx/bitmap.h"
31
32 #define wxIconRefDataBase wxBitmapRefData
33 #define wxIconBase wxBitmap
34#else
35 #include "wx/msw/gdiimage.h"
36
37 #define wxIconRefDataBase wxGDIImageRefData
38 #define wxIconBase wxGDIImage
39#endif
2bda0e17 40
c793fa87
VZ
41// ---------------------------------------------------------------------------
42// icon data
43// ---------------------------------------------------------------------------
c793fa87 44
6d167489
VZ
45// notice that although wxIconRefData inherits from wxBitmapRefData, it is not
46// a valid wxBitmapRefData
47class WXDLLEXPORT wxIconRefData : public wxIconRefDataBase
48{
2bda0e17 49public:
6d167489
VZ
50 wxIconRefData() { }
51 virtual ~wxIconRefData() { Free(); }
2bda0e17 52
6d167489 53 virtual void Free();
2bda0e17
KB
54};
55
c793fa87 56// ---------------------------------------------------------------------------
2bda0e17 57// Icon
c793fa87 58// ---------------------------------------------------------------------------
2bda0e17 59
6d167489
VZ
60class WXDLLEXPORT wxIcon : public wxIconBase
61{
2bda0e17 62public:
c793fa87 63 wxIcon();
2bda0e17 64
c793fa87
VZ
65 // Copy constructors
66 wxIcon(const wxIcon& icon) { Ref(icon); }
2bda0e17 67
c793fa87 68 wxIcon(const char bits[], int width, int height);
6d167489
VZ
69 wxIcon(const wxString& name,
70 long type = wxBITMAP_TYPE_ICO_RESOURCE,
c793fa87 71 int desiredWidth = -1, int desiredHeight = -1);
6d167489 72 virtual ~wxIcon();
2bda0e17 73
6d167489
VZ
74 virtual bool LoadFile(const wxString& name,
75 long type = wxBITMAP_TYPE_ICO_RESOURCE,
76 int desiredWidth = -1, int desiredHeight = -1);
2bda0e17 77
c793fa87 78 wxIcon& operator = (const wxIcon& icon)
6d167489 79 { if ( *this != icon ) Ref(icon); return *this; }
c793fa87
VZ
80 bool operator == (const wxIcon& icon) const
81 { return m_refData == icon.m_refData; }
82 bool operator != (const wxIcon& icon) const
83 { return m_refData != icon.m_refData; }
2bda0e17 84
6d167489 85 wxIconRefData *GetIconData() const { return (wxIconRefData *)m_refData; }
2bda0e17 86
6d167489
VZ
87 void SetHICON(WXHICON icon) { SetHandle((WXHANDLE)icon); }
88 WXHICON GetHICON() const { return (WXHICON)GetHandle(); }
2bda0e17 89
6d167489
VZ
90protected:
91 virtual wxGDIImageRefData *CreateData() const
c793fa87 92 {
6d167489
VZ
93 return new wxIconRefData;
94 }
2bda0e17 95
6d167489
VZ
96private:
97 DECLARE_DYNAMIC_CLASS(wxIcon)
2bda0e17
KB
98};
99
100#endif
bbcdf8bc 101 // _WX_ICON_H_