1998-05-20 14:25:30 +00:00
|
|
|
\section{\class{wxMask}}\label{wxmask}
|
|
|
|
|
|
|
|
This class encapsulates a monochrome mask bitmap, where the masked area is black and
|
|
|
|
the unmasked area is white.
|
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
|
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/bitmap.h>
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\wxheading{Remarks}
|
|
|
|
|
|
|
|
A mask may be associated with a \helpref{wxBitmap}{wxbitmap}. It is used in \helpref{wxDC::Blit}{wxdcblit} when
|
|
|
|
the source device context is a \helpref{wxMemoryDC}{wxmemorydc} with wxBitmap selected into it that
|
|
|
|
contains a mask.
|
|
|
|
|
|
|
|
\wxheading{See also}
|
|
|
|
|
|
|
|
\helpref{wxBitmap}{wxbitmap}, \helpref{wxDC::Blit}{wxdcblit}, \helpref{wxMemoryDC}{wxmemorydc}
|
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxMask::wxMask}\label{wxmaskconstr}
|
|
|
|
|
|
|
|
\func{}{wxMask}{\void}
|
|
|
|
|
|
|
|
Default constructor.
|
|
|
|
|
|
|
|
\func{}{wxMask}{\param{const wxBitmap\& }{bitmap}}
|
|
|
|
|
|
|
|
Constructs a mask from a monochrome bitmap.
|
|
|
|
|
1999-09-02 05:36:39 +00:00
|
|
|
\pythonnote{This is the default constructor for wxMask in wxPython.}
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\func{}{wxMask}{\param{const wxBitmap\& }{bitmap}, \param{const wxColour\& }{colour}}
|
|
|
|
|
1999-12-25 11:25:53 +00:00
|
|
|
Constructs a mask from a bitmap and a colour that indicates the background.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
1999-09-02 05:36:39 +00:00
|
|
|
\pythonnote{wxPython has an alternate wxMask constructor matching this
|
1999-12-25 20:34:56 +00:00
|
|
|
form called {\tt wxMaskColour}.}
|
1999-09-02 05:36:39 +00:00
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\func{}{wxMask}{\param{const wxBitmap\& }{bitmap}, \param{int}{ index}}
|
|
|
|
|
1999-06-13 15:24:01 +00:00
|
|
|
Constructs a mask from a bitmap and a palette index that indicates the background. Not
|
|
|
|
yet implemented for GTK.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
|
|
|
\wxheading{Parameters}
|
|
|
|
|
|
|
|
\docparam{bitmap}{A valid bitmap.}
|
|
|
|
|
|
|
|
\docparam{colour}{A colour specifying the transparency RGB values.}
|
|
|
|
|
|
|
|
\docparam{index}{Index into a palette, specifying the transparency colour.}
|
|
|
|
|
|
|
|
\membersection{wxMask::\destruct{wxMask}}
|
|
|
|
|
|
|
|
\func{}{\destruct{wxMask}}{\void}
|
|
|
|
|
|
|
|
Destroys the wxMask object and the underlying bitmap data.
|
|
|
|
|
|
|
|
\membersection{wxMask::Create}\label{wxmaskcreate}
|
|
|
|
|
|
|
|
\func{bool}{Create}{\param{const wxBitmap\& }{bitmap}}
|
|
|
|
|
|
|
|
Constructs a mask from a monochrome bitmap.
|
|
|
|
|
|
|
|
\func{bool}{Create}{\param{const wxBitmap\& }{bitmap}, \param{const wxColour\& }{colour}}
|
|
|
|
|
1999-12-25 11:25:53 +00:00
|
|
|
Constructs a mask from a bitmap and a colour that indicates the background.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
|
|
|
\func{bool}{Create}{\param{const wxBitmap\& }{bitmap}, \param{int}{ index}}
|
|
|
|
|
1999-06-13 15:24:01 +00:00
|
|
|
Constructs a mask from a bitmap and a palette index that indicates the background. Not
|
|
|
|
yet implemented for GTK.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
|
|
|
\wxheading{Parameters}
|
|
|
|
|
|
|
|
\docparam{bitmap}{A valid bitmap.}
|
|
|
|
|
|
|
|
\docparam{colour}{A colour specifying the transparency RGB values.}
|
|
|
|
|
|
|
|
\docparam{index}{Index into a palette, specifying the transparency colour.}
|
|
|
|
|
|
|
|
|