summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/Interfaces
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-07-08 11:25:45 +0000
committersr55 <[email protected]>2012-07-08 11:25:45 +0000
commitda44aa82136fb9423f041b200b3e40632b8287e7 (patch)
tree3488aa667e0bcb0b8a54eec8c11fd8f98e3c2c41 /win/CS/HandBrakeWPF/ViewModels/Interfaces
parent7746907bf0ae4ef3f02aaa28a34a493dade912a2 (diff)
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
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs35
1 files changed, 35 insertions, 0 deletions
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
/// </summary>
void ExitApplication();
+
+ /// <summary>
+ /// Open the Log Window
+ /// </summary>
+ void OpenLogWindow();
+
+ /// <summary>
+ /// Open the Queue Window.
+ /// </summary>
+ void OpenQueueWindow();
+
+ /// <summary>
+ /// Add the current task to the queue.
+ /// </summary>
+ void AddToQueue();
+
+ /// <summary>
+ /// File Scan
+ /// </summary>
+ void FileScan();
+
+ /// <summary>
+ /// Folder Scan
+ /// </summary>
+ void FolderScan();
+
+ /// <summary>
+ /// Stop an Encode.
+ /// </summary>
+ void StopEncode();
+
+ /// <summary>
+ /// Start an Encode
+ /// </summary>
+ void StartEncode();
}
} \ No newline at end of file