From da44aa82136fb9423f041b200b3e40632b8287e7 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 8 Jul 2012 11:25:45 +0000 Subject: WinGui: Add support for keyboard shortcuts. These are slightly different to the old UI. See Below. // Start Encode (Ctrl+S) // Stop Encode (Ctrl+K) // Open Log Window (Ctrl+L) // Open Queue Window (Ctrl+Q) // Add to Queue (Ctrl+A) // Scan a File (Ctrl+F) // Scan a Folder (Ctrl+R) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4820 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../ViewModels/Interfaces/IMainViewModel.cs | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces') diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs index e9e2c4901..8f1f6e5a6 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs @@ -25,5 +25,40 @@ namespace HandBrakeWPF.ViewModels.Interfaces /// Shutdown the Application /// void ExitApplication(); + + /// + /// Open the Log Window + /// + void OpenLogWindow(); + + /// + /// Open the Queue Window. + /// + void OpenQueueWindow(); + + /// + /// Add the current task to the queue. + /// + void AddToQueue(); + + /// + /// File Scan + /// + void FileScan(); + + /// + /// Folder Scan + /// + void FolderScan(); + + /// + /// Stop an Encode. + /// + void StopEncode(); + + /// + /// Start an Encode + /// + void StartEncode(); } } \ No newline at end of file -- cgit v1.2.3