├── VolPI ├── VolPI.ico ├── VolPI icon.fla ├── VolPI icon.png ├── Resources │ └── notifyIconTemplate.ico ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ └── Resources.Designer.cs ├── packages.config ├── Program.cs ├── AboutBox1.cs ├── VolPI.csproj ├── AboutBox1.Designer.cs ├── Form1.cs ├── Form1.Designer.cs └── AboutBox1.resx ├── screenshots └── v1 │ ├── default_hover.jpg │ ├── volpi_v1_hover.jpg │ ├── volpi_v1_muted.jpg │ ├── volpi_v1_unmuted.jpg │ ├── default_mastermixer.jpg │ ├── volpi_v1_mastermixer.jpg │ ├── .picasaoriginals │ ├── volpi_v1_muted.jpg │ ├── volpi_v1_unmuted.jpg │ └── .picasa.ini │ └── .picasa.ini ├── appveyor.yml ├── .github └── FUNDING.yml ├── LICENSE ├── VolPI.sln ├── .gitattributes ├── README.md └── .gitignore /VolPI/VolPI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/VolPI/VolPI.ico -------------------------------------------------------------------------------- /VolPI/VolPI icon.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/VolPI/VolPI icon.fla -------------------------------------------------------------------------------- /VolPI/VolPI icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/VolPI/VolPI icon.png -------------------------------------------------------------------------------- /screenshots/v1/default_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/default_hover.jpg -------------------------------------------------------------------------------- /screenshots/v1/volpi_v1_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/volpi_v1_hover.jpg -------------------------------------------------------------------------------- /screenshots/v1/volpi_v1_muted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/volpi_v1_muted.jpg -------------------------------------------------------------------------------- /screenshots/v1/volpi_v1_unmuted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/volpi_v1_unmuted.jpg -------------------------------------------------------------------------------- /VolPI/Resources/notifyIconTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/VolPI/Resources/notifyIconTemplate.ico -------------------------------------------------------------------------------- /screenshots/v1/default_mastermixer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/default_mastermixer.jpg -------------------------------------------------------------------------------- /screenshots/v1/volpi_v1_mastermixer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/volpi_v1_mastermixer.jpg -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | install: 2 | - ps: nuget Install "AudioSwitcher.AudioApi.CoreAudio" 3 | 4 | before_build: 5 | - ps: nuget restore "VolPI.sln" 6 | -------------------------------------------------------------------------------- /screenshots/v1/.picasaoriginals/volpi_v1_muted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/.picasaoriginals/volpi_v1_muted.jpg -------------------------------------------------------------------------------- /screenshots/v1/.picasaoriginals/volpi_v1_unmuted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymelon/VolPI/HEAD/screenshots/v1/.picasaoriginals/volpi_v1_unmuted.jpg -------------------------------------------------------------------------------- /VolPI/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /VolPI/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /VolPI/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /screenshots/v1/.picasa.ini: -------------------------------------------------------------------------------- 1 | [volpi_v1_muted.jpg] 2 | backuphash=31255 3 | [volpi_v1_hover.jpg] 4 | filters=DropShadow=1,2.280702,88.421051,4.093567,00000000,00ffffff,41.520466; 5 | backuphash=5370 6 | [default_hover.jpg] 7 | filters=DropShadow=1,1.754386,77.894737,5.263158,00000000,00ffffff,26.900583; 8 | backuphash=45815 9 | [volpi_v1_unmuted.jpg] 10 | backuphash=44867 11 | -------------------------------------------------------------------------------- /screenshots/v1/.picasaoriginals/.picasa.ini: -------------------------------------------------------------------------------- 1 | [volpi_v1_unmuted.jpg] 2 | filters=DropShadow=1,2.105263,88.421051,6.432749,00000000,00ffffff,0.000000; 3 | moddate=7d0f08c99b5ad201 4 | width=273 5 | height=90 6 | textactive=0 7 | [volpi_v1_muted.jpg] 8 | filters=DropShadow=1,4.000000,90.000000,10.000000,00000000,00ffffff,30.000000; 9 | moddate=0273271b9c5ad201 10 | width=259 11 | height=91 12 | textactive=0 13 | -------------------------------------------------------------------------------- /VolPI/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace VolPI 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: raymelon # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: raymelon # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Raymel Francisco 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /VolPI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace VolPI.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /VolPI.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VolPI", "VolPI\VolPI.csproj", "{B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|x86 = Debug|x86 12 | Release|Any CPU = Release|Any CPU 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Debug|x86.ActiveCfg = Debug|Any CPU 19 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Debug|x86.Build.0 = Debug|Any CPU 20 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Release|Any CPU.Build.0 = Release|Any CPU 22 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Release|x86.ActiveCfg = Release|Any CPU 23 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC}.Release|x86.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /VolPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("VolPI")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Francisco")] 12 | [assembly: AssemblyProduct("VolPI")] 13 | [assembly: AssemblyCopyright("Copyright © Francisco 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("b3e27df1-4f6e-46f4-8f1e-398da6e7fcdc")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Volπ: Volume Percent Indicator [![forthebadge](http://forthebadge.com/images/badges/made-with-c-sharp.svg)](http://forthebadge.com) 2 | ### Your volume percentage etched on your tray. 3 | > 4 | From 5 | ![alt tag](https://github.com/raymelon/VolPI/blob/master/screenshots/v1/default_hover.jpg) 6 | to... 7 | ![alt tag](https://github.com/raymelon/VolPI/blob/master/screenshots/v1/volpi_v1_hover.jpg) 8 | 9 | >See [VolPI/screenshots](https://github.com/raymelon/VolPI/tree/master/screenshots) for more. 10 | 11 | [![Build status](https://ci.appveyor.com/api/projects/status/asu6ofasst2t1ce4)](https://ci.appveyor.com/project/raymelon/volpi) 12 | [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=flat-square)](https://twitter.com/intent/tweet?text=Check%20out%20VolPI!%20The%20Volume%20Percentage%20Indicator.%20Your%20volume%20percentage%20etched%20on%20your%20system%20tray.%20%40github%20https://github.com/raymelon/VolPI) 13 | ![](https://reposs.herokuapp.com/?path=raymelon/VolPI&color=red) 14 | [![os (Windows 7+)](https://img.shields.io/badge/os-Windows%207%2B-green.svg?style=flat-square)](https://www.microsoft.com/en-us/software-download/windows7) 15 | [![.NET (4.0+)](https://img.shields.io/badge/.NET%20Framework-4.0%2B-orange.svg?style=flat-square)](https://www.microsoft.com/net) 16 | 17 | ## How To's 18 | 19 | - To mute/unmute, double click the tray icon. 20 | 21 | ![alt tag](https://github.com/raymelon/VolPI/blob/master/screenshots/v1/volpi_v1_muted.jpg) 22 | ![alt tag](https://github.com/raymelon/VolPI/blob/master/screenshots/v1/volpi_v1_unmuted.jpg) 23 | 24 | - To open the Windows' volume slider `sndvol.exe -f`, single click the tray icon. 25 | - To show the tray menu, right click the tray icon. 26 | 27 | ## Download 28 | - [VolPI_v1.0.1.zip](https://github.com/raymelon/VolPI/releases/download/v1.0.1/VolPI_v1.0.1.zip) 29 | 30 | > - Once finished, extract the `zip` file. 31 | > - Open `VolPI.exe` and place it anywhere on your tray. 32 | > - Don't forget to add `VolPI.exe` to startup. 33 | > - Enjoy! 34 | 35 | ## Audio Libraries 36 | This project uses [AudioSwitcher](https://github.com/xenolightning/AudioSwitcher) and [NAudio](https://github.com/naudio/NAudio). 37 | 38 | Integrate these libraries on your projects too! [![NuGet](https://img.shields.io/nuget/v/Nuget.Core.svg?style=flat-square)]() 39 | ``` 40 | PM> Install-Package AudioSwitcher.AudioApi.CoreAudio 41 | PM> Install-Package NAudio 42 | ``` 43 | 44 | ## Licenses [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT) ![License: MS-PL](https://img.shields.io/badge/License-MS--PL-8A2BE2.svg?style=flat-square) [![License: CC BY-NC 4.0](https://img.shields.io/badge/License-CC%20BY--NC%204.0-lightgrey.svg?style=flat-square)](http://creativecommons.org/licenses/by-nc/4.0/) Creative Commons License 45 | This app's code is licensed under [MIT License](https://github.com/raymelon/VolPI/blob/master/LICENSE) 46 | while its icon files [VolPI.ico](https://github.com/raymelon/VolPI/blob/master/VolPI/VolPI.ico) and 47 | [VolPI icon.png](https://github.com/raymelon/VolPI/blob/master/VolPI/VolPI%20icon.png) are licensed under 48 | [Creative Commons Attribution-NonCommercial 4.0 International License](https://creativecommons.org/licenses/by-nc/4.0/). 49 | AudioSwitcher and NAudio are licensed under [Microsoft Public License (MS-PL)](https://opensource.org/licenses/MS-PL). 50 | -------------------------------------------------------------------------------- /VolPI/AboutBox1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Drawing; 5 | using System.Linq; 6 | using System.Reflection; 7 | using System.Windows.Forms; 8 | 9 | namespace VolPI 10 | { 11 | partial class AboutBox1 : Form 12 | { 13 | public AboutBox1() 14 | { 15 | InitializeComponent(); 16 | this.Text = String.Format("About {0}", AssemblyTitle); 17 | } 18 | 19 | #region Assembly Attribute Accessors 20 | 21 | public string AssemblyTitle 22 | { 23 | get 24 | { 25 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); 26 | if (attributes.Length > 0) 27 | { 28 | AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; 29 | if (titleAttribute.Title != "") 30 | { 31 | return titleAttribute.Title; 32 | } 33 | } 34 | return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); 35 | } 36 | } 37 | 38 | public string AssemblyVersion 39 | { 40 | get 41 | { 42 | return Assembly.GetExecutingAssembly().GetName().Version.ToString(); 43 | } 44 | } 45 | 46 | public string AssemblyDescription 47 | { 48 | get 49 | { 50 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); 51 | if (attributes.Length == 0) 52 | { 53 | return ""; 54 | } 55 | return ((AssemblyDescriptionAttribute)attributes[0]).Description; 56 | } 57 | } 58 | 59 | public string AssemblyProduct 60 | { 61 | get 62 | { 63 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); 64 | if (attributes.Length == 0) 65 | { 66 | return ""; 67 | } 68 | return ((AssemblyProductAttribute)attributes[0]).Product; 69 | } 70 | } 71 | 72 | public string AssemblyCopyright 73 | { 74 | get 75 | { 76 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); 77 | if (attributes.Length == 0) 78 | { 79 | return ""; 80 | } 81 | return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; 82 | } 83 | } 84 | 85 | public string AssemblyCompany 86 | { 87 | get 88 | { 89 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 90 | if (attributes.Length == 0) 91 | { 92 | return ""; 93 | } 94 | return ((AssemblyCompanyAttribute)attributes[0]).Company; 95 | } 96 | } 97 | #endregion 98 | 99 | private void okButton_Click(object sender, EventArgs e) 100 | { 101 | this.Close(); 102 | } 103 | 104 | private void linkLabelGitHub_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 105 | { 106 | System.Diagnostics.Process.Start(@"https://github.com/raymelon/VolPI"); 107 | } 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /VolPI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace VolPI.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("VolPI.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). 65 | /// 66 | internal static System.Drawing.Icon notifyIconTemplate { 67 | get { 68 | object obj = ResourceManager.GetObject("notifyIconTemplate", resourceCulture); 69 | return ((System.Drawing.Icon)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). 75 | /// 76 | internal static System.Drawing.Icon VolPI { 77 | get { 78 | object obj = ResourceManager.GetObject("VolPI", resourceCulture); 79 | return ((System.Drawing.Icon)(obj)); 80 | } 81 | } 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | [Xx]64/ 19 | [Xx]86/ 20 | [Bb]uild/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | *.VC.db 84 | 85 | # Visual Studio profiler 86 | *.psess 87 | *.vsp 88 | *.vspx 89 | *.sap 90 | 91 | # TFS 2012 Local Workspace 92 | $tf/ 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | *.DotSettings.user 101 | 102 | # JustCode is a .NET coding add-in 103 | .JustCode 104 | 105 | # TeamCity is a build add-in 106 | _TeamCity* 107 | 108 | # DotCover is a Code Coverage Tool 109 | *.dotCover 110 | 111 | # NCrunch 112 | _NCrunch_* 113 | .*crunch*.local.xml 114 | nCrunchTemp_* 115 | 116 | # MightyMoose 117 | *.mm.* 118 | AutoTest.Net/ 119 | 120 | # Web workbench (sass) 121 | .sass-cache/ 122 | 123 | # Installshield output folder 124 | [Ee]xpress/ 125 | 126 | # DocProject is a documentation generator add-in 127 | DocProject/buildhelp/ 128 | DocProject/Help/*.HxT 129 | DocProject/Help/*.HxC 130 | DocProject/Help/*.hhc 131 | DocProject/Help/*.hhk 132 | DocProject/Help/*.hhp 133 | DocProject/Help/Html2 134 | DocProject/Help/html 135 | 136 | # Click-Once directory 137 | publish/ 138 | 139 | # Publish Web Output 140 | *.[Pp]ublish.xml 141 | *.azurePubxml 142 | 143 | # TODO: Un-comment the next line if you do not want to checkin 144 | # your web deploy settings because they may include unencrypted 145 | # passwords 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # NuGet Packages 150 | *.nupkg 151 | # The packages folder can be ignored because of Package Restore 152 | **/packages/* 153 | # except build/, which is used as an MSBuild target. 154 | !**/packages/build/ 155 | # Uncomment if necessary however generally it will be regenerated when needed 156 | #!**/packages/repositories.config 157 | # NuGet v3's project.json files produces more ignoreable files 158 | *.nuget.props 159 | *.nuget.targets 160 | 161 | # Microsoft Azure Build Output 162 | csx/ 163 | *.build.csdef 164 | 165 | # Microsoft Azure Emulator 166 | ecf/ 167 | rcf/ 168 | 169 | # Microsoft Azure ApplicationInsights config file 170 | ApplicationInsights.config 171 | 172 | # Windows Store app package directory 173 | AppPackages/ 174 | BundleArtifacts/ 175 | 176 | # Visual Studio cache files 177 | # files ending in .cache can be ignored 178 | *.[Cc]ache 179 | # but keep track of directories ending in .cache 180 | !*.[Cc]ache/ 181 | 182 | # Others 183 | ClientBin/ 184 | [Ss]tyle[Cc]op.* 185 | ~$* 186 | *~ 187 | *.dbmdl 188 | *.dbproj.schemaview 189 | *.pfx 190 | *.publishsettings 191 | node_modules/ 192 | orleans.codegen.cs 193 | 194 | # RIA/Silverlight projects 195 | Generated_Code/ 196 | 197 | # Backup & report files from converting an old project file 198 | # to a newer Visual Studio version. Backup files are not needed, 199 | # because we have git ;-) 200 | _UpgradeReport_Files/ 201 | Backup*/ 202 | UpgradeLog*.XML 203 | UpgradeLog*.htm 204 | 205 | # SQL Server files 206 | *.mdf 207 | *.ldf 208 | 209 | # Business Intelligence projects 210 | *.rdl.data 211 | *.bim.layout 212 | *.bim_*.settings 213 | 214 | # Microsoft Fakes 215 | FakesAssemblies/ 216 | 217 | # GhostDoc plugin setting file 218 | *.GhostDoc.xml 219 | 220 | # Node.js Tools for Visual Studio 221 | .ntvs_analysis.dat 222 | 223 | # Visual Studio 6 build log 224 | *.plg 225 | 226 | # Visual Studio 6 workspace options file 227 | *.opt 228 | 229 | # Visual Studio LightSwitch build output 230 | **/*.HTMLClient/GeneratedArtifacts 231 | **/*.DesktopClient/GeneratedArtifacts 232 | **/*.DesktopClient/ModelManifest.xml 233 | **/*.Server/GeneratedArtifacts 234 | **/*.Server/ModelManifest.xml 235 | _Pvt_Extensions 236 | 237 | # LightSwitch generated files 238 | GeneratedArtifacts/ 239 | ModelManifest.xml 240 | 241 | # Paket dependency manager 242 | .paket/paket.exe 243 | 244 | # FAKE - F# Make 245 | .fake/ -------------------------------------------------------------------------------- /VolPI/VolPI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {B3E27DF1-4F6E-46F4-8F1E-398DA6E7FCDC} 8 | WinExe 9 | Properties 10 | VolPI 11 | VolPI 12 | v4.0 13 | 512 14 | true 15 | 16 | publish\ 17 | true 18 | Disk 19 | false 20 | Foreground 21 | 7 22 | Days 23 | false 24 | false 25 | true 26 | 0 27 | 1.0.0.%2a 28 | false 29 | false 30 | true 31 | 32 | 33 | AnyCPU 34 | true 35 | full 36 | false 37 | bin\Debug\ 38 | DEBUG;TRACE 39 | prompt 40 | 4 41 | 42 | 43 | AnyCPU 44 | pdbonly 45 | true 46 | bin\Release\ 47 | TRACE 48 | prompt 49 | 4 50 | 51 | 52 | VolPI.ico 53 | 54 | 55 | 56 | ..\packages\AudioSwitcher.AudioApi.3.0.0\lib\net40\AudioSwitcher.AudioApi.dll 57 | True 58 | 59 | 60 | ..\packages\AudioSwitcher.AudioApi.CoreAudio.3.0.0.1\lib\net40\AudioSwitcher.AudioApi.CoreAudio.dll 61 | True 62 | 63 | 64 | ..\packages\NAudio.1.7.3\lib\net35\NAudio.dll 65 | True 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | Form 82 | 83 | 84 | AboutBox1.cs 85 | 86 | 87 | Form 88 | 89 | 90 | Form1.cs 91 | 92 | 93 | 94 | 95 | AboutBox1.cs 96 | 97 | 98 | Form1.cs 99 | 100 | 101 | ResXFileCodeGenerator 102 | Resources.Designer.cs 103 | Designer 104 | 105 | 106 | True 107 | Resources.resx 108 | True 109 | 110 | 111 | 112 | SettingsSingleFileGenerator 113 | Settings.Designer.cs 114 | 115 | 116 | True 117 | Settings.settings 118 | True 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | False 142 | Microsoft .NET Framework 4 %28x86 and x64%29 143 | true 144 | 145 | 146 | False 147 | .NET Framework 3.5 SP1 148 | false 149 | 150 | 151 | False 152 | Windows Installer 4.5 153 | true 154 | 155 | 156 | 157 | 164 | -------------------------------------------------------------------------------- /VolPI/AboutBox1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace VolPI 2 | { 3 | partial class AboutBox1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | protected override void Dispose(bool disposing) 14 | { 15 | if (disposing && (components != null)) 16 | { 17 | components.Dispose(); 18 | } 19 | base.Dispose(disposing); 20 | } 21 | 22 | #region Windows Form Designer generated code 23 | 24 | /// 25 | /// Required method for Designer support - do not modify 26 | /// the contents of this method with the code editor. 27 | /// 28 | private void InitializeComponent() 29 | { 30 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox1)); 31 | this.okButton = new System.Windows.Forms.Button(); 32 | this.pictureBoxLogo = new System.Windows.Forms.PictureBox(); 33 | this.labelTitle = new System.Windows.Forms.Label(); 34 | this.panel1 = new System.Windows.Forms.Panel(); 35 | this.linkLabelGitHub = new System.Windows.Forms.LinkLabel(); 36 | this.textBoxInfo = new System.Windows.Forms.TextBox(); 37 | ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLogo)).BeginInit(); 38 | this.panel1.SuspendLayout(); 39 | this.SuspendLayout(); 40 | // 41 | // okButton 42 | // 43 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 44 | this.okButton.BackColor = System.Drawing.Color.White; 45 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 46 | this.okButton.Location = new System.Drawing.Point(462, 9); 47 | this.okButton.Name = "okButton"; 48 | this.okButton.Size = new System.Drawing.Size(75, 23); 49 | this.okButton.TabIndex = 24; 50 | this.okButton.Text = "&OK"; 51 | this.okButton.UseVisualStyleBackColor = false; 52 | this.okButton.Click += new System.EventHandler(this.okButton_Click); 53 | // 54 | // pictureBoxLogo 55 | // 56 | this.pictureBoxLogo.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxLogo.Image"))); 57 | this.pictureBoxLogo.Location = new System.Drawing.Point(12, 12); 58 | this.pictureBoxLogo.Name = "pictureBoxLogo"; 59 | this.pictureBoxLogo.Size = new System.Drawing.Size(103, 113); 60 | this.pictureBoxLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 61 | this.pictureBoxLogo.TabIndex = 25; 62 | this.pictureBoxLogo.TabStop = false; 63 | // 64 | // labelTitle 65 | // 66 | this.labelTitle.AutoSize = true; 67 | this.labelTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 68 | this.labelTitle.ForeColor = System.Drawing.SystemColors.MenuHighlight; 69 | this.labelTitle.Location = new System.Drawing.Point(131, 12); 70 | this.labelTitle.Name = "labelTitle"; 71 | this.labelTitle.Size = new System.Drawing.Size(302, 30); 72 | this.labelTitle.TabIndex = 26; 73 | this.labelTitle.Text = "Volπ: Volume Percent Indicator"; 74 | // 75 | // panel1 76 | // 77 | this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 78 | | System.Windows.Forms.AnchorStyles.Right))); 79 | this.panel1.BackColor = System.Drawing.SystemColors.ControlLight; 80 | this.panel1.Controls.Add(this.okButton); 81 | this.panel1.Location = new System.Drawing.Point(-8, 271); 82 | this.panel1.Name = "panel1"; 83 | this.panel1.Size = new System.Drawing.Size(573, 44); 84 | this.panel1.TabIndex = 27; 85 | // 86 | // linkLabelGitHub 87 | // 88 | this.linkLabelGitHub.ActiveLinkColor = System.Drawing.Color.DarkRed; 89 | this.linkLabelGitHub.AutoSize = true; 90 | this.linkLabelGitHub.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 91 | this.linkLabelGitHub.LinkColor = System.Drawing.SystemColors.MenuHighlight; 92 | this.linkLabelGitHub.Location = new System.Drawing.Point(135, 47); 93 | this.linkLabelGitHub.Name = "linkLabelGitHub"; 94 | this.linkLabelGitHub.Size = new System.Drawing.Size(136, 13); 95 | this.linkLabelGitHub.TabIndex = 28; 96 | this.linkLabelGitHub.TabStop = true; 97 | this.linkLabelGitHub.Text = "github.com/raymelon/VolPI"; 98 | this.linkLabelGitHub.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelGitHub_LinkClicked); 99 | // 100 | // textBoxInfo 101 | // 102 | this.textBoxInfo.BackColor = System.Drawing.Color.White; 103 | this.textBoxInfo.Location = new System.Drawing.Point(136, 77); 104 | this.textBoxInfo.Multiline = true; 105 | this.textBoxInfo.Name = "textBoxInfo"; 106 | this.textBoxInfo.ReadOnly = true; 107 | this.textBoxInfo.RightToLeft = System.Windows.Forms.RightToLeft.No; 108 | this.textBoxInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 109 | this.textBoxInfo.Size = new System.Drawing.Size(393, 172); 110 | this.textBoxInfo.TabIndex = 29; 111 | this.textBoxInfo.Text = resources.GetString("textBoxInfo.Text"); 112 | // 113 | // AboutBox1 114 | // 115 | this.AcceptButton = this.okButton; 116 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 117 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 118 | this.BackColor = System.Drawing.Color.White; 119 | this.ClientSize = new System.Drawing.Size(563, 315); 120 | this.Controls.Add(this.textBoxInfo); 121 | this.Controls.Add(this.linkLabelGitHub); 122 | this.Controls.Add(this.panel1); 123 | this.Controls.Add(this.labelTitle); 124 | this.Controls.Add(this.pictureBoxLogo); 125 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 126 | this.MaximizeBox = false; 127 | this.MinimizeBox = false; 128 | this.Name = "AboutBox1"; 129 | this.Padding = new System.Windows.Forms.Padding(9); 130 | this.ShowIcon = false; 131 | this.ShowInTaskbar = false; 132 | this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 133 | this.Text = "About VolPI"; 134 | ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLogo)).EndInit(); 135 | this.panel1.ResumeLayout(false); 136 | this.ResumeLayout(false); 137 | this.PerformLayout(); 138 | 139 | } 140 | 141 | #endregion 142 | private System.Windows.Forms.Button okButton; 143 | private System.Windows.Forms.PictureBox pictureBoxLogo; 144 | private System.Windows.Forms.Label labelTitle; 145 | private System.Windows.Forms.Panel panel1; 146 | private System.Windows.Forms.LinkLabel linkLabelGitHub; 147 | private System.Windows.Forms.TextBox textBoxInfo; 148 | } 149 | } 150 | -------------------------------------------------------------------------------- /VolPI/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | using System.Drawing; 4 | using System.Diagnostics; 5 | 6 | using AudioSwitcher.AudioApi.CoreAudio; 7 | using NAudio.CoreAudioApi; 8 | 9 | namespace VolPI 10 | { 11 | public partial class Form1 : Form 12 | { 13 | public Form1() 14 | { 15 | this.InitializeComponent(); 16 | 17 | this.volumeString = this.defaultPlaybackDevice.Volume.ToString(); 18 | this.notifyIcon1.Icon = generateNotifyIcon(); 19 | this.notifyIcon1.Text += this.defaultPlaybackDevice.Volume + "%"; 20 | 21 | mmdevice.AudioEndpointVolume.OnVolumeNotification += AudioEndpointVolume_OnVolumeNotification; 22 | 23 | contextMenuStrip1.ItemClicked += new ToolStripItemClickedEventHandler(contextMenuStrip1_ItemClicked); 24 | 25 | 26 | //this.Hide(); 27 | } 28 | 29 | #region Events 30 | private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) 31 | { 32 | if(e.Button == MouseButtons.Left) 33 | { 34 | openSndVol("-f "); 35 | } 36 | else if(e.Button == MouseButtons.Right) 37 | { 38 | this.Left = Cursor.Position.X; 39 | this.Top = Screen.PrimaryScreen.WorkingArea.Bottom - this.Height; 40 | 41 | contextMenuStrip1.Left = this.Left; 42 | contextMenuStrip1.Top = this.Top; 43 | 44 | contextMenuStrip1.Show(); 45 | } 46 | } 47 | 48 | /// 49 | /// mutes master audio device when notify icon is double clicked 50 | /// 51 | private void notifyIcon1_DoubleClick(object sender, EventArgs e) 52 | { 53 | if (this.defaultPlaybackDevice.IsMuted) 54 | { 55 | this.unmute(); 56 | } 57 | else 58 | { 59 | this.mute(); 60 | } 61 | } 62 | 63 | private void AudioEndpointVolume_OnVolumeNotification(AudioVolumeNotificationData data) 64 | { 65 | this.volumeString = this.defaultPlaybackDevice.Volume.ToString(); 66 | this.notifyIcon1.Icon = generateNotifyIcon(); 67 | } 68 | 69 | private void contextMenuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e) 70 | { 71 | ToolStripItem clickedItem = e.ClickedItem; 72 | 73 | if (clickedItem == this.toolStripMenuItemExit) 74 | { 75 | this.Close(); 76 | } 77 | else if(clickedItem == this.toolStripMenuItemOpenVolumeMixer) 78 | { 79 | openSndVol("-r "); 80 | } 81 | else if(clickedItem == this.toolStripMenuItemPlaybackDevices) 82 | { 83 | Process.Start("control.exe", "mmsys.cpl,,0"); 84 | } 85 | else if(clickedItem == this.toolStripMenuItemRecordingDevices) 86 | { 87 | Process.Start("control.exe", "mmsys.cpl,,1"); 88 | } 89 | else if(clickedItem == this.toolStripMenuItemSounds) 90 | { 91 | Process.Start("control.exe", "mmsys.cpl,,2"); 92 | } 93 | else if (clickedItem == this.toolStripMenuItemVolumeControlOptions) 94 | { 95 | openSndVol("-p "); 96 | } 97 | else if(clickedItem == this.toolStripMenuItemTroubleshoot) 98 | { 99 | Process.Start("msdt.exe", "/id AudioPlaybackDiagnostic"); 100 | } 101 | else if (clickedItem == this.toolStripItemAbout) 102 | { 103 | contextMenuStrip1.Hide(); 104 | AboutBox1 aboutBox = new AboutBox1(); 105 | 106 | aboutBox.Left = Cursor.Position.X - aboutBox.Width / 2; 107 | aboutBox.Top = Cursor.Position.Y - aboutBox.Height; 108 | aboutBox.Show(); 109 | } 110 | } 111 | #endregion 112 | 113 | #region Class Methods 114 | /// 115 | /// shows volume adjuster/mixer/settings window (depending on the arguments supplied) positioned above the tray notification icon 116 | /// 117 | private void openSndVol(string arg) 118 | { 119 | this.Hide(); 120 | 121 | this.Left = Cursor.Position.X; 122 | this.Top = Cursor.Position.Y - this.Height; 123 | 124 | Process volTrack = new Process(); 125 | volTrack.StartInfo.WindowStyle = ProcessWindowStyle.Normal; 126 | volTrack.StartInfo.FileName = "sndvol.exe"; 127 | 128 | // position relative to the tray icon 129 | int notifyIconPos = this.Top * 65536 + this.Left; 130 | 131 | // open volume process & position it above the tray icon 132 | volTrack.StartInfo.Arguments = arg + notifyIconPos.ToString(); 133 | 134 | volTrack.Start(); 135 | } 136 | 137 | /// 138 | /// Generates custom text-like tray icon showing the current master volume percentage 139 | /// 140 | /// icon generated (Icon object) 141 | private Icon generateNotifyIcon() 142 | { 143 | using (Bitmap bitmap = new Bitmap(16, 16)) 144 | { 145 | using (Graphics graphics = Graphics.FromImage(bitmap)) 146 | { 147 | graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit; 148 | graphics.DrawIcon(Properties.Resources.notifyIconTemplate, 0, 0); 149 | 150 | // ajusts string's top left position between fonts Arial and Webdings to maintain vertical center alignment on system tray 151 | graphics.DrawString(this.volumeString, this.drawFont, this.drawBrush, 1, this.drawFont.Name == "Webdings" ? -1 : 1); 152 | 153 | using (Icon createdIcon = Icon.FromHandle(bitmap.GetHicon())) 154 | { 155 | return createdIcon; 156 | } 157 | } 158 | } 159 | } 160 | 161 | private void mute() 162 | { 163 | this.defaultPlaybackDevice.Mute(true); 164 | 165 | this.notifyIcon1.Text = "Speakers: Muted"; 166 | this.drawFont = new Font("Webdings", 10, FontStyle.Regular); 167 | this.drawBrush = new SolidBrush(Color.Red); 168 | this.volumeString = "x"; // Webdings equivalent of "x" is 'no symbol' " ⃠" unicode U+20E0 169 | 170 | this.notifyIcon1.Icon = generateNotifyIcon(); 171 | 172 | this.notifyIcon1.ShowBalloonTip(2, "VolPI", "Master volume muted.", ToolTipIcon.Warning); 173 | } 174 | 175 | private void unmute() 176 | { 177 | this.defaultPlaybackDevice.Mute(false); 178 | 179 | this.notifyIcon1.Text = "Speakers: " + this.defaultPlaybackDevice.Volume + "%"; 180 | this.drawFont = new Font("Arial", 8, FontStyle.Regular); 181 | this.drawBrush = new SolidBrush(Color.White); 182 | this.volumeString = this.defaultPlaybackDevice.Volume.ToString(); 183 | 184 | this.notifyIcon1.Icon = generateNotifyIcon(); 185 | 186 | this.notifyIcon1.ShowBalloonTip(2, "VolPI", "Master volume unmuted.", ToolTipIcon.Info); 187 | } 188 | #endregion 189 | 190 | #region Class Fields 191 | 192 | /// 193 | /// volume control object 194 | /// courtesy of Audio Switcher Core Audio API (NuGet package) 195 | /// 196 | CoreAudioDevice defaultPlaybackDevice = new CoreAudioController().DefaultPlaybackDevice; 197 | 198 | /// 199 | /// volume change event object 200 | /// courtesy of NAudio Core Audio API (NuGet package) 201 | /// 202 | private MMDevice mmdevice = (MMDevice) new MMDeviceEnumerator().GetDefaultAudioEndpoint(DataFlow.Render, Role.Multimedia); 203 | private static MMDeviceEnumerator enumer = new MMDeviceEnumerator(); 204 | 205 | /// 206 | /// dynamic custom notify icon stuff 207 | /// 208 | private Font drawFont = new Font("Arial", 8, FontStyle.Regular); 209 | private SolidBrush drawBrush = new SolidBrush(Color.White); 210 | private string volumeString = "NaN"; 211 | 212 | #endregion 213 | } 214 | } 215 | -------------------------------------------------------------------------------- /VolPI/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace VolPI 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 33 | this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); 34 | this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); 35 | this.toolStripMenuItemOpenVolumeMixer = new System.Windows.Forms.ToolStripMenuItem(); 36 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); 37 | this.toolStripMenuItemPlaybackDevices = new System.Windows.Forms.ToolStripMenuItem(); 38 | this.toolStripMenuItemRecordingDevices = new System.Windows.Forms.ToolStripMenuItem(); 39 | this.toolStripMenuItemSounds = new System.Windows.Forms.ToolStripMenuItem(); 40 | this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); 41 | this.toolStripMenuItemVolumeControlOptions = new System.Windows.Forms.ToolStripMenuItem(); 42 | this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); 43 | this.toolStripItemAbout = new System.Windows.Forms.ToolStripMenuItem(); 44 | this.toolStripMenuItemExit = new System.Windows.Forms.ToolStripMenuItem(); 45 | this.toolStripMenuItemTroubleshoot = new System.Windows.Forms.ToolStripMenuItem(); 46 | this.contextMenuStrip1.SuspendLayout(); 47 | this.SuspendLayout(); 48 | // 49 | // notifyIcon1 50 | // 51 | this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1; 52 | this.notifyIcon1.Text = "Speakers: "; 53 | this.notifyIcon1.Visible = true; 54 | this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick); 55 | this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick); 56 | // 57 | // contextMenuStrip1 58 | // 59 | this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 60 | this.toolStripMenuItemOpenVolumeMixer, 61 | this.toolStripSeparator1, 62 | this.toolStripMenuItemPlaybackDevices, 63 | this.toolStripMenuItemRecordingDevices, 64 | this.toolStripMenuItemSounds, 65 | this.toolStripSeparator2, 66 | this.toolStripMenuItemVolumeControlOptions, 67 | this.toolStripMenuItemTroubleshoot, 68 | this.toolStripSeparator3, 69 | this.toolStripItemAbout, 70 | this.toolStripMenuItemExit}); 71 | this.contextMenuStrip1.Name = "contextMenuStrip1"; 72 | this.contextMenuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; 73 | this.contextMenuStrip1.Size = new System.Drawing.Size(235, 198); 74 | // 75 | // toolStripMenuItemOpenVolumeMixer 76 | // 77 | this.toolStripMenuItemOpenVolumeMixer.Name = "toolStripMenuItemOpenVolumeMixer"; 78 | this.toolStripMenuItemOpenVolumeMixer.Size = new System.Drawing.Size(234, 22); 79 | this.toolStripMenuItemOpenVolumeMixer.Text = "Open Volume Mixer"; 80 | // 81 | // toolStripSeparator1 82 | // 83 | this.toolStripSeparator1.Name = "toolStripSeparator1"; 84 | this.toolStripSeparator1.Size = new System.Drawing.Size(231, 6); 85 | // 86 | // toolStripMenuItemPlaybackDevices 87 | // 88 | this.toolStripMenuItemPlaybackDevices.Name = "toolStripMenuItemPlaybackDevices"; 89 | this.toolStripMenuItemPlaybackDevices.Size = new System.Drawing.Size(234, 22); 90 | this.toolStripMenuItemPlaybackDevices.Text = "Playback Devices"; 91 | // 92 | // toolStripMenuItemRecordingDevices 93 | // 94 | this.toolStripMenuItemRecordingDevices.Name = "toolStripMenuItemRecordingDevices"; 95 | this.toolStripMenuItemRecordingDevices.Size = new System.Drawing.Size(234, 22); 96 | this.toolStripMenuItemRecordingDevices.Text = "Recording Devices"; 97 | // 98 | // toolStripMenuItemSounds 99 | // 100 | this.toolStripMenuItemSounds.Name = "toolStripMenuItemSounds"; 101 | this.toolStripMenuItemSounds.Size = new System.Drawing.Size(234, 22); 102 | this.toolStripMenuItemSounds.Text = "Sounds"; 103 | // 104 | // toolStripSeparator2 105 | // 106 | this.toolStripSeparator2.Name = "toolStripSeparator2"; 107 | this.toolStripSeparator2.Size = new System.Drawing.Size(231, 6); 108 | // 109 | // toolStripMenuItemVolumeControlOptions 110 | // 111 | this.toolStripMenuItemVolumeControlOptions.Name = "toolStripMenuItemVolumeControlOptions"; 112 | this.toolStripMenuItemVolumeControlOptions.Size = new System.Drawing.Size(234, 22); 113 | this.toolStripMenuItemVolumeControlOptions.Text = "Volume Control Options"; 114 | // 115 | // toolStripSeparator3 116 | // 117 | this.toolStripSeparator3.Name = "toolStripSeparator3"; 118 | this.toolStripSeparator3.Size = new System.Drawing.Size(231, 6); 119 | // 120 | // toolStripItemAbout 121 | // 122 | this.toolStripItemAbout.Name = "toolStripItemAbout"; 123 | this.toolStripItemAbout.Size = new System.Drawing.Size(234, 22); 124 | this.toolStripItemAbout.Text = "About VolPI"; 125 | // 126 | // toolStripMenuItemExit 127 | // 128 | this.toolStripMenuItemExit.Name = "toolStripMenuItemExit"; 129 | this.toolStripMenuItemExit.Size = new System.Drawing.Size(234, 22); 130 | this.toolStripMenuItemExit.Text = "Exit"; 131 | // 132 | // toolStripMenuItemTroubleshoot 133 | // 134 | this.toolStripMenuItemTroubleshoot.Name = "toolStripMenuItemTroubleshoot"; 135 | this.toolStripMenuItemTroubleshoot.Size = new System.Drawing.Size(234, 22); 136 | this.toolStripMenuItemTroubleshoot.Text = "Troubleshoot sound problems"; 137 | // 138 | // Form1 139 | // 140 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 141 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 142 | this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; 143 | this.ClientSize = new System.Drawing.Size(160, 0); 144 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 145 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 146 | this.Name = "Form1"; 147 | this.Opacity = 0D; 148 | this.ShowInTaskbar = false; 149 | this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 150 | this.Text = "VolPI"; 151 | this.contextMenuStrip1.ResumeLayout(false); 152 | this.ResumeLayout(false); 153 | 154 | } 155 | 156 | #endregion 157 | 158 | private System.Windows.Forms.NotifyIcon notifyIcon1; 159 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; 160 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemExit; 161 | private System.Windows.Forms.ToolStripMenuItem toolStripItemAbout; 162 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemOpenVolumeMixer; 163 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; 164 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemPlaybackDevices; 165 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemRecordingDevices; 166 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemSounds; 167 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; 168 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemVolumeControlOptions; 169 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator3; 170 | private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemTroubleshoot; 171 | } 172 | } 173 | 174 | -------------------------------------------------------------------------------- /VolPI/AboutBox1.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | 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 322 | pAAAAABJRU5ErkJggg== 323 | 324 | 325 | 326 | LICENSES: 327 | 328 | MIT License 329 | 330 | Copyright (c) 2016 Raymel Francisco 331 | 332 | Permission is hereby granted, free of charge, to any person obtaining a copy 333 | of this software and associated documentation files (the "Software"), to deal 334 | in the Software without restriction, including without limitation the rights 335 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 336 | copies of the Software, and to permit persons to whom the Software is 337 | furnished to do so, subject to the following conditions: 338 | 339 | The above copyright notice and this permission notice shall be included in all 340 | copies or substantial portions of the Software. 341 | 342 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 343 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 344 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 345 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 346 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 347 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 348 | SOFTWARE. 349 | 350 | Icon files VolPI.ico and VolPI icon.png are licensed under Creative Commons Attribution-NonCommercial 4.0 International License. 351 | 352 | AudioSwitcher and NAudio are licensed under Microsoft Public License (MS-PL). 353 | 354 | --------------------------------------------------------------------------------