blob: cb6cbbb7d42827df2e3d329d182ec2ae1b4fc587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Win7.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>
// A class implementing Windows 7 Specific features
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Utilities
{
using System.Windows.Shell;
/// <summary>
/// A class implementing Windows 7 Specific features
/// </summary>
public class Win7
{
/// <summary>
/// The Windows Taskbar
/// </summary>
public static TaskbarItemInfo WindowsTaskbar;
/// <summary>
/// Initializes a new instance of the <see cref="Win7"/> class.
/// </summary>
public Win7()
{
if (WindowsTaskbar == null)
WindowsTaskbar = new TaskbarItemInfo();
}
/// <summary>
/// Gets a value indicating whether is windows seven.
/// </summary>
public bool IsWindowsSeven
{
get
{
return true;
}
}
/// <summary>
/// The get task bar.
/// </summary>
/// <returns>
/// The <see cref="TaskbarItemInfo"/>.
/// </returns>
public TaskbarItemInfo GetTaskBar()
{
return WindowsTaskbar;
}
/// <summary>
/// Set the Task Bar Percentage.
/// </summary>
/// <param name="percentage">
/// The percentage.
/// </param>
public void SetTaskBarProgress(int percentage)
{
// Update the taskbar progress indicator. The normal state shows a green progress bar.
Caliburn.Micro.Execute.OnUIThread(
() =>
{
WindowsTaskbar.ProgressState = TaskbarItemProgressState.Normal;
WindowsTaskbar.ProgressValue = (double)percentage / 100;
});
}
/// <summary>
/// Disable Task Bar Progress
/// </summary>
public void SetTaskBarProgressToNoProgress()
{
Caliburn.Micro.Execute.OnUIThread(() => WindowsTaskbar.ProgressState = TaskbarItemProgressState.None);
}
}
}
|