public RecoveryManager(IFormFactory formFactory, IScannedImageFactory scannedImageFactory, IUserConfigManager userConfigManager, ThreadFactory threadFactory) { this.formFactory = formFactory; this.scannedImageFactory = scannedImageFactory; this.userConfigManager = userConfigManager; this.threadFactory = threadFactory; }
public DirectImportOperation(ThumbnailRenderer thumbnailRenderer, ThreadFactory threadFactory) { this.thumbnailRenderer = thumbnailRenderer; this.threadFactory = threadFactory; AllowCancel = true; }
public DirectImportOperation(IUserConfigManager userConfigManager, ThreadFactory threadFactory) { this.userConfigManager = userConfigManager; this.threadFactory = threadFactory; AllowCancel = true; }
public ImportOperation(IScannedImageImporter scannedImageImporter, ThreadFactory threadFactory) { this.scannedImageImporter = scannedImageImporter; this.threadFactory = threadFactory; ProgressTitle = MiscResources.ImportProgress; AllowCancel = true; }
public WiaScanDriver(BackgroundWiaTransfer backgroundWiaTransfer, ForegroundWiaTransfer foregroundWiaTransfer, ThreadFactory threadFactory, IBlankDetector blankDetector, ThumbnailRenderer thumbnailRenderer) { this.backgroundWiaTransfer = backgroundWiaTransfer; this.foregroundWiaTransfer = foregroundWiaTransfer; this.threadFactory = threadFactory; this.blankDetector = blankDetector; this.thumbnailRenderer = thumbnailRenderer; }
public SavePdfOperation(FileNamePlaceholders fileNamePlaceholders, IPdfExporter pdfExporter, IOverwritePrompt overwritePrompt, ThreadFactory threadFactory) { this.fileNamePlaceholders = fileNamePlaceholders; this.pdfExporter = pdfExporter; this.overwritePrompt = overwritePrompt; this.threadFactory = threadFactory; AllowCancel = true; }
public RecoveryOperation(IFormFactory formFactory, ThreadFactory threadFactory, ThumbnailRenderer thumbnailRenderer) { this.formFactory = formFactory; this.threadFactory = threadFactory; this.thumbnailRenderer = thumbnailRenderer; ProgressTitle = MiscResources.ImportProgress; AllowCancel = true; }
public RecoveryOperation(IFormFactory formFactory, IUserConfigManager userConfigManager, ThreadFactory threadFactory) { this.formFactory = formFactory; this.userConfigManager = userConfigManager; this.threadFactory = threadFactory; ProgressTitle = MiscResources.ImportProgress; AllowCancel = true; }
public SaveImagesOperation(FileNamePlaceholders fileNamePlaceholders, ImageSettingsContainer imageSettingsContainer, IOverwritePrompt overwritePrompt, ThreadFactory threadFactory) { this.fileNamePlaceholders = fileNamePlaceholders; this.imageSettingsContainer = imageSettingsContainer; this.overwritePrompt = overwritePrompt; this.threadFactory = threadFactory; ProgressTitle = MiscResources.SaveImagesProgress; AllowCancel = true; }
public FBatchScan(IProfileManager profileManager, AppConfigManager appConfigManager, IconButtonSizer iconButtonSizer, IScanPerformer scanPerformer, IUserConfigManager userConfigManager, BatchScanPerformer batchScanPerformer, IErrorOutput errorOutput, ThreadFactory threadFactory) { this.profileManager = profileManager; this.appConfigManager = appConfigManager; this.iconButtonSizer = iconButtonSizer; this.scanPerformer = scanPerformer; this.userConfigManager = userConfigManager; this.batchScanPerformer = batchScanPerformer; this.errorOutput = errorOutput; this.threadFactory = threadFactory; InitializeComponent(); RestoreFormState = false; }
public WiaScanDriver(IWiaTransfer wiaTransfer, ThreadFactory threadFactory, IBlankDetector blankDetector) { this.wiaTransfer = wiaTransfer; this.threadFactory = threadFactory; this.blankDetector = blankDetector; }
public WiaScanDriver(IScannedImageFactory scannedImageFactory, IWiaTransfer wiaTransfer, ThreadFactory threadFactory) { this.scannedImageFactory = scannedImageFactory; this.wiaTransfer = wiaTransfer; this.threadFactory = threadFactory; }
public RecoveryManager(IFormFactory formFactory, ThreadFactory threadFactory, ThumbnailRenderer thumbnailRenderer) { this.formFactory = formFactory; this.threadFactory = threadFactory; this.thumbnailRenderer = thumbnailRenderer; }