]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/bitmap.h
fix saving/restoring size when WM supports _NET_FRAME_EXTENTS but not _NET_REQUEST_FR...
[wxWidgets.git] / include / wx / gtk / bitmap.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
0b04c4e0 2// Name: wx/gtk/bitmap.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
6f65e337 5// RCS-ID: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
0416c418
PC
10#ifndef _WX_GTK_BITMAP_H_
11#define _WX_GTK_BITMAP_H_
c801d85f 12
feac7937 13typedef struct _GdkPixbuf GdkPixbuf;
b5dbe15d 14class WXDLLIMPEXP_FWD_CORE wxPixelDataBase;
f383c5b8 15
c801d85f
KB
16//-----------------------------------------------------------------------------
17// wxMask
18//-----------------------------------------------------------------------------
19
20123d49 20class WXDLLIMPEXP_CORE wxMask: public wxObject
c801d85f 21{
fd0eed64 22public:
8636aed8
RR
23 wxMask();
24 wxMask( const wxBitmap& bitmap, const wxColour& colour );
0b04c4e0 25#if wxUSE_PALETTE
8636aed8 26 wxMask( const wxBitmap& bitmap, int paletteIndex );
0b04c4e0 27#endif // wxUSE_PALETTE
8636aed8 28 wxMask( const wxBitmap& bitmap );
d3c7fc99 29 virtual ~wxMask();
0b04c4e0 30
8636aed8 31 bool Create( const wxBitmap& bitmap, const wxColour& colour );
0b04c4e0 32#if wxUSE_PALETTE
8636aed8 33 bool Create( const wxBitmap& bitmap, int paletteIndex );
0b04c4e0 34#endif // wxUSE_PALETTE
8636aed8
RR
35 bool Create( const wxBitmap& bitmap );
36
37 // implementation
38 GdkBitmap *m_bitmap;
0b04c4e0 39
8636aed8 40 GdkBitmap *GetBitmap() const;
0b04c4e0 41
8636aed8
RR
42private:
43 DECLARE_DYNAMIC_CLASS(wxMask)
c801d85f
KB
44};
45
46//-----------------------------------------------------------------------------
47// wxBitmap
48//-----------------------------------------------------------------------------
49
20123d49 50class WXDLLIMPEXP_CORE wxBitmap: public wxBitmapBase
c801d85f 51{
fd0eed64 52public:
23656673 53 wxBitmap() { }
e86f2cc8 54 wxBitmap( int width, int height, int depth = wxBITMAP_SCREEN_DEPTH );
8636aed8 55 wxBitmap( const char bits[], int width, int height, int depth = 1 );
452418c4 56 wxBitmap( const char* const* bits );
459f812b 57#ifdef wxNEEDS_CHARPP
4a4bf7ee
SN
58 // needed for old GCC
59 wxBitmap(char** data)
5c33522f 60 { *this = wxBitmap(const_cast<const char* const*>(data)); }
4a4bf7ee 61#endif
cbea3ec6 62 wxBitmap( const wxString &filename, wxBitmapType type = wxBITMAP_DEFAULT_TYPE );
c0521644 63#if wxUSE_IMAGE
e86f2cc8
FM
64 wxBitmap( const wxImage& image, int depth = wxBITMAP_SCREEN_DEPTH )
65 { (void)CreateFromImage(image, depth); }
c0521644 66#endif // wxUSE_IMAGE
d3c7fc99 67 virtual ~wxBitmap();
8636aed8 68
e86f2cc8 69 bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
0b04c4e0 70
8f884a0d
VZ
71 virtual int GetHeight() const;
72 virtual int GetWidth() const;
73 virtual int GetDepth() const;
0b04c4e0 74
c0521644 75#if wxUSE_IMAGE
fd859211 76 wxImage ConvertToImage() const;
c0521644 77#endif // wxUSE_IMAGE
8636aed8 78
db0aec83
VS
79 // copies the contents and mask of the given (colour) icon to the bitmap
80 virtual bool CopyFromIcon(const wxIcon& icon);
81
8636aed8
RR
82 wxMask *GetMask() const;
83 void SetMask( wxMask *mask );
0b04c4e0 84
17bec151 85 wxBitmap GetSubBitmap( const wxRect& rect ) const;
8636aed8 86
4611dd06
RR
87 bool SaveFile(const wxString &name, wxBitmapType type,
88 const wxPalette *palette = (wxPalette *)NULL) const;
cbea3ec6 89 bool LoadFile(const wxString &name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE);
8636aed8 90
4611dd06 91#if wxUSE_PALETTE
8636aed8 92 wxPalette *GetPalette() const;
4611dd06 93 void SetPalette(const wxPalette& palette);
55e90a2e 94 wxPalette *GetColourMap() const { return GetPalette(); };
4611dd06 95#endif // wxUSE_PALETTE
55e90a2e 96
4b61c88d 97 static void InitStandardHandlers();
8bbe427f 98
8636aed8 99 // implementation
20e05ffb 100 // --------------
c801d85f 101
8636aed8
RR
102 void SetHeight( int height );
103 void SetWidth( int width );
104 void SetDepth( int depth );
105 void SetPixmap( GdkPixmap *pixmap );
23656673 106 void SetPixbuf(GdkPixbuf* pixbuf, int depth = 0);
8bbe427f 107
8636aed8 108 GdkPixmap *GetPixmap() const;
feac7937 109 bool HasPixmap() const;
feac7937
VS
110 bool HasPixbuf() const;
111 GdkPixbuf *GetPixbuf() const;
0b04c4e0 112
783da845 113 // Basically, this corresponds to Win32 StretchBlt()
e86f2cc8
FM
114 wxBitmap Rescale(int clipx, int clipy, int clipwidth, int clipheight,
115 int width, int height) const;
0b04c4e0 116
284f2b59
RR
117 // raw bitmap access support functions
118 void *GetRawData(wxPixelDataBase& data, int bpp);
119 void UngetRawData(wxPixelDataBase& data);
120
0ff2a74d 121 bool HasAlpha() const;
d2400c3f 122
e838cc14 123protected:
c0521644 124#if wxUSE_IMAGE
fd859211 125 bool CreateFromImage(const wxImage& image, int depth);
c0521644 126#endif // wxUSE_IMAGE
e838cc14 127
8f884a0d
VZ
128 virtual wxGDIRefData* CreateGDIRefData() const;
129 virtual wxGDIRefData* CloneGDIRefData(const wxGDIRefData* data) const;
4c44e0d0 130
8636aed8 131private:
c0521644 132#if wxUSE_IMAGE
feac7937 133 // to be called from CreateFromImage only!
5ac1d44a 134 bool CreateFromImageAsPixmap(const wxImage& image, int depth);
feac7937 135 bool CreateFromImageAsPixbuf(const wxImage& image);
c0521644 136#endif // wxUSE_IMAGE
feac7937 137
ab171e95
RR
138public:
139 // implementation only
feac7937
VS
140 enum Representation
141 {
142 Pixmap,
143 Pixbuf
144 };
145 // removes other representations from memory, keeping only 'keep'
146 // (wxBitmap may keep same bitmap e.g. as both pixmap and pixbuf):
147 void PurgeOtherRepresentations(Representation keep);
148
0b04c4e0 149private:
8636aed8 150 DECLARE_DYNAMIC_CLASS(wxBitmap)
c801d85f
KB
151};
152
0416c418 153#endif // _WX_GTK_BITMAP_H_