]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/icon.h
added untyped Sort() for compatibility
[wxWidgets.git] / include / wx / gtk1 / icon.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: icon.h
3// Purpose:
4// Author: Robert Roebling
58614078
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
c801d85f
KB
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GTKICONH__
12#define __GTKICONH__
13
14#ifdef __GNUG__
15#pragma interface
16#endif
17
18#include "wx/defs.h"
19#include "wx/object.h"
20#include "wx/bitmap.h"
21
22//-----------------------------------------------------------------------------
23// classes
24//-----------------------------------------------------------------------------
25
26class wxIcon;
27
28//-----------------------------------------------------------------------------
29// wxIcon
30//-----------------------------------------------------------------------------
31
32class wxIcon: public wxBitmap
33{
34 DECLARE_DYNAMIC_CLASS(wxIcon)
35
36public:
37
52cbfcf0 38 wxIcon(void);
e52f60e6
RR
39 wxIcon( const wxIcon& icon);
40 wxIcon( const wxIcon* icon);
41 wxIcon( const char **bits, int width=-1, int height=-1 );
219f895a 42 wxIcon( char **bits, int width=-1, int height=-1 );
f9d855de
RD
43
44 wxIcon& operator = (const wxIcon& icon);
c801d85f
KB
45 inline bool operator == (const wxIcon& icon) { return m_refData == icon.m_refData; }
46 inline bool operator != (const wxIcon& icon) { return m_refData != icon.m_refData; }
47};
48
49
50#endif // __GTKICONH__