Files
ntwain/NTwain/Triplets/DGControl/DGControl.Event.cs

28 lines
1.2 KiB
C#
Raw Normal View History

2014-04-02 19:13:15 -04:00
using NTwain.Data;
2014-04-20 16:57:38 -04:00
using NTwain.Internals;
2014-04-02 19:01:21 -04:00
namespace NTwain.Triplets
{
sealed class Event : OpBase
{
internal Event(ITwainSessionInternal session) : base(session) { }
2014-04-02 19:01:21 -04:00
/// <summary>
/// This operation supports the distribution of events from the application to Sources so that the
/// Source can maintain its user interface and return messages to the application. Once the
/// application has enabled the Source, it must immediately begin sending to the Source all events
/// that enter the applications main event loop. This allows the Source to update its user interface
/// in real-time and to return messages to the application which cause state transitions. Even if the
/// application overrides the Sources user interface, it must forward all events once the Source has
/// been enabled. The Source will tell the application whether or not each event belongs to the
/// Source.
/// </summary>
/// <param name="theEvent">The event.</param>
/// <returns></returns>
public ReturnCode ProcessEvent(TWEvent theEvent)
{
Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.Event, Message.ProcessEvent);
2014-05-20 07:25:57 -04:00
return Dsm.DsmEntry(Session.AppId, Session.CurrentSource.Identity, Message.ProcessEvent, theEvent);
2014-04-02 19:01:21 -04:00
}
}
}