|
Step 9: PE_RESULT Message
The PE_RESULT message arrives only if the application has specified an HRC object in step 6, rather than an HPENDATA or other object. The message signals the target window that recognition
results are ready. This message differs slightly from the others in that its lParam holds the HRC handle and not a pointer to a TARGET structure. If DefWindowProc handles PE_RESULT, it converts the recognizer's best guess to a string of
characters and sends them to the target window as WM_CHAR messages. Gestures are
also converted to appropriate messages, such as WM_COPY or WM_PASTE.
If the application handles the message, it must not destroy the HRC for the default system recognizer. Because DoDefaultPenInput created the default HRC, it expects to destroy it as well. The application must not destroy objects
it did not create.
At this point, an application can process any of the results itself. For
example, it might check for a recognized gesture such as the lasso or cut gesture.
The procedure for examining gestures at this point involves three steps:
- Retrieve any recognized gesture symbols from the HRCRESULT object by calling the GetResultsHRC function with the GRH_GESTURE argument.
- If this call indicates the recognizer has found a gesture, the application
then calls the GetSymbolsHRCRESULT function to see if the gesture is a lasso or X mark.
- If the gesture is a lasso or X mark, the application should examine the data further to determine the size
of the gesture, as outlined in the following example.
If the first or second test fails, indicating the recognizer has found no
lasso or X mark, the application should pass the PE_RESULT message to DefWindowProc for text processing. Note that the lasso and cut gestures cannot exist with
other gestures; therefore, the following code allocates only one HRCRESULT object because it examines at most a single gesture:
HRCRESULT hresult; // Look at only the first gesture
HPENDATA hpendata; // Points that comprise the gesture
HRGN hrgn; // Screen region of the gesture
SYV syv; // Symbol value of the gesture
UINT uRgnType; // Region type: X or LASSO
int cGest; // Count of gestures in results
.
.
.
switch ( wParam ) // Handle WM_PENEVENT messages
{
case PE_RESULT:
// Check for gesture
cGest = GetResultsHRC( (HRC) lParam, // HRC handle
GRH_GESTURE, // Gestures only
(LPHRCRESULT)&hresult, // Buffer
1 ); // Get one result
// If one gesture available, get its symbol
if (cGest == 1)
{
GetSymbolsHRCRESULT( hresult, // HRCRESULT handle
0, // Index to 1st syv
(LPSYV) &syv, // Symbol buffer
1 ); // Get 1 symbol
//
// If the gesture is lasso or x, collect the
// points that make up the gesture
//
if (syv == SYV_LASSO || syv == SYV_CUT)
{
hpendata = GetPenDataHRC( (HRC) lParam );
if (hpendata)
{
// Step 1: Get region of the gesture
uRgnType = (syv==SYV_LASSO) ? CPDR_LASSO : CPDR_BOX;
hrgn = CreatePenDataRegion( hpendata, uRngType );
// Step 2: Determine what text lies within the
// region. If the gesture covers more than one
// letter of a word but not the entire word, assume
// it's meant for entire word.
.
.
.
// Step 3: Either select . . .
if (syv == SYV_LASSO)
{
. // Select the text
.
.
}
// . . . or delete the text
else
{
. // Delete the text
.
.
}
DeleteObject( hrgn );
DestroyHPENDATA( hpendata );
}
}
}
break;
default:
DefWindowProc( hwnd, message, wParam, lParam );
}
As the previous code shows, applying a gesture to text requires three steps:
- Call the CreatePenDataRegion function to find the region covered by the gesture.
- Determine the text that lies within the gesture's region using the Windows GetTextExtentPoint32 function or some other method.
- Select or cut the text, according to the gesture.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|