]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/icon.cpp
more backwards compatibility for printing
[wxWidgets.git] / src / gtk / icon.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: icon.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
11#pragma implementation "icon.h"
12#endif
13
14#include "wx/icon.h"
15
16//-----------------------------------------------------------------------------
17// wxIcon
18//-----------------------------------------------------------------------------
19
20IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
21
22wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
23 wxBitmap( bits )
24{
25}
26
27wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
28 wxBitmap( bits )
29{
30}
31
32wxIcon::wxIcon() : wxBitmap()
33{
34}
35
36wxIcon::wxIcon( const wxIcon& icon ) : wxBitmap()
37{
38 Ref(icon);
39}
40
41wxIcon& wxIcon::operator = ( const wxIcon& icon )
42{
43 if (*this == icon) return (*this);
44 Ref(icon);
45 return *this;
46}
47