LVectorDialog::DoModalVectorHitTest

#include "ltwrappr.h"

virtual L_INT LVectorDialog::DoModalVectorHitTest(hWndParent=NULL, pHitTest=NULL)

HWND hWndParent;

/* window handle */

pVECTORHITTEST pHitTest;

/* hit test options */

Brings up the Vector Hit Test Options dialog. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.

Parameter

Description

hWndParent

Handle of the window that owns the dialog.

pHitTest

Pointer to a VECTORHITTEST structure that contains hit test options. The values present in the structure when the function is called are used to initialize the dialog. If this parameter is NULL when the function is called, the values used to initialize the dialog will come from the vector handle. When this function returns, if this parameter is not NULL, the structure pointed to by pHitTest is updated with the values entered through the dialog.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

To get the current hit test settings use LVectorBase::GetHitTest.

Hit test settings can also be set by calling LVectorBase::SetHitTest.

The hit test can be performed by calling LVectorBase::HitTest.

Required DLLs and Libraries

LVKRN
LVDLG

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:

LVectorBase::GetHitTest, LVectorBase::SetHitTest, LVectorBase::HitTest, Class Members

Topics:

Vector CommonDialogs

Example

L_VOID Example84(HWND hWnd, LVectorBase *pVector)
{
   LVectorDialog VectorDlg;
   VECTORHITTEST HitTest;
   
   VectorDlg.SetVector(pVector);
   VectorDlg.EnablePreview ();
   VectorDlg.EnableAutoProcess ();
   
   L_TCHAR szMsg[200], *pszFlags1=TEXT(""), *pszFlags2=TEXT("");
   
   HitTest.nDistance = 10;
   HitTest.nSize = sizeof(VECTORHITTEST);
   HitTest.dwFlags = VECTOR_HITTEST_CLOSEDFIGURES;
   
   VectorDlg.DoModalVectorHitTest(hWnd, &HitTest);
   
   if (HitTest.dwFlags & VECTOR_HITTEST_CLOSEDFIGURES)
      pszFlags1 = TEXT("VECTOR_HITTEST_CLOSEDFIGURES");
   
   if (HitTest.dwFlags & VECTOR_HITTEST_IGNORESELECTED)
      pszFlags2 = TEXT("VECTOR_HITTEST_IGNORESELECTED");
   
   wsprintf(szMsg, TEXT("Distance[%d]\ndwFlags[%s %s]"), HitTest.nDistance, pszFlags1, pszFlags2);
   MessageBox(hWnd, szMsg, TEXT(""), MB_OK);
}