diff options
author | sr55 <[email protected]> | 2015-07-18 20:10:15 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-07-18 20:10:15 +0000 |
commit | 358cb88d56078fab57c5daf9493704b111217839 (patch) | |
tree | 4d16284ff2a4e69227b763f50d99b74826348dcb /win/CS/HandBrakeWPF/ViewModels/Interfaces/IMiniViewModel.cs | |
parent | 074663b7aa8e85a85fd6d298ada3cd50500348c8 (diff) |
WinGui: Add a Mini Status Display window that can be accessed via the tray notify icon when the app is minimised to tray.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7350 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IMiniViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IMiniViewModel.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMiniViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMiniViewModel.cs new file mode 100644 index 000000000..dbc3d8259 --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMiniViewModel.cs @@ -0,0 +1,22 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IMiniViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The IMiniViewModel interface.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels.Interfaces
+{
+ /// <summary>
+ /// The IMiniViewModel interface.
+ /// </summary>
+ public interface IMiniViewModel
+ {
+ /// <summary>
+ /// The activate.
+ /// </summary>
+ void Activate();
+ }
+}
\ No newline at end of file |