L_PntDrawShapeRoundRect

Summary

Draws a rounded rectangle using the specified points.

Syntax

#include "LtPnt.h"

L_LTPNT_API L_INT L_PntDrawShapeRoundRect(pPaint, UserDC, prcRect)

Parameters

pPAINTHANDLE pPaint

Pointer to a paint handle.

L_HDC 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.

const LPRECT prcRect

Pointer to a RECT structure that specifies the rounded rectangle to be drawn.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

The rounded rectangle will be drawn using the current shape properties. To determine the current shape properties, call L_PntGetProperty. To set or change the current shape properties, call L_PntSetProperty. For more information on the shape properties, refer to the PAINTSHAPE structure.

If UserDC is not NULL, the toolkit will paint the rounded rectangle on the specified device context. If UserDC is NULL, the rounded rectangle 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 L_PntSetDCExtents.

If a bitmap has been set using the L_PntSetMetrics function, the rounded rectangle will be drawn on the specified bitmap. If UserDC is not NULL and a bitmap has been set using the L_PntSetMetrics function, then the rounded rectangle will be drawn to both the device context and the bitmap.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT PntDrawShapeRoundRectExample(HWND hWnd) 
{ 
   L_INT nRet; 
   pPAINTHANDLE pPaint ; 
   HDC          hDC; 
   PAINTSHAPE   shape; 
   RECT         rcShape; 
 
   /* Initiate the Paint toolkit */ 
   nRet = L_PntInit ( &pPaint ); 
   if ( SUCCESS != nRet ) 
   { 
      return nRet; 
   } 
 
   /* Get device context to draw on */ 
   hDC = GetDC ( hWnd ) ; 
 
   /* Get the current shape properties */ 
   nRet = L_PntGetProperty ( pPaint, 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_ROUNDRECTELLIPSEWIDTH | 
                                   PSF_ROUNDRECTELLIPSEHEIGHT; 
   shape.nBorderWidth            = 5 ; 
   shape.nBorderStyle            = PAINT_SHAPE_BORDER_STYLE_DASH ; 
   shape.crBorderColor           = RGB ( 255, 0, 0 ) ; 
   shape.nBorderEndCap           = PAINT_SHAPE_BORDER_ENDCAP_FLAT ; 
   shape.nRoundRectEllipseWidth  = 30 ; 
   shape.nRoundRectEllipseHeight = 30 ; 
 
   /* Set the new shape properties */ 
   nRet = L_PntSetProperty ( pPaint, PAINT_GROUP_SHAPE, &shape ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   /* Set the rectangle coordinates with respect to the DC dimensions*/ 
   SetRect ( &rcShape, 10, 10, 200, 200 ) ; 
 
   /* Set the DC Extents */ 
   RECT rcClient; 
   GetClientRect(hWnd, &rcClient); 
   nRet = L_PntSetDCExtents ( pPaint, &rcClient ); 
 
   /* Use the current shape properties to draw a rounded rectangle to the DC (hDC) */ 
   nRet = L_PntDrawShapeRoundRect ( pPaint, hDC, &rcShape ) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   /* Release the device context */ 
   ReleaseDC ( hWnd, hDC ) ; 
 
   /* Free the paint tools handle */ 
   L_PntFree ( pPaint ) ; 
 
   return SUCCESS ; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Digital Paint C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.