summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Utilities/Win7.cs
blob: 5c5b78049b5ef59388b7db8d070d5c8666516f01 (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
// --------------------------------------------------------------------------------------------------------------------
// <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 implimenting Windows 7 Specific features
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.ApplicationServices.Utilities
{
    using Microsoft.WindowsAPICodePack.Taskbar;

    /// <summary>
    /// A class implimenting Windows 7 Specific features
    /// </summary>
    public class Win7
    {
        /// <summary>
        /// The Windows Taskbar
        /// </summary>
        private TaskbarManager windowsTaskbar;

        /// <summary>
        /// Initializes a new instance of the <see cref="Win7"/> class.
        /// </summary>
        public Win7()
        {
            if (this.IsWindowsSeven)
            {
                this.windowsTaskbar = TaskbarManager.Instance;
                this.windowsTaskbar.ApplicationId = "HandBrake";
            }
        }

        /// <summary>
        /// Gets a value indicating whether this is Windows Seven.
        /// </summary>
        public bool IsWindowsSeven
        {
            get
            {
                return TaskbarManager.IsPlatformSupported;
            }
        }

        /// <summary>
        /// Set the Task Bar Percentage.
        /// </summary>
        /// <param name="percentage">
        /// The percentage.
        /// </param>
        public void SetTaskBarProgress(int percentage)
        {
            if (!this.IsWindowsSeven)
            {
                return;
            }

            this.windowsTaskbar.SetProgressState(TaskbarProgressBarState.Normal);
            this.windowsTaskbar.SetProgressValue(percentage, 100);
        }

        /// <summary>
        /// Disable Task Bar Progress
        /// </summary>
        public void SetTaskBarProgressToNoProgress()
        {
            if (!this.IsWindowsSeven)
            {
                return;
            }

            this.windowsTaskbar.SetProgressState(TaskbarProgressBarState.NoProgress);
        }
    }
}