Interface IStrokeBuilder (rtscom.h)
Utilisez l’interface pour créer par programmation des traits à partir de données de paquets.
Héritage
L’interface IStrokeBuilder hérite de l’interface IUnknown. IStrokeBuilder possède également les types de membres suivants :
Méthodes
L’interface IStrokeBuilder a ces méthodes.
IStrokeBuilder ::AppendPackets Ajoute un paquet à la fin de la liste des paquets d’entrée du numériseur. |
IStrokeBuilder ::BeginStroke Commence un trait sur un objet d’entrée manuscrite à l’aide des données de paquet d’un objet De classe RealTimeStylus. |
IStrokeBuilder ::CreateStroke Crée des traits sur un objet ink à l’aide de données de paquet provenant d’un objet De classe RealTimeStylus. |
IStrokeBuilder ::EndStroke Termine un trait et retourne l’objet trait. |
IStrokeBuilder ::get_Ink Obtient ou définit l’objet ink associé à l’objet IStrokeBuilder. |
Remarques
Cette interface est implémentée par la classe StrokeBuilder.
La classe StrokeBuilder fournit une autre méthode de création d’un trait pour les applications qui gèrent les données. Il a des méthodes qui peuvent être appelées à partir des notifications StylusDown, Packets et StylusUp .
Les deux modèles suivants sont pris en charge.
- Conversion des informations de trait personnalisées en traits de manière atomique à l’aide de la méthode IStrokeBuilder ::CreateStroke Method .
- Création du trait à l’aide des méthodes IStrokeBuilder ::BeginStrokeStroke,IStrokeBuilder ::AppendPackets, et IStrokeBuilder ::EndStroke Method, qui miroir les notifications StylusDown, Packets et StylusUp.
Exemples
L’exemple C++ suivant montre une implémentation partielle d’une classe d’interface IStylusPlugin . Le plug-in utilise un objet StrokeBuilder pour créer un nouveau trait d’encre.
// CStrokeBuilderPlugin
// Helper functions
HRESULT CStrokeBuilderPlugin::GetInk(IInkDisp** pInk)
{
return m_pStrokeBuilder->get_Ink(pInk);
}
// IStylusAsyncPlugin Interface implementation
STDMETHODIMP CStrokeBuilderPlugin::RealTimeStylusEnabled(
/* [in] */ IRealTimeStylus *piRtsSrc,
/* [in] */ ULONG cTcidCount,
/* [size_is][in] */ const TABLET_CONTEXT_ID *pTcids)
{
// Create an IStrokeBuilder object
return CoCreateInstance(CLSID_StrokeBuilder, NULL, CLSCTX_INPROC, IID_IStrokeBuilder, (VOID **)&m_pStrokeBuilder);
}
STDMETHODIMP CStrokeBuilderPlugin::DataInterest(
/* [retval][out] */ RealTimeStylusDataInterest *pDataInterest)
{
// Set up the messages we want to receive
*pDataInterest = (RealTimeStylusDataInterest)(RTSDI_StylusDown | RTSDI_Packets |
RTSDI_StylusUp | RTSDI_Error);
return S_OK;
}
STDMETHODIMP CStrokeBuilderPlugin::StylusDown(
/* [in] */ IRealTimeStylus *piRtsSrc,
/* [in] */ const StylusInfo *pStylusInfo,
/* [in] */ ULONG cPropCountPerPkt,
/* [size_is][in] */ LONG *pPacket,
/* [out][in] */ LONG **ppInOutPkt)
{
FLOAT fInkToDeviceScaleX;
FLOAT fInkToDeviceScaleY;
ULONG cPacketProperties;
PACKET_PROPERTY* pPacketProperties;
// Get the info we need to call BeginStroke
HRESULT hr = piRtsSrc->GetPacketDescriptionData(pStylusInfo->tcid, &fInkToDeviceScaleX, &fInkToDeviceScaleY,
&cPacketProperties, &pPacketProperties);
if (SUCCEEDED(hr))
{
// Start creating the stroke
hr = m_pStrokeBuilder->BeginStroke(pStylusInfo->tcid, pStylusInfo->cid, pPacket, cPropCountPerPkt,
pPacketProperties, fInkToDeviceScaleX, fInkToDeviceScaleY, &m_piStroke);
}
return hr;
}
STDMETHODIMP CStrokeBuilderPlugin::Packets(
/* [in] */ IRealTimeStylus *piRtsSrc,
/* [in] */ const StylusInfo *pStylusInfo,
/* [in] */ ULONG cPktCount,
/* [in] */ ULONG cPktBuffLength,
/* [size_is][in] */ LONG *pPackets,
/* [out][in] */ ULONG *pcInOutPkts,
/* [out][in] */ LONG **ppInOutPkts)
{
// Add packet to the stroke
return m_pStrokeBuilder->AppendPackets(pStylusInfo->tcid, pStylusInfo->cid, cPktBuffLength, pPackets);
}
STDMETHODIMP CStrokeBuilderPlugin::StylusUp(
/* [in] */ IRealTimeStylus *piRtsSrc,
/* [in] */ const StylusInfo *pStylusInfo,
/* [in] */ ULONG cPropCountPerPkt,
/* [size_is][in] */ LONG *pPacket,
/* [out][in] */ LONG **ppInOutPkt)
{
// Finish the stroke. This adds the stroke to the StrokeBuilder's Ink object.
return m_pStrokeBuilder->EndStroke(pStylusInfo->tcid, pStylusInfo->cid, &m_piStroke, NULL);
}
STDMETHODIMP CStrokeBuilderPlugin::Error(
/* [in] */ IRealTimeStylus *piRtsSrc,
/* [in] */ IStylusPlugin *piPlugin,
/* [in] */ RealTimeStylusDataInterest dataInterest,
/* [in] */ HRESULT hrErrorCode,
/* [out][in] */ LONG_PTR *lptrKey)
{
CString strError;
strError.Format(L"An error occurred. Error code: %d", hrErrorCode);
TRACE(strError);
return S_OK;
}
// The remaining interface methods are not used
Configuration requise
Condition requise | Valeur |
---|---|
Client minimal pris en charge | Windows XP Édition Tablet PC [applications de bureau uniquement] |
Serveur minimal pris en charge | Aucun pris en charge |
Plateforme cible | Windows |
En-tête | rtscom.h |