ntwain/NTwain/Triplets/DGControl/DGControl.Identity.cs

113 lines
4.0 KiB
C#
Raw Normal View History

2014-04-03 07:13:15 +08:00
using NTwain.Data;
2014-04-21 04:57:38 +08:00
using NTwain.Internals;
2014-04-03 07:01:21 +08:00
namespace NTwain.Triplets
{
2014-04-05 10:19:16 +08:00
/// <summary>
/// Represents <see cref="DataArgumentType.Identity"/>.
/// </summary>
2014-04-03 07:01:21 +08:00
public sealed class Identity : OpBase
{
internal Identity(ITwainSessionInternal session) : base(session) { }
2014-04-03 07:01:21 +08:00
/// <summary>
/// When an application is finished with a Source, it must formally close the session between them
/// using this operation. This is necessary in case the Source only supports connection with a single
/// application (many desktop scanners will behave this way). A Source such as this cannot be
/// accessed by other applications until its current session is terminated.
/// </summary>
/// <returns></returns>
internal ReturnCode CloseDS()
{
Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Identity, Message.CloseDS);
2014-04-16 18:53:05 +08:00
var rc = Dsm.DsmEntry(Session.AppId, Message.CloseDS, Session.SourceId);
2014-04-03 07:01:21 +08:00
if (rc == ReturnCode.Success)
2014-04-04 19:25:11 +08:00
{
2014-04-06 04:48:28 +08:00
Session.ChangeSourceId(null);
2014-04-04 19:25:11 +08:00
Session.ChangeState(3, true);
2014-04-03 07:01:21 +08:00
}
return rc;
}
/// <summary>
/// Gets the identification information of the system default Source.
/// </summary>
/// <param name="source">The source.</param>
/// <returns></returns>
public ReturnCode GetDefault(out TWIdentity source)
{
Session.VerifyState(3, 7, DataGroups.Control, DataArgumentType.Identity, Message.GetDefault);
source = new TWIdentity();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Message.GetDefault, source);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// The application may obtain the first Source that are currently available on the system which
/// match the applications supported groups.
/// </summary>
/// <param name="source">The source.</param>
/// <returns></returns>
public ReturnCode GetFirst(out TWIdentity source)
{
Session.VerifyState(3, 7, DataGroups.Control, DataArgumentType.Identity, Message.GetFirst);
source = new TWIdentity();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Message.GetFirst, source);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// The application may obtain the next Source that are currently available on the system which
/// match the applications supported groups.
/// </summary>
/// <param name="source">The source.</param>
/// <returns></returns>
public ReturnCode GetNext(out TWIdentity source)
{
Session.VerifyState(3, 7, DataGroups.Control, DataArgumentType.Identity, Message.GetNext);
source = new TWIdentity();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Message.GetNext, source);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// Loads the specified Source into main memory and causes its initialization.
/// </summary>
/// <param name="source">The source.</param>
/// <returns></returns>
internal ReturnCode OpenDS(TWIdentity source)
{
Session.VerifyState(3, 3, DataGroups.Control, DataArgumentType.Identity, Message.OpenDS);
2014-04-16 18:53:05 +08:00
var rc = Dsm.DsmEntry(Session.AppId, Message.OpenDS, source);
2014-04-03 07:01:21 +08:00
if (rc == ReturnCode.Success)
2014-04-04 19:25:11 +08:00
{
2014-04-06 04:48:28 +08:00
Session.ChangeSourceId(source);
2014-04-04 19:25:11 +08:00
Session.ChangeState(4, true);
2014-04-03 07:01:21 +08:00
}
return rc;
}
/// <summary>
/// It allows an application to set the
/// default TWAIN driver, which is reported back by GetDefault.
/// </summary>
/// <param name="source">The source.</param>
/// <returns></returns>
public ReturnCode Set(TWIdentity source)
{
Session.VerifyState(3, 3, DataGroups.Control, DataArgumentType.Identity, Message.Set);
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Message.Set, source);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// This operation should be invoked when the user chooses Select Source... from the applications
/// File menu (or an equivalent user action). The Source selected becomes the system default Source.
/// </summary>
/// <param name="source">The source.</param>
/// <returns></returns>
public ReturnCode UserSelect(out TWIdentity source)
{
Session.VerifyState(3, 7, DataGroups.Control, DataArgumentType.Identity, Message.UserSelect);
source = new TWIdentity();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Message.UserSelect, source);
2014-04-03 07:01:21 +08:00
}
}
}