L_PntRegionColor

#include "LtPnt.h"

L_INT EXT_FUNCTION L_PntRegionColor(pPaint, UserDC, crColor, phDestRgn)

pPAINTHANDLE pPaint;

/* pointer to a paint handle */

HDC UserDC;

/* handle to the device context */

COLORREF crColor;

/* color used to create the region */

pHRGN phDestRgn;

/* pointer to a region handle */

Creates a region that contains the specified color.

Parameter

Description

pPaint

Pointer to a paint handle.

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.

crColor

The COLORREF value that specifies the color to use to create the region.

phDestRgn

Pointer to the region handle to be updated with the resulting region.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

The region creation procedure will be carried out using the current region properties. To determine the current region properties, call L_PntGetProperty. To set or change the current region properties, call L_PntSetProperty. For more information on the region properties, refer to the PAINTREGION structure.

This function will also use the current painting transformation information when creating the new region. To get the current painting transformation information, call L_PntGetTransformation. To change or set the painting transformation information, call L_PntSetTransformation.

If the user has set a bitmap in the toolkit, using the function L_PntSetMetrics, then the toolkit will create the region for the bitmap. Otherwise, the toolkit will create the region for the specified device context.

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

The images below show the region created by clicking inside the yellow area.

image\u9.gif

image\u10.gif

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:

L_PntSetProperty, L_PntSetTransformation, L_PntSetDCExtents, L_PntSetMetrics, L_PntDlgRegion, L_PntGetClipRgn, L_PntOffsetClipRgn, L_PntRegionBorder, L_PntRegionEllipse, L_PntRegionPolygon, L_PntRegionRect, L_PntRegionRoundRect, L_PntRegionScale, L_PntRegionSurface, L_PntRegionTranslate, L_PntSetClipRgn

Topics:

DigitalPaint Functions: Region Processing

 

Creating a Region

Example

L_INT RegionColorTest ( HWND hWnd ) 
{
   pPAINTHANDLE pPaint ;
   HDC                      hDC ;
   PAINTSHAPE      shape ; 
   RECT                     rcShape ;
   RECT                     rcDCExtents ;
   HRGN                    hRgn ;
   

   /* Initiate the Paint toolkit */
  if ( SUCCESS != L_PntInit ( &pPaint ) )
   {
      return FAILURE ; 
   }

   /* Get device context to draw on */
   hDC = GetDC ( hWnd ) ;


   /* Set the required shape properties */
   shape.nSize  = sizeof ( PAINTSHAPE ) ;
   shape.dwMask = PSF_BORDERWIDTH     |
                               PSF_BORDERCOLOR     |
                               PSF_BORDERENDCAP    |
                               PSF_BACKGROUNDSTYLE |
                               PSF_GRADIENTSTARTCOLOR | 
                               PSF_GRADIENTENDCOLOR ;

   shape.nBorderWidth         = 10 ; 
   shape.crBorderColor        = RGB ( 0, 255, 0 ) ;
   shape.nBorderEndCap         = PAINT_SHAPE_BORDER_ENDCAP_ROUND ;
   shape.nBackgroundStyle     = PAINT_SHAPE_BACK_STYLE_GRADIENT ;
   shape.crGradientStartColor = RGB ( 255, 255, 255 ) ;
   shape.crGradientEndColor   = RGB ( 255, 255, 0 ) ;

   /* Set the new shape properties */
   L_PntSetProperty ( pPaint, PAINT_GROUP_SHAPE, &shape ) ;

   /* Set the coordinates with respect to the DC dimensions */
   SetRect ( &rcShape, 10, 10, 60, 60 ) ;

   /* Use the current shape properties to draw an ellipse to the DC (hDC) */
   L_PntDrawShapeEllipse ( pPaint, hDC, &rcShape ) ;

   SetRect ( &rcShape, 100, 10, 150, 60 ) ;
   L_PntDrawShapeEllipse ( pPaint, hDC, &rcShape ) ;

   SetRect ( &rcShape, 60, 60, 95, 95 ) ;
   L_PntDrawShapeRectangle ( pPaint, hDC, &rcShape ) ;

   SetRect ( &rcShape, 10, 100, 60, 150 ) ;
   L_PntDrawShapeEllipse ( pPaint, hDC, &rcShape ) ;

   SetRect ( &rcShape, 100, 100, 150, 150 ) ;
   L_PntDrawShapeEllipse ( pPaint, hDC, &rcShape ) ;

   /* Get the destination DC dimensions */  
   GetClientRect ( hWnd, &rcDCExtents ) ;

   /* Set the toolkit user DC extents */
   L_PntSetDCExtents ( pPaint, &rcDCExtents ) ;

   /* Create the region */
   L_PntRegionColor ( pPaint, hDC, RGB ( 0, 255, 0 ), &hRgn) ; 

   /* Display the create region */
   FrameRgn ( hDC, hRgn, ( HBRUSH ) GetStockObject ( BLACK_BRUSH ), 1, 1 ) ;

   /* Release the device context */
   ReleaseDC ( hWnd, hDC ) ;

  /*Delete the region */
  DeleteObject ( hRgn ) ;

   /* Free the paint tools handle */
   L_PntFree ( pPaint ) ;

   return SUCCESS ;
}