1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/bitmap.h
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKBITMAPH__
12 #define __GTKBITMAPH__
15 #include "wx/object.h"
16 #include "wx/string.h"
17 #include "wx/palette.h"
18 #include "wx/gdiobj.h"
20 class WXDLLIMPEXP_FWD_CORE wxPixelDataBase
;
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 class WXDLLIMPEXP_FWD_CORE wxMask
;
27 class WXDLLIMPEXP_FWD_CORE wxBitmap
;
28 class WXDLLIMPEXP_FWD_CORE wxImage
;
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 class WXDLLIMPEXP_CORE wxMask
: public wxObject
38 wxMask( const wxBitmap
& bitmap
, const wxColour
& colour
);
40 wxMask( const wxBitmap
& bitmap
, int paletteIndex
);
41 #endif // wxUSE_PALETTE
42 wxMask( const wxBitmap
& bitmap
);
45 bool Create( const wxBitmap
& bitmap
, const wxColour
& colour
);
47 bool Create( const wxBitmap
& bitmap
, int paletteIndex
);
48 #endif // wxUSE_PALETTE
49 bool Create( const wxBitmap
& bitmap
);
54 GdkBitmap
*GetBitmap() const;
57 DECLARE_DYNAMIC_CLASS(wxMask
)
60 //-----------------------------------------------------------------------------
62 //-----------------------------------------------------------------------------
64 class WXDLLIMPEXP_CORE wxBitmap
: public wxBitmapBase
68 wxBitmap( int width
, int height
, int depth
= -1 );
69 wxBitmap( const char bits
[], int width
, int height
, int depth
= 1 );
70 wxBitmap( const char* const* bits
);
75 *this = wxBitmap(wx_const_cast(const char* const*, data
));
78 wxBitmap( const wxString
&filename
, wxBitmapType type
= wxBITMAP_TYPE_XPM
);
79 wxBitmap( const wxImage
& image
, int depth
= -1 ) { (void)CreateFromImage(image
, depth
); }
82 bool Create(int width
, int height
, int depth
= -1);
84 virtual int GetHeight() const;
85 virtual int GetWidth() const;
86 virtual int GetDepth() const;
88 wxImage
ConvertToImage() const;
90 // copies the contents and mask of the given (colour) icon to the bitmap
91 virtual bool CopyFromIcon(const wxIcon
& icon
);
93 wxMask
*GetMask() const;
94 void SetMask( wxMask
*mask
);
96 wxBitmap
GetSubBitmap( const wxRect
& rect
) const;
98 bool SaveFile(const wxString
&name
, wxBitmapType type
,
99 const wxPalette
*palette
= (wxPalette
*)NULL
) const;
100 bool LoadFile(const wxString
&name
, wxBitmapType type
= wxBITMAP_TYPE_XPM
);
103 wxPalette
*GetPalette() const;
104 void SetPalette(const wxPalette
& palette
);
105 wxPalette
*GetColourMap() const { return GetPalette(); };
106 #endif // wxUSE_PALETTE
108 static void InitStandardHandlers();
113 void SetHeight( int height
);
114 void SetWidth( int width
);
115 void SetDepth( int depth
);
116 void SetPixmap( GdkPixmap
*pixmap
);
117 void SetBitmap( GdkBitmap
*bitmap
);
119 GdkPixmap
*GetPixmap() const;
120 GdkBitmap
*GetBitmap() const;
121 bool HasPixmap() const;
123 // Basically, this corresponds to Win32 StretchBlt()
124 wxBitmap
Rescale( int clipx
, int clipy
, int clipwidth
, int clipheight
, int width
, int height
);
126 // raw bitmap access support functions
127 void *GetRawData(wxPixelDataBase
& data
, int bpp
);
128 void UngetRawData(wxPixelDataBase
& data
);
130 bool HasAlpha() const;
133 bool CreateFromImage(const wxImage
& image
, int depth
);
135 virtual wxGDIRefData
*CreateGDIRefData() const;
136 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
139 // to be called from CreateFromImage only!
140 bool CreateFromImageAsBitmap(const wxImage
& image
);
141 bool CreateFromImageAsPixmap(const wxImage
& image
);
143 friend class wxBitmapHandler
;
146 DECLARE_DYNAMIC_CLASS(wxBitmap
)
150 #endif // __GTKBITMAPH__