naps2/NAPS2.Lib/EtoForms/StubDialogHelper.cs

28 lines
644 B
C#
Raw Normal View History

2022-10-11 04:44:13 +03:00
namespace NAPS2.EtoForms;
2022-08-21 03:50:38 +03:00
public class StubDialogHelper : DialogHelper
{
public override bool PromptToSavePdfOrImage(string? defaultPath, out string? savePath)
2022-08-21 03:50:38 +03:00
{
savePath = null;
return false;
}
public override bool PromptToSavePdf(string? defaultPath, out string? savePath)
2022-08-21 03:50:38 +03:00
{
savePath = null;
return false;
}
public override bool PromptToSaveImage(string? defaultPath, out string? savePath)
2022-08-21 03:50:38 +03:00
{
savePath = null;
return false;
}
public override bool PromptToImport(out string[]? filePaths)
{
filePaths = null;
return false;
}
2022-08-21 03:50:38 +03:00
}