]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/bitmap.h
remove redundant GdkBitmap representation from wxBitmap
[wxWidgets.git] / include / wx / gtk / bitmap.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/bitmap.h
3 // Purpose:
4 // Author: Robert Roebling
5 // RCS-ID: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef __GTKBITMAPH__
12 #define __GTKBITMAPH__
13
14 #include "wx/defs.h"
15 #include "wx/object.h"
16 #include "wx/string.h"
17 #include "wx/palette.h"
18 #include "wx/gdiobj.h"
19
20 typedef struct _GdkPixbuf GdkPixbuf;
21
22 class WXDLLEXPORT wxPixelDataBase;
23
24 //-----------------------------------------------------------------------------
25 // classes
26 //-----------------------------------------------------------------------------
27
28 class WXDLLIMPEXP_CORE wxMask;
29 class WXDLLIMPEXP_CORE wxBitmap;
30 class WXDLLIMPEXP_CORE wxImage;
31
32 //-----------------------------------------------------------------------------
33 // wxMask
34 //-----------------------------------------------------------------------------
35
36 class WXDLLIMPEXP_CORE wxMask: public wxObject
37 {
38 public:
39 wxMask();
40 wxMask( const wxBitmap& bitmap, const wxColour& colour );
41 #if wxUSE_PALETTE
42 wxMask( const wxBitmap& bitmap, int paletteIndex );
43 #endif // wxUSE_PALETTE
44 wxMask( const wxBitmap& bitmap );
45 ~wxMask();
46
47 bool Create( const wxBitmap& bitmap, const wxColour& colour );
48 #if wxUSE_PALETTE
49 bool Create( const wxBitmap& bitmap, int paletteIndex );
50 #endif // wxUSE_PALETTE
51 bool Create( const wxBitmap& bitmap );
52
53 // implementation
54 GdkBitmap *m_bitmap;
55
56 GdkBitmap *GetBitmap() const;
57
58 private:
59 DECLARE_DYNAMIC_CLASS(wxMask)
60 };
61
62 //-----------------------------------------------------------------------------
63 // wxBitmap
64 //-----------------------------------------------------------------------------
65
66 class WXDLLIMPEXP_CORE wxBitmap: public wxBitmapBase
67 {
68 public:
69 wxBitmap();
70 wxBitmap( int width, int height, int depth = -1 );
71 wxBitmap( const char bits[], int width, int height, int depth = 1 );
72 wxBitmap( const char **bits ) { (void)CreateFromXpm(bits); }
73 wxBitmap( char **bits ) { (void)CreateFromXpm((const char **)bits); }
74 wxBitmap( const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_XPM );
75 wxBitmap( const wxImage& image, int depth = -1 ) { (void)CreateFromImage(image, depth); }
76 ~wxBitmap();
77 bool operator == ( const wxBitmap& bmp ) const;
78 bool operator != ( const wxBitmap& bmp ) const;
79 bool Ok() const;
80
81 bool Create(int width, int height, int depth = -1);
82
83 int GetHeight() const;
84 int GetWidth() const;
85 int GetDepth() const;
86
87 wxImage ConvertToImage() const;
88
89 // copies the contents and mask of the given (colour) icon to the bitmap
90 virtual bool CopyFromIcon(const wxIcon& icon);
91
92 wxMask *GetMask() const;
93 void SetMask( wxMask *mask );
94
95 wxBitmap GetSubBitmap( const wxRect& rect ) const;
96
97 bool SaveFile(const wxString &name, wxBitmapType type,
98 const wxPalette *palette = (wxPalette *)NULL) const;
99 bool LoadFile(const wxString &name, wxBitmapType type = wxBITMAP_TYPE_XPM );
100
101 #if wxUSE_PALETTE
102 wxPalette *GetPalette() const;
103 void SetPalette(const wxPalette& palette);
104 wxPalette *GetColourMap() const { return GetPalette(); };
105 #endif // wxUSE_PALETTE
106
107 static void InitStandardHandlers();
108
109 // implementation
110 // --------------
111
112 void SetHeight( int height );
113 void SetWidth( int width );
114 void SetDepth( int depth );
115 void SetPixmap( GdkPixmap *pixmap );
116 void SetPixbuf(GdkPixbuf *pixbuf);
117
118 GdkPixmap *GetPixmap() const;
119 bool HasPixmap() const;
120 bool HasPixbuf() const;
121 GdkPixbuf *GetPixbuf() const;
122
123 // Basically, this corresponds to Win32 StretchBlt()
124 wxBitmap Rescale( int clipx, int clipy, int clipwidth, int clipheight, int width, int height );
125
126 // raw bitmap access support functions
127 void *GetRawData(wxPixelDataBase& data, int bpp);
128 void UngetRawData(wxPixelDataBase& data);
129
130 bool HasAlpha() const;
131 void UseAlpha();
132
133 protected:
134 bool CreateFromXpm(const char **bits);
135 bool CreateFromImage(const wxImage& image, int depth);
136
137 private:
138 // to be called from CreateFromImage only!
139 bool CreateFromImageAsBitmap(const wxImage& image);
140 bool CreateFromImageAsPixmap(const wxImage& image);
141
142 bool CreateFromImageAsPixbuf(const wxImage& image);
143
144 enum Representation
145 {
146 Pixmap,
147 Pixbuf
148 };
149 // removes other representations from memory, keeping only 'keep'
150 // (wxBitmap may keep same bitmap e.g. as both pixmap and pixbuf):
151 void PurgeOtherRepresentations(Representation keep);
152
153 friend class wxMemoryDC;
154 friend class wxBitmapHandler;
155
156 private:
157 DECLARE_DYNAMIC_CLASS(wxBitmap)
158 };
159
160 //-----------------------------------------------------------------------------
161 // wxBitmapHandler
162 //-----------------------------------------------------------------------------
163
164 class WXDLLIMPEXP_CORE wxBitmapHandler: public wxBitmapHandlerBase
165 {
166 public:
167 wxBitmapHandler() { }
168 virtual ~wxBitmapHandler();
169
170 virtual bool Create(wxBitmap *bitmap, void *data, long flags, int width, int height, int depth = 1);
171 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
172 int desiredWidth, int desiredHeight);
173 virtual bool SaveFile(const wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette = NULL);
174
175 private:
176 DECLARE_DYNAMIC_CLASS(wxBitmapHandler)
177 };
178
179
180 #endif // __GTKBITMAPH__