naps2/NAPS2.Lib/EtoForms/Desktop/IDesktopSubFormController.cs
2024-03-09 22:11:11 -08:00

24 lines
708 B
C#

namespace NAPS2.EtoForms.Desktop;
public interface IDesktopSubFormController
{
IDesktopSubFormController WithSelection(Func<ListSelection<UiImage>> selectionFunc);
void ShowCropForm();
void ShowBrightnessContrastForm();
void ShowHueSaturationForm();
void ShowBlackWhiteForm();
void ShowSharpenForm();
void ShowSplitForm();
void ShowCombineForm();
void ShowRotateForm();
void ShowProfilesForm();
void ShowOcrForm();
void ShowBatchScanForm();
void ShowScannerSharingForm();
void ShowViewerForm();
void ShowPdfSettingsForm();
void ShowImageSettingsForm();
void ShowEmailSettingsForm();
void ShowAboutForm();
void ShowSettingsForm();
}