Move some things to wxBitmapBase to avoid much duplication.
[wxWidgets.git] / include / wx / x11 / bitmap.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: x11/bitmap.h
3 // Purpose: wxBitmap class
4 // Author: Julian Smart, Robert Roebling
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart, Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_BITMAP_H_
13 #define _WX_BITMAP_H_
14
15 #include "wx/defs.h"
16 #include "wx/object.h"
17 #include "wx/string.h"
18 #include "wx/palette.h"
19 #include "wx/gdiobj.h"
20
21 //-----------------------------------------------------------------------------
22 // classes
23 //-----------------------------------------------------------------------------
24
25 class WXDLLIMPEXP_CORE wxMask;
26 class WXDLLIMPEXP_CORE wxBitmap;
27 class WXDLLIMPEXP_CORE wxImage;
28
29 //-----------------------------------------------------------------------------
30 // wxMask
31 //-----------------------------------------------------------------------------
32
33 class WXDLLIMPEXP_CORE wxMask: public wxObject
34 {
35 public:
36 wxMask();
37 wxMask( const wxBitmap& bitmap, const wxColour& colour );
38 wxMask( const wxBitmap& bitmap, int paletteIndex );
39 wxMask( const wxBitmap& bitmap );
40 virtual ~wxMask();
41
42 bool Create( const wxBitmap& bitmap, const wxColour& colour );
43 bool Create( const wxBitmap& bitmap, int paletteIndex );
44 bool Create( const wxBitmap& bitmap );
45
46 // implementation
47 WXPixmap GetBitmap() const { return m_bitmap; }
48 void SetBitmap( WXPixmap bitmap ) { m_bitmap = bitmap; }
49
50 WXDisplay *GetDisplay() const { return m_display; }
51 void SetDisplay( WXDisplay *display ) { m_display = display; }
52
53 private:
54 WXPixmap m_bitmap;
55 WXDisplay *m_display;
56
57 private:
58 DECLARE_DYNAMIC_CLASS(wxMask)
59 };
60
61 //-----------------------------------------------------------------------------
62 // wxBitmap
63 //-----------------------------------------------------------------------------
64
65 class WXDLLIMPEXP_CORE wxBitmapHandler: public wxBitmapHandlerBase
66 {
67 DECLARE_ABSTRACT_CLASS(wxBitmapHandler)
68 };
69
70 class WXDLLIMPEXP_CORE wxBitmap: public wxBitmapBase
71 {
72 public:
73 wxBitmap();
74 wxBitmap( int width, int height, int depth = -1 );
75 wxBitmap( const char bits[], int width, int height, int depth = 1 );
76 wxBitmap( const char* const* bits );
77 wxBitmap( const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_XPM );
78 virtual ~wxBitmap();
79
80 bool operator == ( const wxBitmap& bmp ) const;
81 bool operator != ( const wxBitmap& bmp ) const;
82 bool Ok() const;
83
84 static void InitStandardHandlers();
85
86 bool Create(int width, int height, int depth = -1);
87 bool Create(const void* data, wxBitmapType type,
88 int width, int height, int depth = -1);
89 // create the wxBitmap using a _copy_ of the pixmap
90 bool Create(WXPixmap pixmap);
91
92 int GetHeight() const;
93 int GetWidth() const;
94 int GetDepth() const;
95
96 #if wxUSE_IMAGE
97 wxBitmap( const wxImage& image, int depth = -1 ) { (void)CreateFromImage(image, depth); }
98 wxImage ConvertToImage() const;
99 bool CreateFromImage(const wxImage& image, int depth = -1);
100 #endif // wxUSE_IMAGE
101
102 // copies the contents and mask of the given (colour) icon to the bitmap
103 virtual bool CopyFromIcon(const wxIcon& icon);
104
105 wxMask *GetMask() const;
106 void SetMask( wxMask *mask );
107
108 wxBitmap GetSubBitmap( const wxRect& rect ) const;
109
110 bool SaveFile( const wxString &name, wxBitmapType type, const wxPalette *palette = (wxPalette *) NULL ) const;
111 bool LoadFile( const wxString &name, wxBitmapType type = wxBITMAP_TYPE_XPM );
112
113 wxPalette *GetPalette() const;
114 wxPalette *GetColourMap() const
115 { return GetPalette(); };
116 virtual void SetPalette(const wxPalette& palette);
117
118 // implementation
119 // --------------
120
121 void SetHeight( int height );
122 void SetWidth( int width );
123 void SetDepth( int depth );
124 void SetPixmap( WXPixmap pixmap );
125 void SetBitmap( WXPixmap bitmap );
126
127 WXPixmap GetPixmap() const;
128 WXPixmap GetBitmap() const;
129
130 WXPixmap GetDrawable() const;
131
132 WXDisplay *GetDisplay() const;
133
134 private:
135 DECLARE_DYNAMIC_CLASS(wxBitmap)
136 };
137
138 #endif
139 // _WX_BITMAP_H_