LRasterPaint::DrawShapeEllipse

#include "Ltwrappr.h"

L_INT LRasterPaint::DrawShapeEllipse(UserDC, prcRect)

HDC UserDC;

handle to the device context

LPRECT prcRect;

pointer to a RECT structure

Draws an ellipse using the specified points.

Parameter

Description

UserDC

Handle to a device context, such as a screen, to use as a display surface. This parameter can also be NULL. The mapping mode of the device context must be MM_TEXT.

prcRect

Pointer to a RECT structure that specifies the ellipses bounding rectangle.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes

Comments

The ellipse will be drawn using the current shape properties. To determine the current shape properties, call LRasterPaint::GetProperty. To set or change the current shape properties, call LRasterPaint::SetProperty. For more information on the shape properties, refer to the PAINTSHAPE structure.

If UserDC is not NULL, the toolkit will paint the ellipse on the specified device context. If UserDC is NULL, the ellipse will not be painted on a device context.

If the UserDC is not NULL, the user should set the DC boundaries before calling this function, by calling LRasterPaint::SetDCExtents.

If a bitmap has been set using the LRasterPaint::SetMetrics function, the ellipse will be drawn on the specified bitmap. If UserDC is not NULL and a bitmap has been set using the LRasterPaint::SetMetrics function, then the ellipse will be drawn to both the device context and the bitmap.

Required DLLs and Libraries

LTPNT

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

See Also

Functions:

LRasterPaint::GetProperty, LRasterPaint::SetProperty, LRasterPaint::SetTransformation, LRasterPaint::GetTransformation, LRasterPaint::GetClipRgn, LRasterPaint::SetClipRgn, LRasterPaint::SetMetrics, LRasterDialog::DoModalShape, LRasterPaint::DrawShapeLine, LRasterPaint::DrawShapePolyBezier, LRasterPaint::DrawShapePolygon, LRasterPaint::DrawShapeRectangle, LRasterPaint::DrawShapeRoundRect, Class Members

Topics:

Painting a Shape

Example

L_INT LRasterPaint_DrawShapeEllipseExample( CWnd* pWnd ) 
{ 
   L_INT          nRet; 
   LRasterPaint   rstp; 
   CDC*           pDC = pWnd->GetDC( ) ; 
   PAINTSHAPE     shape; 
   RECT           rcShape; 
   RECT           rcDCExtents ; 
   /* Initiate the Paint toolkit */ 
   nRet = rstp.Initialize ( ); 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Get the current shape properties */ 
   nRet = rstp.GetProperty (PAINT_GROUP_SHAPE, &shape ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Set the required shape properties */ 
   shape.nSize                = sizeof ( PAINTSHAPE ) ; 
   shape.dwMask               = PSF_BORDERWIDTH   | 
   PSF_BORDERSTYLE | 
   PSF_BORDERCOLOR | 
   PSF_BORDERENDCAP| 
   PSF_BACKGROUNDCOLOR ; 
   shape.nBorderWidth         = 8 ; 
   shape.nBorderStyle         = PAINT_SHAPE_BORDER_STYLE_DOT ; 
   shape.crBorderColor        = RGB ( 255, 0, 255 ) ; 
   shape.nBorderEndCap        = PAINT_SHAPE_BORDER_ENDCAP_ROUND ; 
   shape.crBackgroundColor    = RGB ( 255, 255, 0 ) ; 
   /* Set the new shape properties */ 
   nRet = rstp.SetProperty (PAINT_GROUP_SHAPE, &shape ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Get the destination DC dimensions */ 
   pWnd->GetClientRect ( &rcDCExtents ) ; 
   /* Set the toolkit user DC extents */ 
   nRet = rstp.SetDCExtents ( &rcDCExtents ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Set the coordinates with respect to the DC dimensions*/ 
   SetRect ( &rcShape, 10, 10, 210, 210 ) ; 
   /* Use the current shape properties to draw an ellipse */ 
   nRet = rstp.DrawShapeEllipse ( pDC->m_hDC, &rcShape ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Free the paint tools handle */ 
   nRet = rstp.Free ( ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
   pWnd->ReleaseDC( pDC ) ; 
   return SUCCESS ; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DigitalPaint C++ Class Library Help