description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: CMFCImagePaintArea Class |
CMFCImagePaintArea Class |
11/04/2016 |
|
|
c59eec22-f15a-4e58-8c4d-4a18a41f4452 |
Provides the picture area that you use to modify an image in an image editor dialog box.
class CMFCImagePaintArea : public CButton
Name | Description |
---|---|
CMFCImagePaintArea::CMFCImagePaintArea | Constructs a CMFCImagePaintArea object. |
CMFCImagePaintArea::~CMFCImagePaintArea |
Destructor. |
Name | Description |
---|---|
CMFCImagePaintArea::GetMode | Retrieves the current drawing mode. |
CMFCImagePaintArea::SetBitmap | Sets the bitmap image for the picture area. |
CMFCImagePaintArea::SetColor | Sets the current drawing color. |
CMFCImagePaintArea::SetMode | Sets the current drawing mode. |
This class is not intended to be used directly from your code.
The framework uses this class to display the picture area in an image editor dialog box. For more information about the image editor dialog box, see CMFCImageEditorDialog Class.
The following example demonstrates how to construct an object of the CMFCImagePaintArea
class, set the current drawing color, set the current drawing mode, and set the bitmap image for the picture area.
[!code-cppNVC_MFC_RibbonApp#37]
Header: afximagepaintarea.h
Constructs a CMFCImagePaintArea
object.
CMFCImagePaintArea(CMFCImageEditorDialog* pParentDlg);
pParentDlg
[in] A pointer to the dialog box that is the parent of the image editor.
Retrieves the current drawing mode.
IMAGE_EDIT_MODE GetMode() const;
An IMAGE_EDIT_MODE value that specifies the current drawing mode.
Sets the bitmap image for the picture area.
void SetBitmap(CBitmap* pBitmap);
pBitmap
[in] The new bitmap image to display.
If pBitmap is NULL, this method sets the size of the modifiable paint area to zero. Otherwise, it sets the size of the modifiable paint area to the size of the provided bitmap image.
Sets the current drawing color.
void SetColor(COLORREF color);
color
[in] The new drawing color.
When you select a color from the image editor palette bar or color picker, the framework calls this method to update the current drawing color. The initial drawing color is black (a COLORREF value of 0).
The drawing color is used by the image editor dialog box for all drawing modes except for IMAGE_EDIT_MODE_COLOR. For more information about drawing modes, see CMFCImagePaintArea::IMAGE_EDIT_MODE Enumeration.
Sets the current drawing mode.
void SetMode(IMAGE_EDIT_MODE mode);
mode
[in] An IMAGE_EDIT_MODE value that specifies the current drawing mode.