]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: bitmap.h | |
3 | // Purpose: interface of wxBitmap* classes | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | ||
10 | /** | |
11 | In wxBitmap and wxBitmapHandler context this value means: "use the screen depth". | |
12 | */ | |
13 | #define wxBITMAP_SCREEN_DEPTH (-1) | |
14 | ||
15 | /** | |
16 | @class wxBitmapHandler | |
17 | ||
18 | This is the base class for implementing bitmap file loading/saving, and | |
19 | bitmap creation from data. | |
20 | It is used within wxBitmap and is not normally seen by the application. | |
21 | ||
22 | If you wish to extend the capabilities of wxBitmap, derive a class from | |
23 | wxBitmapHandler and add the handler using wxBitmap::AddHandler() in your | |
24 | application initialization. | |
25 | ||
26 | Note that all wxBitmapHandlers provided by wxWidgets are part of the | |
27 | @ref page_libs_wxcore library. | |
28 | For details about the default handlers, please see the note in the | |
29 | wxBitmap class documentation. | |
30 | ||
31 | @library{wxcore} | |
32 | @category{gdi} | |
33 | ||
34 | @see @ref overview_bitmap, wxBitmap, wxIcon, wxCursor | |
35 | */ | |
36 | class wxBitmapHandler : public wxObject | |
37 | { | |
38 | public: | |
39 | /** | |
40 | Default constructor. | |
41 | ||
42 | In your own default constructor, initialise the members m_name, | |
43 | m_extension and m_type. | |
44 | */ | |
45 | wxBitmapHandler(); | |
46 | ||
47 | /** | |
48 | Destroys the wxBitmapHandler object. | |
49 | */ | |
50 | virtual ~wxBitmapHandler(); | |
51 | ||
52 | /** | |
53 | Creates a bitmap from the given data, which can be of arbitrary type. | |
54 | The wxBitmap object @a bitmap is manipulated by this function. | |
55 | ||
56 | @param bitmap | |
57 | The wxBitmap object. | |
58 | @param width | |
59 | The width of the bitmap in pixels. | |
60 | @param height | |
61 | The height of the bitmap in pixels. | |
62 | @param depth | |
63 | The depth of the bitmap in pixels. | |
64 | If this is ::wxBITMAP_SCREEN_DEPTH, the screen depth is used. | |
65 | @param data | |
66 | Data whose type depends on the value of type. | |
67 | @param type | |
68 | A bitmap type identifier - see ::wxBitmapType for a list | |
69 | of possible values. | |
70 | ||
71 | @return @true if the call succeeded, @false otherwise (the default). | |
72 | */ | |
73 | virtual bool Create(wxBitmap* bitmap, const void* data, wxBitmapType type, | |
74 | int width, int height, int depth = 1); | |
75 | ||
76 | /** | |
77 | Gets the file extension associated with this handler. | |
78 | */ | |
79 | const wxString& GetExtension() const; | |
80 | ||
81 | /** | |
82 | Gets the name of this handler. | |
83 | */ | |
84 | const wxString& GetName() const; | |
85 | ||
86 | /** | |
87 | Gets the bitmap type associated with this handler. | |
88 | */ | |
89 | wxBitmapType GetType() const; | |
90 | ||
91 | /** | |
92 | Loads a bitmap from a file or resource, putting the resulting data into | |
93 | @a bitmap. | |
94 | ||
95 | @param bitmap | |
96 | The bitmap object which is to be affected by this operation. | |
97 | @param name | |
98 | Either a filename or a Windows resource name. | |
99 | The meaning of name is determined by the type parameter. | |
100 | @param type | |
101 | See ::wxBitmapType for values this can take. | |
102 | @param desiredWidth | |
103 | The desired width for the loaded bitmap. | |
104 | @param desiredHeight | |
105 | The desired height for the loaded bitmap. | |
106 | ||
107 | @return @true if the operation succeeded, @false otherwise. | |
108 | ||
109 | @see wxBitmap::LoadFile, wxBitmap::SaveFile, SaveFile() | |
110 | */ | |
111 | virtual bool LoadFile(wxBitmap* bitmap, const wxString& name, wxBitmapType type, | |
112 | int desiredWidth, int desiredHeight); | |
113 | ||
114 | /** | |
115 | Saves a bitmap in the named file. | |
116 | ||
117 | @param bitmap | |
118 | The bitmap object which is to be affected by this operation. | |
119 | @param name | |
120 | A filename. The meaning of name is determined by the type parameter. | |
121 | @param type | |
122 | See ::wxBitmapType for values this can take. | |
123 | @param palette | |
124 | An optional palette used for saving the bitmap. | |
125 | ||
126 | @return @true if the operation succeeded, @false otherwise. | |
127 | ||
128 | @see wxBitmap::LoadFile, wxBitmap::SaveFile, LoadFile() | |
129 | */ | |
130 | virtual bool SaveFile(const wxBitmap* bitmap, const wxString& name, wxBitmapType type, | |
131 | const wxPalette* palette = NULL) const; | |
132 | ||
133 | /** | |
134 | Sets the handler extension. | |
135 | ||
136 | @param extension | |
137 | Handler extension. | |
138 | */ | |
139 | void SetExtension(const wxString& extension); | |
140 | ||
141 | /** | |
142 | Sets the handler name. | |
143 | ||
144 | @param name | |
145 | Handler name. | |
146 | */ | |
147 | void SetName(const wxString& name); | |
148 | ||
149 | /** | |
150 | Sets the handler type. | |
151 | ||
152 | @param type | |
153 | Handler type. | |
154 | */ | |
155 | void SetType(wxBitmapType type); | |
156 | }; | |
157 | ||
158 | ||
159 | /** | |
160 | @class wxBitmap | |
161 | ||
162 | This class encapsulates the concept of a platform-dependent bitmap, | |
163 | either monochrome or colour or colour with alpha channel support. | |
164 | ||
165 | If you need direct access the bitmap data instead going through | |
166 | drawing to it using wxMemoryDC you need to use the wxPixelData | |
167 | class (either wxNativePixelData for RGB bitmaps or wxAlphaPixelData | |
168 | for bitmaps with an additionaly alpha channel). | |
169 | ||
170 | Note that many wxBitmap functions take a @e type parameter, which is a | |
171 | value of the ::wxBitmapType enumeration. | |
172 | The validity of those values depends however on the platform where your program | |
173 | is running and from the wxWidgets configuration. | |
174 | If all possible wxWidgets settings are used: | |
175 | - wxMSW supports BMP and ICO files, BMP and ICO resources; | |
176 | - wxGTK supports XPM files; | |
177 | - wxMac supports PICT resources; | |
178 | - wxX11 supports XPM files, XPM data, XBM data; | |
179 | ||
180 | In addition, wxBitmap can load and save all formats that wxImage can; see wxImage | |
181 | for more info. Of course, you must have loaded the wxImage handlers | |
182 | (see ::wxInitAllImageHandlers() and wxImage::AddHandler). | |
183 | Note that all available wxBitmapHandlers for a given wxWidgets port are | |
184 | automatically loaded at startup so you won't need to use wxBitmap::AddHandler. | |
185 | ||
186 | @library{wxcore} | |
187 | @category{gdi} | |
188 | ||
189 | @stdobjects | |
190 | ::wxNullBitmap | |
191 | ||
192 | @see @ref overview_bitmap, @ref overview_bitmap_supportedformats, | |
193 | wxDC::Blit, wxIcon, wxCursor, wxMemoryDC, wxImage, wxPixelData | |
194 | */ | |
195 | class wxBitmap : public wxGDIObject | |
196 | { | |
197 | public: | |
198 | /** | |
199 | Default constructor. | |
200 | ||
201 | Constructs a bitmap object with no data; an assignment or another member | |
202 | function such as Create() or LoadFile() must be called subsequently. | |
203 | */ | |
204 | wxBitmap(); | |
205 | ||
206 | /** | |
207 | Copy constructor, uses @ref overview_refcount "reference counting". | |
208 | To make a real copy, you can use: | |
209 | ||
210 | @code | |
211 | wxBitmap newBitmap = oldBitmap.GetSubBitmap( | |
212 | wxRect(0, 0, oldBitmap.GetWidth(), oldBitmap.GetHeight())); | |
213 | @endcode | |
214 | */ | |
215 | wxBitmap(const wxBitmap& bitmap); | |
216 | ||
217 | ||
218 | /* | |
219 | Creates a bitmap from the given @a data which is interpreted in | |
220 | platform-dependent manner. | |
221 | ||
222 | @param data | |
223 | Specifies the bitmap data in a platform-dependent format. | |
224 | @param type | |
225 | May be one of the ::wxBitmapType values and indicates which type of | |
226 | bitmap does @a data contains. See the note in the class | |
227 | detailed description. | |
228 | @param width | |
229 | Specifies the width of the bitmap. | |
230 | @param height | |
231 | Specifies the height of the bitmap. | |
232 | @param depth | |
233 | Specifies the depth of the bitmap. | |
234 | If this is omitted, the display depth of the screen is used. | |
235 | wxBitmap(const void* data, int type, int width, int height, int depth = -1); | |
236 | ||
237 | ||
238 | NOTE: this ctor is not implemented by all ports, is somewhat useless | |
239 | without further description of the "data" supported formats and | |
240 | uses 'int type' instead of wxBitmapType, so don't document it. | |
241 | */ | |
242 | ||
243 | /** | |
244 | Creates a bitmap from the given array @a bits. | |
245 | You should only use this function for monochrome bitmaps (depth 1) in | |
246 | portable programs: in this case the bits parameter should contain an XBM image. | |
247 | ||
248 | For other bit depths, the behaviour is platform dependent: under Windows, | |
249 | the data is passed without any changes to the underlying CreateBitmap() API. | |
250 | Under other platforms, only monochrome bitmaps may be created using this | |
251 | constructor and wxImage should be used for creating colour bitmaps from | |
252 | static data. | |
253 | ||
254 | @param bits | |
255 | Specifies an array of pixel values. | |
256 | @param width | |
257 | Specifies the width of the bitmap. | |
258 | @param height | |
259 | Specifies the height of the bitmap. | |
260 | @param depth | |
261 | Specifies the depth of the bitmap. | |
262 | If this is omitted, then a value of 1 (monochrome bitmap) is used. | |
263 | */ | |
264 | wxBitmap(const char bits[], int width, int height, int depth = 1); | |
265 | ||
266 | /** | |
267 | Creates a new bitmap. A depth of ::wxBITMAP_SCREEN_DEPTH indicates the | |
268 | depth of the current screen or visual. | |
269 | ||
270 | Some platforms only support 1 for monochrome and ::wxBITMAP_SCREEN_DEPTH for | |
271 | the current colour setting. | |
272 | ||
273 | A depth of 32 including an alpha channel is supported under MSW, Mac and GTK+. | |
274 | */ | |
275 | wxBitmap(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH); | |
276 | ||
277 | /** | |
278 | @overload | |
279 | */ | |
280 | wxBitmap(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH); | |
281 | ||
282 | /** | |
283 | Creates a bitmap from XPM data. | |
284 | */ | |
285 | wxBitmap(const char* const* bits); | |
286 | ||
287 | /** | |
288 | Loads a bitmap from a file or resource. | |
289 | ||
290 | @param name | |
291 | This can refer to a resource name or a filename under MS Windows and X. | |
292 | Its meaning is determined by the @a type parameter. | |
293 | @param type | |
294 | May be one of the ::wxBitmapType values and indicates which type of | |
295 | bitmap should be loaded. See the note in the class detailed description. | |
296 | Note that the wxBITMAP_DEFAULT_TYPE constant has different value under | |
297 | different wxWidgets ports. See the bitmap.h header for the value it takes | |
298 | for a specific port. | |
299 | ||
300 | @see LoadFile() | |
301 | */ | |
302 | wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE); | |
303 | ||
304 | /** | |
305 | Creates this bitmap object from the given image. | |
306 | This has to be done to actually display an image as you cannot draw an | |
307 | image directly on a window. | |
308 | ||
309 | The resulting bitmap will use the provided colour depth (or that of the | |
310 | current system if depth is ::wxBITMAP_SCREEN_DEPTH) which entails that a | |
311 | colour reduction may take place. | |
312 | ||
313 | When in 8-bit mode (PseudoColour mode), the GTK port will use a color cube | |
314 | created on program start-up to look up colors. This ensures a very fast conversion, | |
315 | but the image quality won't be perfect (and could be better for photo images using | |
316 | more sophisticated dithering algorithms). | |
317 | ||
318 | On Windows, if there is a palette present (set with SetPalette), it will be | |
319 | used when creating the wxBitmap (most useful in 8-bit display mode). | |
320 | On other platforms, the palette is currently ignored. | |
321 | ||
322 | @param img | |
323 | Platform-independent wxImage object. | |
324 | @param depth | |
325 | Specifies the depth of the bitmap. | |
326 | If this is omitted, the display depth of the screen is used. | |
327 | */ | |
328 | wxBitmap(const wxImage& img, int depth = wxBITMAP_SCREEN_DEPTH); | |
329 | ||
330 | /** | |
331 | Destructor. | |
332 | See @ref overview_refcount_destruct for more info. | |
333 | ||
334 | If the application omits to delete the bitmap explicitly, the bitmap will be | |
335 | destroyed automatically by wxWidgets when the application exits. | |
336 | ||
337 | @warning | |
338 | Do not delete a bitmap that is selected into a memory device context. | |
339 | */ | |
340 | virtual ~wxBitmap(); | |
341 | ||
342 | /** | |
343 | Adds a handler to the end of the static list of format handlers. | |
344 | ||
345 | @param handler | |
346 | A new bitmap format handler object. There is usually only one instance | |
347 | of a given handler class in an application session. | |
348 | ||
349 | Note that unlike wxImage::AddHandler, there's no documented list of | |
350 | the wxBitmapHandlers available in wxWidgets. | |
351 | This is because they are platform-specific and most important, they are | |
352 | all automatically loaded at startup. | |
353 | ||
354 | If you want to be sure that wxBitmap can load a certain type of image, | |
355 | you'd better use wxImage::AddHandler. | |
356 | ||
357 | @see wxBitmapHandler | |
358 | */ | |
359 | static void AddHandler(wxBitmapHandler* handler); | |
360 | ||
361 | /** | |
362 | Deletes all bitmap handlers. | |
363 | This function is called by wxWidgets on exit. | |
364 | */ | |
365 | static void CleanUpHandlers(); | |
366 | ||
367 | /** | |
368 | Creates an image from a platform-dependent bitmap. This preserves | |
369 | mask information so that bitmaps and images can be converted back | |
370 | and forth without loss in that respect. | |
371 | */ | |
372 | virtual wxImage ConvertToImage() const; | |
373 | ||
374 | /** | |
375 | Creates the bitmap from an icon. | |
376 | */ | |
377 | virtual bool CopyFromIcon(const wxIcon& icon); | |
378 | ||
379 | /** | |
380 | Creates a fresh bitmap. | |
381 | If the final argument is omitted, the display depth of the screen is used. | |
382 | ||
383 | @return @true if the creation was successful. | |
384 | */ | |
385 | virtual bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH); | |
386 | ||
387 | /** | |
388 | @overload | |
389 | */ | |
390 | virtual bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH); | |
391 | ||
392 | /* | |
393 | Creates a bitmap from the given data, which can be of arbitrary type. | |
394 | ||
395 | @param data | |
396 | Data whose type depends on the value of type. | |
397 | @param type | |
398 | A bitmap type identifier; see ::wxBitmapType for the list of values. | |
399 | See the note in the class detailed description for more info. | |
400 | @param width | |
401 | The width of the bitmap in pixels. | |
402 | @param height | |
403 | The height of the bitmap in pixels. | |
404 | @param depth | |
405 | The depth of the bitmap in pixels. If this is -1, the screen depth is used. | |
406 | ||
407 | @return @true if the call succeeded, @false otherwise. | |
408 | ||
409 | This overload depends on the @a type of data. | |
410 | ||
411 | virtual bool Create(const void* data, int type, int width, | |
412 | int height, int depth = -1); | |
413 | ||
414 | NOTE: leave this undoc for the same reason of the relative ctor. | |
415 | */ | |
416 | ||
417 | /** | |
418 | Finds the handler with the given @a name. | |
419 | ||
420 | @return A pointer to the handler if found, @NULL otherwise. | |
421 | */ | |
422 | static wxBitmapHandler* FindHandler(const wxString& name); | |
423 | ||
424 | /** | |
425 | Finds the handler associated with the given @a extension and @a type. | |
426 | ||
427 | @param extension | |
428 | The file extension, such as "bmp" (without the dot). | |
429 | @param bitmapType | |
430 | The bitmap type managed by the handler, see ::wxBitmapType. | |
431 | ||
432 | @return A pointer to the handler if found, @NULL otherwise. | |
433 | */ | |
434 | static wxBitmapHandler* FindHandler(const wxString& extension, | |
435 | wxBitmapType bitmapType); | |
436 | ||
437 | /** | |
438 | Finds the handler associated with the given bitmap type. | |
439 | ||
440 | @param bitmapType | |
441 | The bitmap type managed by the handler, see ::wxBitmapType. | |
442 | ||
443 | @return A pointer to the handler if found, @NULL otherwise. | |
444 | ||
445 | @see wxBitmapHandler | |
446 | */ | |
447 | ||
448 | static wxBitmapHandler* FindHandler(wxBitmapType bitmapType); | |
449 | ||
450 | /** | |
451 | Gets the colour depth of the bitmap. | |
452 | A value of 1 indicates a monochrome bitmap. | |
453 | */ | |
454 | virtual int GetDepth() const; | |
455 | ||
456 | /** | |
457 | Returns the static list of bitmap format handlers. | |
458 | ||
459 | @see wxBitmapHandler | |
460 | */ | |
461 | static wxList& GetHandlers(); | |
462 | ||
463 | /** | |
464 | Gets the height of the bitmap in pixels. | |
465 | ||
466 | @see GetWidth(), GetSize() | |
467 | */ | |
468 | virtual int GetHeight() const; | |
469 | ||
470 | /** | |
471 | Gets the associated mask (if any) which may have been loaded from a file | |
472 | or set for the bitmap. | |
473 | ||
474 | @see SetMask(), wxMask | |
475 | */ | |
476 | virtual wxMask* GetMask() const; | |
477 | ||
478 | /** | |
479 | Gets the associated palette (if any) which may have been loaded from a file | |
480 | or set for the bitmap. | |
481 | ||
482 | @see wxPalette | |
483 | */ | |
484 | virtual wxPalette* GetPalette() const; | |
485 | ||
486 | /** | |
487 | Returns a sub bitmap of the current one as long as the rect belongs entirely to | |
488 | the bitmap. This function preserves bit depth and mask information. | |
489 | */ | |
490 | virtual wxBitmap GetSubBitmap(const wxRect& rect) const; | |
491 | ||
492 | /** | |
493 | Returns the size of the bitmap in pixels. | |
494 | ||
495 | @since 2.9.0 | |
496 | ||
497 | @see GetHeight(), GetWidth() | |
498 | */ | |
499 | wxSize GetSize() const; | |
500 | ||
501 | /** | |
502 | Gets the width of the bitmap in pixels. | |
503 | ||
504 | @see GetHeight(), GetSize() | |
505 | */ | |
506 | virtual int GetWidth() const; | |
507 | ||
508 | /** | |
509 | Adds the standard bitmap format handlers, which, depending on wxWidgets | |
510 | configuration, can be handlers for Windows bitmap, Windows bitmap resource, | |
511 | and XPM. | |
512 | ||
513 | This function is called by wxWidgets on startup. | |
514 | ||
515 | @see wxBitmapHandler | |
516 | */ | |
517 | static void InitStandardHandlers(); | |
518 | ||
519 | /** | |
520 | Adds a handler at the start of the static list of format handlers. | |
521 | ||
522 | @param handler | |
523 | A new bitmap format handler object. There is usually only one instance | |
524 | of a given handler class in an application session. | |
525 | ||
526 | @see wxBitmapHandler | |
527 | */ | |
528 | static void InsertHandler(wxBitmapHandler* handler); | |
529 | ||
530 | /** | |
531 | Returns @true if bitmap data is present. | |
532 | */ | |
533 | virtual bool IsOk() const; | |
534 | ||
535 | /** | |
536 | Loads a bitmap from a file or resource. | |
537 | ||
538 | @param name | |
539 | Either a filename or a Windows resource name. | |
540 | The meaning of name is determined by the @a type parameter. | |
541 | @param type | |
542 | One of the ::wxBitmapType values; see the note in the class | |
543 | detailed description. | |
544 | Note that the wxBITMAP_DEFAULT_TYPE constant has different value under | |
545 | different wxWidgets ports. See the bitmap.h header for the value it takes | |
546 | for a specific port. | |
547 | ||
548 | @return @true if the operation succeeded, @false otherwise. | |
549 | ||
550 | @remarks A palette may be associated with the bitmap if one exists | |
551 | (especially for colour Windows bitmaps), and if the | |
552 | code supports it. You can check if one has been created | |
553 | by using the GetPalette() member. | |
554 | ||
555 | @see SaveFile() | |
556 | */ | |
557 | virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE); | |
558 | ||
559 | /** | |
560 | Finds the handler with the given name, and removes it. | |
561 | The handler is not deleted. | |
562 | ||
563 | @param name | |
564 | The handler name. | |
565 | ||
566 | @return @true if the handler was found and removed, @false otherwise. | |
567 | ||
568 | @see wxBitmapHandler | |
569 | */ | |
570 | static bool RemoveHandler(const wxString& name); | |
571 | ||
572 | /** | |
573 | Saves a bitmap in the named file. | |
574 | ||
575 | @param name | |
576 | A filename. The meaning of name is determined by the type parameter. | |
577 | @param type | |
578 | One of the ::wxBitmapType values; see the note in the class | |
579 | detailed description. | |
580 | @param palette | |
581 | An optional palette used for saving the bitmap. | |
582 | ||
583 | @return @true if the operation succeeded, @false otherwise. | |
584 | ||
585 | @remarks Depending on how wxWidgets has been configured, not all formats | |
586 | may be available. | |
587 | ||
588 | @see LoadFile() | |
589 | */ | |
590 | virtual bool SaveFile(const wxString& name, wxBitmapType type, | |
591 | const wxPalette* palette = NULL) const; | |
592 | ||
593 | /** | |
594 | Sets the depth member (does not affect the bitmap data). | |
595 | ||
596 | @todo since these functions do not affect the bitmap data, | |
597 | why they exist?? | |
598 | ||
599 | @param depth | |
600 | Bitmap depth. | |
601 | */ | |
602 | virtual void SetDepth(int depth); | |
603 | ||
604 | /** | |
605 | Sets the height member (does not affect the bitmap data). | |
606 | ||
607 | @param height | |
608 | Bitmap height in pixels. | |
609 | */ | |
610 | virtual void SetHeight(int height); | |
611 | ||
612 | /** | |
613 | Sets the mask for this bitmap. | |
614 | ||
615 | @remarks The bitmap object owns the mask once this has been called. | |
616 | ||
617 | @see GetMask(), wxMask | |
618 | */ | |
619 | virtual void SetMask(wxMask* mask); | |
620 | ||
621 | /** | |
622 | Sets the associated palette. (Not implemented under GTK+). | |
623 | ||
624 | @param palette | |
625 | The palette to set. | |
626 | ||
627 | @see wxPalette | |
628 | */ | |
629 | virtual void SetPalette(const wxPalette& palette); | |
630 | ||
631 | /** | |
632 | Sets the width member (does not affect the bitmap data). | |
633 | ||
634 | @param width | |
635 | Bitmap width in pixels. | |
636 | */ | |
637 | virtual void SetWidth(int width); | |
638 | }; | |
639 | ||
640 | /** | |
641 | An empty wxBitmap object. | |
642 | */ | |
643 | wxBitmap wxNullBitmap; | |
644 | ||
645 | ||
646 | ||
647 | ||
648 | /** | |
649 | @class wxMask | |
650 | ||
651 | This class encapsulates a monochrome mask bitmap, where the masked area is | |
652 | black and the unmasked area is white. | |
653 | ||
654 | When associated with a bitmap and drawn in a device context, the unmasked | |
655 | area of the bitmap will be drawn, and the masked area will not be drawn. | |
656 | ||
657 | @library{wxcore} | |
658 | @category{gdi} | |
659 | ||
660 | @see wxBitmap, wxDC::Blit, wxMemoryDC | |
661 | */ | |
662 | class wxMask : public wxObject | |
663 | { | |
664 | public: | |
665 | ||
666 | /** | |
667 | Default constructor. | |
668 | */ | |
669 | wxMask(); | |
670 | ||
671 | /** | |
672 | Constructs a mask from a bitmap and a palette index that indicates the | |
673 | background. | |
674 | Not yet implemented for GTK. | |
675 | ||
676 | @param bitmap | |
677 | A valid bitmap. | |
678 | @param index | |
679 | Index into a palette, specifying the transparency colour. | |
680 | */ | |
681 | wxMask(const wxBitmap& bitmap, int index); | |
682 | ||
683 | /** | |
684 | Constructs a mask from a monochrome bitmap. | |
685 | ||
686 | @beginWxPythonOnly | |
687 | This is the default constructor for wxMask in wxPython. | |
688 | @endWxPythonOnly | |
689 | */ | |
690 | wxMask(const wxBitmap& bitmap); | |
691 | ||
692 | /** | |
693 | Constructs a mask from a bitmap and a colour that indicates the background. | |
694 | ||
695 | @beginWxPythonOnly | |
696 | wxPython has an alternate wxMask constructor matching this form called wxMaskColour. | |
697 | @endWxPythonOnly | |
698 | */ | |
699 | wxMask(const wxBitmap& bitmap, const wxColour& colour); | |
700 | ||
701 | /** | |
702 | Destroys the wxMask object and the underlying bitmap data. | |
703 | */ | |
704 | virtual ~wxMask(); | |
705 | ||
706 | /** | |
707 | Constructs a mask from a bitmap and a palette index that indicates the | |
708 | background. | |
709 | Not yet implemented for GTK. | |
710 | ||
711 | @param bitmap | |
712 | A valid bitmap. | |
713 | @param index | |
714 | Index into a palette, specifying the transparency colour. | |
715 | */ | |
716 | bool Create(const wxBitmap& bitmap, int index); | |
717 | ||
718 | /** | |
719 | Constructs a mask from a monochrome bitmap. | |
720 | */ | |
721 | bool Create(const wxBitmap& bitmap); | |
722 | ||
723 | /** | |
724 | Constructs a mask from a bitmap and a colour that indicates the background. | |
725 | */ | |
726 | bool Create(const wxBitmap& bitmap, const wxColour& colour); | |
727 | }; | |
728 |