]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/bitmap.h
added def value for Create() id parameter
[wxWidgets.git] / include / wx / mac / bitmap.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: bitmap.h
3// Purpose: wxBitmap class
a31a5f85 4// Author: Stefan Csomor
0dbd6262 5// Modified by:
a31a5f85 6// Created: 1998-01-01
0dbd6262 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
d921af51 9// Licence: wxWindows licence
0dbd6262
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BITMAP_H_
13#define _WX_BITMAP_H_
14
af49c4b8 15#if defined(__GNUG__) && !defined(__APPLE__)
b698c8e9 16 #pragma interface "bitmap.h"
0dbd6262
SC
17#endif
18
0dbd6262
SC
19#include "wx/palette.h"
20
21// Bitmap
0dbd6262
SC
22class WXDLLEXPORT wxBitmap;
23class WXDLLEXPORT wxBitmapHandler;
55e18dbe 24class WXDLLEXPORT wxControl;
0dbd6262 25class WXDLLEXPORT wxCursor;
55e18dbe
VZ
26class WXDLLEXPORT wxDC;
27class WXDLLEXPORT wxIcon;
fd859211 28class WXDLLEXPORT wxImage;
55e18dbe 29class WXDLLEXPORT wxPixelDataBase;
0dbd6262 30
e9d804eb
SC
31// A mask is a bitmap used for drawing bitmaps
32// it can be a monochrome bitmap or a multi-bit bitmap which transfers to alpha channels
0dbd6262
SC
33// transparently.
34class WXDLLEXPORT wxMask: public wxObject
35{
be52b341
GD
36 DECLARE_DYNAMIC_CLASS(wxMask)
37 DECLARE_NO_COPY_CLASS(wxMask)
0dbd6262
SC
38
39public:
40 wxMask();
41
42 // Construct a mask from a bitmap and a colour indicating
43 // the transparent area
44 wxMask(const wxBitmap& bitmap, const wxColour& colour);
45
46 // Construct a mask from a bitmap and a palette index indicating
47 // the transparent area
48 wxMask(const wxBitmap& bitmap, int paletteIndex);
49
50 // Construct a mask from a mono bitmap (copies the bitmap).
51 wxMask(const wxBitmap& bitmap);
52
53 ~wxMask();
54
55 bool Create(const wxBitmap& bitmap, const wxColour& colour);
56 bool Create(const wxBitmap& bitmap, int paletteIndex);
57 bool Create(const wxBitmap& bitmap);
58
0dbd6262 59 // Implementation
5fde6fcc 60 bool PointMasked(int x, int y);
0dbd6262
SC
61 inline WXHBITMAP GetMaskBitmap() const { return m_maskBitmap; }
62 inline void SetMaskBitmap(WXHBITMAP bmp) { m_maskBitmap = bmp; }
e9d804eb
SC
63 int GetDepth() const { return m_depth ; }
64 void SetDepth( int depth ) { m_depth = depth ; }
0dbd6262
SC
65protected:
66 WXHBITMAP m_maskBitmap;
e9d804eb 67 int m_depth ;
0dbd6262
SC
68};
69
3dec57ad 70enum { kMacBitmapTypeUnknownType , kMacBitmapTypeGrafWorld, kMacBitmapTypePict , kMacBitmapTypeIcon } ;
519cb848 71
0dbd6262
SC
72class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData
73{
be52b341
GD
74 DECLARE_NO_COPY_CLASS(wxBitmapRefData)
75
0dbd6262
SC
76 friend class WXDLLEXPORT wxBitmap;
77 friend class WXDLLEXPORT wxIcon;
78 friend class WXDLLEXPORT wxCursor;
79public:
80 wxBitmapRefData();
81 ~wxBitmapRefData();
82
83public:
84 int m_width;
85 int m_height;
86 int m_depth;
87 bool m_ok;
88 int m_numColors;
89 wxPalette m_bitmapPalette;
90 int m_quality;
91
d921af51
JS
92 int m_bitmapType ;
93 WXHMETAFILE m_hPict ;
be52b341
GD
94 WXHBITMAP m_hBitmap;
95 WXHICON m_hIcon ;
0dbd6262
SC
96 wxMask * m_bitmapMask; // Optional mask
97};
98
99#define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
100
584bede0 101class WXDLLEXPORT wxBitmapHandler: public wxBitmapHandlerBase
0dbd6262
SC
102{
103 DECLARE_DYNAMIC_CLASS(wxBitmapHandler)
104public:
be52b341
GD
105 wxBitmapHandler() : m_name(), m_extension(), m_type(0) { }
106 virtual ~wxBitmapHandler();
0dbd6262
SC
107
108 virtual bool Create(wxBitmap *bitmap, void *data, long flags, int width, int height, int depth = 1);
109 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
110 int desiredWidth, int desiredHeight);
584bede0 111 virtual bool SaveFile(const wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette = NULL);
0dbd6262 112
be52b341
GD
113 void SetName(const wxString& name) { m_name = name; }
114 void SetExtension(const wxString& ext) { m_extension = ext; }
115 void SetType(long type) { m_type = type; }
116 wxString GetName() const { return m_name; }
117 wxString GetExtension() const { return m_extension; }
118 long GetType() const { return m_type; }
119
0dbd6262
SC
120protected:
121 wxString m_name;
122 wxString m_extension;
123 long m_type;
124};
125
126#define M_BITMAPHANDLERDATA ((wxBitmapRefData *)bitmap->GetRefData())
127
584bede0 128class WXDLLEXPORT wxBitmap: public wxBitmapBase
0dbd6262
SC
129{
130 DECLARE_DYNAMIC_CLASS(wxBitmap)
131
132 friend class WXDLLEXPORT wxBitmapHandler;
133
134public:
135 wxBitmap(); // Platform-specific
136
137 // Copy constructors
be52b341
GD
138 wxBitmap(const wxBitmap& bitmap)
139 : wxBitmapBase()
d71c423e 140 { Ref(bitmap); }
0dbd6262
SC
141
142 // Initialize with raw data.
143 wxBitmap(const char bits[], int width, int height, int depth = 1);
144
0dbd6262 145 // Initialize with XPM data
b7d667c5
GD
146 bool CreateFromXpm(const char **bits);
147 wxBitmap(const char **bits);
148 wxBitmap(char **bits);
0dbd6262
SC
149
150 // Load a file or resource
584bede0 151 wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_PICT_RESOURCE);
0dbd6262
SC
152
153 // Constructor for generalised creation from data
584bede0 154 wxBitmap(void *data, wxBitmapType type, int width, int height, int depth = 1);
0dbd6262
SC
155
156 // If depth is omitted, will create a bitmap compatible with the display
157 wxBitmap(int width, int height, int depth = -1);
fd859211
VS
158
159 // Convert from wxImage:
160 wxBitmap(const wxImage& image, int depth = -1);
161
0dbd6262 162 ~wxBitmap();
fd859211
VS
163
164 wxImage ConvertToImage() const;
0dbd6262 165
5fde6fcc
GD
166 // get the given part of bitmap
167 wxBitmap GetSubBitmap( const wxRect& rect ) const;
168
0dbd6262 169 virtual bool Create(int width, int height, int depth = -1);
584bede0
GD
170 virtual bool Create(void *data, wxBitmapType type, int width, int height, int depth = 1);
171 virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE);
172 virtual bool SaveFile(const wxString& name, wxBitmapType type, const wxPalette *cmap = NULL) const;
173
174 // copies the contents and mask of the given (colour) icon to the bitmap
175 virtual bool CopyFromIcon(const wxIcon& icon);
0dbd6262 176
5fde6fcc
GD
177 bool Ok() const;
178 int GetWidth() const;
179 int GetHeight() const;
180 int GetDepth() const;
181 int GetQuality() const;
0dbd6262
SC
182 void SetWidth(int w);
183 void SetHeight(int h);
184 void SetDepth(int d);
185 void SetQuality(int q);
186 void SetOk(bool isOk);
187
5fde6fcc 188 wxPalette* GetPalette() const;
0dbd6262
SC
189 void SetPalette(const wxPalette& palette);
190
5fde6fcc 191 wxMask *GetMask() const;
0dbd6262
SC
192 void SetMask(wxMask *mask) ;
193
5fde6fcc
GD
194 int GetBitmapType() const;
195
0dbd6262 196 inline wxBitmap& operator = (const wxBitmap& bitmap) { if (*this == bitmap) return (*this); Ref(bitmap); return *this; }
15e758d1
GD
197 inline bool operator == (const wxBitmap& bitmap) const { return m_refData == bitmap.m_refData; }
198 inline bool operator != (const wxBitmap& bitmap) const { return m_refData != bitmap.m_refData; }
0dbd6262 199
0dbd6262 200 static void InitStandardHandlers();
55e18dbe
VZ
201
202 // raw bitmap access support functions
203 void *GetRawData(wxPixelDataBase& data, int bpp);
204 void UngetRawData(wxPixelDataBase& data);
205
206 void UseAlpha();
207
0dbd6262 208public:
5fde6fcc 209 WXHBITMAP GetHBITMAP() const;
3dec57ad 210 inline WXHICON GetHICON() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_hIcon : 0); }
1c522100
SC
211 WXHMETAFILE GetPict(bool *created = NULL ) const;
212
213 void SetHBITMAP(WXHBITMAP bmp);
214 void SetHICON(WXHICON ico);
215 void SetPict( WXHMETAFILE pict ) ;
5fde6fcc 216
0dbd6262 217 bool FreeResource(bool force = FALSE);
0dbd6262
SC
218};
219#endif
220 // _WX_BITMAP_H_