LVectorDialog::DoModalVectorHitTest

Summary

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

Syntax

#include "ltwrappr.h"

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

Parameters

HWND hWndParent

Handle of the window that owns the dialog.

pVECTORHITTEST 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

Value Meaning
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

See Also

Functions

Topics

Example

L_INT LVectorDialog__DoModalVectorHitTestExample(HWND hWnd, LVectorBase *pVector) 
{ 
   L_INT          nRet; 
   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; 
 
   nRet = VectorDlg.DoModalVectorHitTest(hWnd, &HitTest); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   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); 
 
   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 Vector C++ Class Library Help

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