]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/icon.h
Don't unconditionally include the generic headers, fixes build
[wxWidgets.git] / include / wx / os2 / icon.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: icon.h
3// Purpose: wxIcon class
fb9010ed 4// Author: David Webster
0e320a79 5// Modified by:
fb9010ed 6// Created: 10/09/99
0e320a79 7// RCS-ID: $Id$
fb9010ed 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_ICON_H_
13#define _WX_ICON_H_
14
3b9e3455
DW
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
79c09341 19#include "wx/bitmap.h"
81152407 20#include "wx/os2/gdiimage.h"
0e320a79 21
81152407
VZ
22#define wxIconRefDataBase wxGDIImageRefData
23#define wxIconBase wxGDIImage
0e320a79 24
3b9e3455 25class WXDLLEXPORT wxIconRefData: public wxIconRefDataBase
0e320a79 26{
0e320a79 27public:
3b9e3455 28 wxIconRefData() { };
61243a51 29 virtual ~wxIconRefData() { Free(); }
0e320a79 30
3b9e3455 31 virtual void Free();
61243a51 32}; // end of
0e320a79 33
3b9e3455
DW
34// ---------------------------------------------------------------------------
35// Icon
36// ---------------------------------------------------------------------------
37
38class WXDLLEXPORT wxIcon: public wxIconBase
0e320a79 39{
0e320a79 40public:
3b9e3455
DW
41 wxIcon();
42
3b9e3455
DW
43 wxIcon( const char bits[]
44 ,int nWidth
45 ,int nHeight
46 );
8bb6da4a
DW
47 inline wxIcon(const char** ppData) { CreateIconFromXpm(ppData); }
48 inline wxIcon(char** ppData) { CreateIconFromXpm((const char**)ppData); }
3b9e3455
DW
49 wxIcon( const wxString& rName
50 ,long lFlags = wxBITMAP_TYPE_ICO_RESOURCE
51 ,int nDesiredWidth = -1
52 ,int nDesiredHeight = -1
53 );
aaf7ab43
VZ
54 wxIcon(const wxIconLocation& loc)
55 {
56 LoadFile(loc.GetFileName(), wxBITMAP_TYPE_ICO);
57 }
58
d3c7fc99 59 virtual ~wxIcon();
3b9e3455
DW
60
61 bool LoadFile( const wxString& rName
62 ,long lFlags = wxBITMAP_TYPE_ICO_RESOURCE
63 ,int nDesiredWidth = -1
64 ,int nDesiredHeight = -1
65 );
66
0e70f525 67 inline bool operator == (const wxIcon& rIcon) const
3b9e3455 68 { return m_refData == rIcon.m_refData; }
0e70f525 69 inline bool operator != (const wxIcon& rIcon) const
3b9e3455
DW
70 { return m_refData != rIcon.m_refData; }
71
72 wxIconRefData *GetIconData() const { return (wxIconRefData *)m_refData; }
73
74 inline void SetHICON(WXHICON hIcon) { SetHandle((WXHANDLE)hIcon); }
75 inline WXHICON GetHICON() const { return (WXHICON)GetHandle(); }
79c09341
DW
76 inline bool IsXpm(void) const { return m_bIsXpm; };
77 inline const wxBitmap& GetXpmSrc(void) const { return m_vXpmSrc; }
3b9e3455 78
8bb6da4a 79 void CopyFromBitmap(const wxBitmap& rBmp);
3b9e3455
DW
80protected:
81 virtual wxGDIImageRefData* CreateData() const
82 {
83 return new wxIconRefData;
84 }
8bb6da4a 85 void CreateIconFromXpm(const char **ppData);
0e320a79 86
3b9e3455 87private:
79c09341
DW
88 bool m_bIsXpm;
89 wxBitmap m_vXpmSrc;
90
3b9e3455 91 DECLARE_DYNAMIC_CLASS(wxIcon)
0e320a79
DW
92};
93
0e320a79
DW
94#endif
95 // _WX_ICON_H_