]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: icon.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __GTKICONH__ | |
13 | #define __GTKICONH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
21 | #include "wx/bitmap.h" | |
22 | ||
23 | //----------------------------------------------------------------------------- | |
24 | // classes | |
25 | //----------------------------------------------------------------------------- | |
26 | ||
27 | class wxIcon; | |
28 | ||
29 | //----------------------------------------------------------------------------- | |
30 | // wxIcon | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | class wxIcon: public wxBitmap | |
34 | { | |
35 | DECLARE_DYNAMIC_CLASS(wxIcon) | |
36 | ||
37 | public: | |
38 | ||
52cbfcf0 RR |
39 | wxIcon(void); |
40 | wxIcon(const wxIcon& icon); | |
41 | wxIcon(const wxIcon* icon); | |
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__ |