Windows Touch Scratchpad 示例 (C++)
Windows Touch Scratchpad 示例演示如何使用 Windows Touch 消息将触摸点的跟踪绘制到窗口。 首先放在数字化器上的主手指的痕迹以黑色绘制。 二级手指以其他六种颜色绘制:红色、绿色、蓝色、青色、洋红色和黄色。 下图显示了应用程序在运行时的外观。
对于此应用程序,窗口注册为触摸窗口,触摸消息被解释为向笔划对象添加触摸点,墨迹笔划呈现到 WM_PAINT 消息处理程序中的屏幕。
以下代码演示如何将窗口注册为触摸窗口。
// Register application window for receiving multitouch input. Use default settings.
if(!RegisterTouchWindow(hWnd, 0))
{
MessageBox(hWnd, L"Cannot register application window for multitouch input", L"Error", MB_OK);
return FALSE;
}
以下代码演示如何使用触摸消息向墨迹笔划添加触摸点。
// WM_TOUCH message handlers
case WM_TOUCH:
{
// WM_TOUCH message can contain several messages from different contacts
// packed together.
// Message parameters need to be decoded:
unsigned int numInputs = (unsigned int) wParam; // Number of actual per-contact messages
TOUCHINPUT* ti = new TOUCHINPUT[numInputs]; // Allocate the storage for the parameters of the per-contact messages
if(ti == NULL)
{
break;
}
// Unpack message parameters into the array of TOUCHINPUT structures, each
// representing a message for one single contact.
if(GetTouchInputInfo((HTOUCHINPUT)lParam, numInputs, ti, sizeof(TOUCHINPUT)))
{
// For each contact, dispatch the message to the appropriate message
// handler.
for(unsigned int i=0; i<numInputs; ++i)
{
if(ti[i].dwFlags & TOUCHEVENTF_DOWN)
{
OnTouchDownHandler(hWnd, ti[i]);
}
else if(ti[i].dwFlags & TOUCHEVENTF_MOVE)
{
OnTouchMoveHandler(hWnd, ti[i]);
}
else if(ti[i].dwFlags & TOUCHEVENTF_UP)
{
OnTouchUpHandler(hWnd, ti[i]);
}
}
}
CloseTouchInputHandle((HTOUCHINPUT)lParam);
delete [] ti;
}
break;
以下代码演示如何在 WM_PAINT 消息处理程序中将墨迹笔划绘制到屏幕上。
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
// Full redraw: draw complete collection of finished strokes and
// also all the strokes that are currently in drawing.
g_StrkColFinished.Draw(hdc);
g_StrkColDrawing.Draw(hdc);
EndPaint(hWnd, &ps);
break;
以下代码显示笔划对象如何在屏幕上呈现笔划。
void CStroke::Draw(HDC hDC) const
{
if(m_nCount < 2)
{
return;
}
HPEN hPen = CreatePen(PS_SOLID, 3, m_clr);
HGDIOBJ hOldPen = SelectObject(hDC, hPen);
Polyline(hDC, m_arrData, m_nCount);
SelectObject(hDC, hOldPen);
DeleteObject(hPen);
}
相关主题
Windows 触控暂存板示例 (C#) 、 多点触控暂存板应用程序 (WM_TOUCH/C#) 、 多点触控暂存板应用程序 (WM_TOUCH/C++) 、 Windows 触控示例