]> git.saurik.com Git - wxWidgets.git/blame - include/wx/x11/bitmap.h
Fix missing documentation for several GDI functions.
[wxWidgets.git] / include / wx / x11 / bitmap.h
CommitLineData
83df96d6 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/x11/bitmap.h
83df96d6 3// Purpose: wxBitmap class
a11672a4 4// Author: Julian Smart, Robert Roebling
83df96d6
JS
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
a11672a4 8// Copyright: (c) Julian Smart, Robert Roebling
65571936 9// Licence: wxWindows licence
83df96d6
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BITMAP_H_
13#define _WX_BITMAP_H_
14
a11672a4
RR
15#include "wx/defs.h"
16#include "wx/object.h"
17#include "wx/string.h"
83df96d6 18#include "wx/palette.h"
a11672a4
RR
19#include "wx/gdiobj.h"
20
21//-----------------------------------------------------------------------------
22// classes
23//-----------------------------------------------------------------------------
24
b5dbe15d
VS
25class WXDLLIMPEXP_FWD_CORE wxMask;
26class WXDLLIMPEXP_FWD_CORE wxBitmap;
27class WXDLLIMPEXP_FWD_CORE wxImage;
83df96d6 28
a11672a4
RR
29//-----------------------------------------------------------------------------
30// wxMask
31//-----------------------------------------------------------------------------
32
968eb2ef 33class WXDLLIMPEXP_CORE wxMask: public wxObject
83df96d6 34{
83df96d6
JS
35public:
36 wxMask();
04a8da5f 37 wxMask(const wxMask& mask);
a11672a4
RR
38 wxMask( const wxBitmap& bitmap, const wxColour& colour );
39 wxMask( const wxBitmap& bitmap, int paletteIndex );
40 wxMask( const wxBitmap& bitmap );
d3c7fc99 41 virtual ~wxMask();
6298b8d0 42
a11672a4
RR
43 bool Create( const wxBitmap& bitmap, const wxColour& colour );
44 bool Create( const wxBitmap& bitmap, int paletteIndex );
45 bool Create( const wxBitmap& bitmap );
83df96d6 46
a11672a4
RR
47 // implementation
48 WXPixmap GetBitmap() const { return m_bitmap; }
49 void SetBitmap( WXPixmap bitmap ) { m_bitmap = bitmap; }
6298b8d0 50
a11672a4
RR
51 WXDisplay *GetDisplay() const { return m_display; }
52 void SetDisplay( WXDisplay *display ) { m_display = display; }
6298b8d0 53
a11672a4
RR
54private:
55 WXPixmap m_bitmap;
56 WXDisplay *m_display;
04a8da5f 57 wxSize m_size;
6298b8d0 58
a11672a4
RR
59private:
60 DECLARE_DYNAMIC_CLASS(wxMask)
83df96d6
JS
61};
62
a11672a4
RR
63//-----------------------------------------------------------------------------
64// wxBitmap
65//-----------------------------------------------------------------------------
83df96d6 66
968eb2ef 67class WXDLLIMPEXP_CORE wxBitmap: public wxBitmapBase
83df96d6 68{
83df96d6 69public:
732d8c74
FM
70 wxBitmap() {}
71 wxBitmap( int width, int height, int depth = -1 ) { Create( width, height, depth ); }
72 wxBitmap( const wxSize& sz, int depth = -1 ) { Create( sz, depth ); }
03647350 73
a11672a4 74 wxBitmap( const char bits[], int width, int height, int depth = 1 );
452418c4 75 wxBitmap( const char* const* bits );
459f812b 76#ifdef wxNEEDS_CHARPP
4a4bf7ee
SN
77 // needed for old GCC
78 wxBitmap(char** data)
79 {
5c33522f 80 *this = wxBitmap(const_cast<const char* const*>(data));
4a4bf7ee
SN
81 }
82#endif
cbea3ec6 83 wxBitmap( const wxString &filename, wxBitmapType type = wxBITMAP_DEFAULT_TYPE );
6298b8d0
VZ
84 virtual ~wxBitmap();
85
62ad3cb3
MB
86 static void InitStandardHandlers();
87
732d8c74
FM
88 bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
89 bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
90 { return Create(sz.GetWidth(), sz.GetHeight(), depth); }
7f74897f
SC
91 bool Create(int width, int height, const wxDC& WXUNUSED(dc))
92 { return Create(width,height); }
732d8c74 93
452418c4 94 bool Create(const void* data, wxBitmapType type,
62ad3cb3 95 int width, int height, int depth = -1);
dd38c875
MB
96 // create the wxBitmap using a _copy_ of the pixmap
97 bool Create(WXPixmap pixmap);
62ad3cb3 98
a11672a4
RR
99 int GetHeight() const;
100 int GetWidth() const;
101 int GetDepth() const;
6298b8d0
VZ
102
103#if wxUSE_IMAGE
104 wxBitmap( const wxImage& image, int depth = -1 ) { (void)CreateFromImage(image, depth); }
a11672a4 105 wxImage ConvertToImage() const;
6298b8d0
VZ
106 bool CreateFromImage(const wxImage& image, int depth = -1);
107#endif // wxUSE_IMAGE
83df96d6 108
a11672a4
RR
109 // copies the contents and mask of the given (colour) icon to the bitmap
110 virtual bool CopyFromIcon(const wxIcon& icon);
83df96d6 111
a11672a4
RR
112 wxMask *GetMask() const;
113 void SetMask( wxMask *mask );
6298b8d0 114
83df96d6 115 wxBitmap GetSubBitmap( const wxRect& rect ) const;
7266b672 116
d3b9f782 117 bool SaveFile( const wxString &name, wxBitmapType type, const wxPalette *palette = NULL ) const;
cbea3ec6 118 bool LoadFile( const wxString &name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE );
a11672a4
RR
119
120 wxPalette *GetPalette() const;
121 wxPalette *GetColourMap() const
6dd0883d 122 { return GetPalette(); }
62ad3cb3 123 virtual void SetPalette(const wxPalette& palette);
a11672a4
RR
124
125 // implementation
126 // --------------
127
128 void SetHeight( int height );
129 void SetWidth( int width );
130 void SetDepth( int depth );
131 void SetPixmap( WXPixmap pixmap );
132 void SetBitmap( WXPixmap bitmap );
133
134 WXPixmap GetPixmap() const;
135 WXPixmap GetBitmap() const;
a29c6824
MB
136
137 WXPixmap GetDrawable() const;
138
a11672a4 139 WXDisplay *GetDisplay() const;
6298b8d0 140
dd21c826 141protected:
8f884a0d
VZ
142 virtual wxGDIRefData *CreateGDIRefData() const;
143 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
dd21c826 144
a11672a4
RR
145private:
146 DECLARE_DYNAMIC_CLASS(wxBitmap)
147};
83df96d6 148
dd21c826 149#endif // _WX_BITMAP_H_