]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/icon.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
20 #include "wx/object.h"
21 #include "wx/bitmap.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 class wxIcon
: public wxBitmap
35 DECLARE_DYNAMIC_CLASS(wxIcon
)
40 wxIcon(const wxIcon
& icon
);
41 wxIcon(const wxIcon
* icon
);
42 wxIcon( char **bits
, int width
=-1, int height
=-1 );
44 wxIcon
& operator = (const wxIcon
& icon
);
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
; }
50 #endif // __GTKICONH__