├── .gitignore ├── Build ├── Build.cmd └── Build.xml ├── LICENSE ├── Package └── Chocolatey │ ├── icon.png │ ├── smartsystemmenu.nuspec │ ├── tools │ └── chocolateyinstall.ps1 │ └── update.ps1 ├── README.md ├── README_CN.md ├── README_KO.md ├── README_RU.md ├── Smart System Menu detailed SRS document in greek.docx ├── SmartSystemMenu.sln ├── SmartSystemMenu.sln.DotSettings ├── SmartSystemMenu ├── AutoStarter.cs ├── Controls │ ├── DataGridViewDisableButtonCell.cs │ └── DataGridViewDisableButtonColumn.cs ├── EnumWindows.cs ├── EventArgs.cs ├── Extensions │ ├── EnumExtensions.cs │ ├── IEnumerableExtensions.cs │ ├── PriorityClassExtensions.cs │ ├── PriorityExtensions.cs │ ├── ProcessExtensions.cs │ ├── StringExtensions.cs │ └── WindowAlignmentExtensions.cs ├── Forms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── DimForm.Designer.cs │ ├── DimForm.cs │ ├── DimForm.resx │ ├── HotkeysForm.Designer.cs │ ├── HotkeysForm.cs │ ├── HotkeysForm.resx │ ├── InformationForm.Designer.cs │ ├── InformationForm.cs │ ├── InformationForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MessageBoxForm.Designer.cs │ ├── MessageBoxForm.cs │ ├── MessageBoxForm.resx │ ├── ParameterForm.Designer.cs │ ├── ParameterForm.cs │ ├── ParameterForm.resx │ ├── PositionForm.Designer.cs │ ├── PositionForm.cs │ ├── PositionForm.resx │ ├── ProcessExclusionForm.Designer.cs │ ├── ProcessExclusionForm.cs │ ├── ProcessExclusionForm.resx │ ├── SettingsCloserForm.Designer.cs │ ├── SettingsCloserForm.cs │ ├── SettingsCloserForm.resx │ ├── SettingsForm.Designer.cs │ ├── SettingsForm.cs │ ├── SettingsForm.resx │ ├── SettingsSizeForm.Designer.cs │ ├── SettingsSizeForm.cs │ ├── SettingsSizeForm.resx │ ├── SizeForm.Designer.cs │ ├── SizeForm.cs │ ├── SizeForm.resx │ ├── StartProgramForm.Designer.cs │ ├── StartProgramForm.cs │ ├── StartProgramForm.resx │ ├── TitleForm.Designer.cs │ ├── TitleForm.cs │ ├── TitleForm.resx │ ├── TransparencyForm.Designer.cs │ ├── TransparencyForm.cs │ └── TransparencyForm.resx ├── Hooks │ ├── BasicHookEventArgs.cs │ ├── CBTHook.cs │ ├── CallWndProcHook.cs │ ├── GetMsgHook.cs │ ├── Hook.cs │ ├── ShellHook.cs │ ├── SysCommandEventArgs.cs │ └── WindowEventArgs.cs ├── HotKeys │ ├── HotKeyEventArgs.cs │ ├── HotKeyHook.cs │ ├── MouseButton.cs │ ├── MouseHook.cs │ ├── VirtualKey.cs │ └── VirtualKeyModifier.cs ├── Images │ ├── ArrowDown.png │ ├── ArrowUp.png │ ├── SmartSystemMenu.ico │ ├── SmartSystemMenu.png │ ├── SmartSystemMenu254.png │ ├── SmartSystemMenuCn1.png │ ├── SmartSystemMenuCn2.png │ ├── SmartSystemMenuCn3.png │ ├── SmartSystemMenuCn4.png │ ├── SmartSystemMenuEn1.png │ ├── SmartSystemMenuEn2.png │ ├── SmartSystemMenuEn3.png │ ├── SmartSystemMenuEn4.png │ ├── SmartSystemMenuKo1.png │ ├── SmartSystemMenuKo2.png │ ├── SmartSystemMenuKo3.png │ ├── SmartSystemMenuKo4.png │ ├── SmartSystemMenuLogo.png │ ├── SmartSystemMenuRu1.png │ ├── SmartSystemMenuRu2.png │ ├── SmartSystemMenuRu3.png │ └── SmartSystemMenuRu4.png ├── Language.xml ├── Manifest │ ├── app32.manifest │ └── app64.manifest ├── MenuItemId.cs ├── Native │ ├── Advapi32.cs │ ├── Constants.cs │ ├── Dwmapi.cs │ ├── Enums │ │ ├── AccentState.cs │ │ ├── CopyPixelOperations.cs │ │ ├── DPI_AWARENESS_CONTEXT.cs │ │ ├── DWM_BB.cs │ │ ├── GetAncestorFlags.cs │ │ ├── LayeredWindow.cs │ │ ├── MIIM.cs │ │ ├── PROCESS_DPI_AWARENESS.cs │ │ ├── Priority.cs │ │ ├── PriorityClass.cs │ │ ├── ProcessAccessFlags.cs │ │ ├── SECURITY_IMPERSONATION_LEVEL.cs │ │ ├── SendMessageTimeoutFlags.cs │ │ ├── TOKEN_TYPE.cs │ │ ├── ThreadAccess.cs │ │ ├── TokenAccess.cs │ │ ├── WindowCompositionAttribute.cs │ │ └── WindowShowStyle.cs │ ├── Gdi32.cs │ ├── Hooks.cs │ ├── Kernel32.cs │ ├── Ntdll.cs │ ├── SHCore.cs │ ├── Structs │ │ ├── AccentPolicy.cs │ │ ├── CURSORINFO.cs │ │ ├── ConsoleScreenBufferInfo.cs │ │ ├── Coord.cs │ │ ├── CopyDataStruct.cs │ │ ├── DWM_BLURBEHIND.cs │ │ ├── ICONINFO.cs │ │ ├── KeyboardLLHookStruct.cs │ │ ├── LUID.cs │ │ ├── LUID_AND_ATTRIBUTES.cs │ │ ├── MenuItemInfo.cs │ │ ├── MonitorInfo.cs │ │ ├── MouseLLHookStruct.cs │ │ ├── PROCESS_BASIC_INFORMATION.cs │ │ ├── PROCESS_INFORMATION.cs │ │ ├── Point.cs │ │ ├── Rect.cs │ │ ├── STARTUPINFO.cs │ │ ├── SmallRect.cs │ │ ├── TITLEBARINFO.cs │ │ ├── TOKEN_PRIVILEGES.cs │ │ ├── WINDOW_INFO.cs │ │ └── WindowCompositionAttributeData.cs │ └── User32.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings │ ├── ApplicationSettings.cs │ ├── ApplicationSettingsFile.cs │ ├── CloserSettings.cs │ ├── DimmerSettings.cs │ ├── ExcludedProcessItem.cs │ ├── LanguageSettings.cs │ ├── MenuItem.cs │ ├── MenuItemType.cs │ ├── MenuItems.cs │ ├── SaveSelectedItemsSettings.cs │ ├── SizerSettings.cs │ ├── StartProgramMenuItem.cs │ ├── WindowSettings.cs │ └── WindowSizeMenuItem.cs ├── SmartSystemMenu.csproj ├── SmartSystemMenu.csproj.user ├── SmartSystemMenu.xml ├── SystemMenu.cs ├── SystemTrayMenu.cs ├── ToggleParser.cs ├── UserType.cs ├── Utils │ ├── AssemblyUtils.cs │ ├── EnumUtils.cs │ ├── FileUtils.cs │ ├── SystemUtils.cs │ └── WindowUtils.cs ├── Win32Window.cs ├── Window.cs ├── WindowAlignment.cs ├── WindowCloserType.cs ├── WindowDetails.cs ├── WindowSizerType.cs ├── WindowState.cs └── WmiProcessInfo.cs └── SmartSystemMenuHook ├── RCa01308 ├── ReadMe.txt ├── SmartSystemMenuHook.aps ├── SmartSystemMenuHook.cpp ├── SmartSystemMenuHook.h ├── SmartSystemMenuHook.vcxproj ├── SmartSystemMenuHook.vcxproj.filters ├── SmartSystemMenuHook.vcxproj.user ├── Version.aps ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── tinyxml2.cpp └── tinyxml2.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Build/Build.cmd -------------------------------------------------------------------------------- /Build/Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Build/Build.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /Package/Chocolatey/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Package/Chocolatey/icon.png -------------------------------------------------------------------------------- /Package/Chocolatey/smartsystemmenu.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Package/Chocolatey/smartsystemmenu.nuspec -------------------------------------------------------------------------------- /Package/Chocolatey/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Package/Chocolatey/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /Package/Chocolatey/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Package/Chocolatey/update.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/README_CN.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/README_KO.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/README_RU.md -------------------------------------------------------------------------------- /Smart System Menu detailed SRS document in greek.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/Smart System Menu detailed SRS document in greek.docx -------------------------------------------------------------------------------- /SmartSystemMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu.sln -------------------------------------------------------------------------------- /SmartSystemMenu.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu.sln.DotSettings -------------------------------------------------------------------------------- /SmartSystemMenu/AutoStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/AutoStarter.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Controls/DataGridViewDisableButtonCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Controls/DataGridViewDisableButtonCell.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Controls/DataGridViewDisableButtonColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Controls/DataGridViewDisableButtonColumn.cs -------------------------------------------------------------------------------- /SmartSystemMenu/EnumWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/EnumWindows.cs -------------------------------------------------------------------------------- /SmartSystemMenu/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/EventArgs.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/PriorityClassExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/PriorityClassExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/PriorityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/PriorityExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Extensions/WindowAlignmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Extensions/WindowAlignmentExtensions.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/AboutForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/AboutForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/DimForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/DimForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/DimForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/DimForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/DimForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/DimForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/HotkeysForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/HotkeysForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/HotkeysForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/HotkeysForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/HotkeysForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/HotkeysForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/InformationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/InformationForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/InformationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/InformationForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/InformationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/InformationForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/MainForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/MainForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/MessageBoxForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/MessageBoxForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/MessageBoxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/MessageBoxForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/MessageBoxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/MessageBoxForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/ParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/ParameterForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/ParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/ParameterForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/ParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/ParameterForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/PositionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/PositionForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/PositionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/PositionForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/PositionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/PositionForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/ProcessExclusionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/ProcessExclusionForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/ProcessExclusionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/ProcessExclusionForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/ProcessExclusionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/ProcessExclusionForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsCloserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsCloserForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsCloserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsCloserForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsCloserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsCloserForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsSizeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsSizeForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsSizeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsSizeForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SettingsSizeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SettingsSizeForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SizeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SizeForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SizeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SizeForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/SizeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/SizeForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/StartProgramForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/StartProgramForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/StartProgramForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/StartProgramForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/StartProgramForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/StartProgramForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/TitleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/TitleForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/TitleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/TitleForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/TitleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/TitleForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/TransparencyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/TransparencyForm.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/TransparencyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/TransparencyForm.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Forms/TransparencyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Forms/TransparencyForm.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/BasicHookEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/BasicHookEventArgs.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/CBTHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/CBTHook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/CallWndProcHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/CallWndProcHook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/GetMsgHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/GetMsgHook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/Hook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/Hook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/ShellHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/ShellHook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/SysCommandEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/SysCommandEventArgs.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Hooks/WindowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Hooks/WindowEventArgs.cs -------------------------------------------------------------------------------- /SmartSystemMenu/HotKeys/HotKeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/HotKeys/HotKeyEventArgs.cs -------------------------------------------------------------------------------- /SmartSystemMenu/HotKeys/HotKeyHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/HotKeys/HotKeyHook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/HotKeys/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/HotKeys/MouseButton.cs -------------------------------------------------------------------------------- /SmartSystemMenu/HotKeys/MouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/HotKeys/MouseHook.cs -------------------------------------------------------------------------------- /SmartSystemMenu/HotKeys/VirtualKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/HotKeys/VirtualKey.cs -------------------------------------------------------------------------------- /SmartSystemMenu/HotKeys/VirtualKeyModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/HotKeys/VirtualKeyModifier.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Images/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/ArrowDown.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/ArrowUp.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenu.ico -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenu.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenu254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenu254.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuCn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuCn1.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuCn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuCn2.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuCn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuCn3.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuCn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuCn4.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuEn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuEn1.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuEn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuEn2.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuEn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuEn3.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuEn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuEn4.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuKo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuKo1.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuKo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuKo2.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuKo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuKo3.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuKo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuKo4.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuLogo.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuRu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuRu1.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuRu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuRu2.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuRu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuRu3.png -------------------------------------------------------------------------------- /SmartSystemMenu/Images/SmartSystemMenuRu4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Images/SmartSystemMenuRu4.png -------------------------------------------------------------------------------- /SmartSystemMenu/Language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Language.xml -------------------------------------------------------------------------------- /SmartSystemMenu/Manifest/app32.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Manifest/app32.manifest -------------------------------------------------------------------------------- /SmartSystemMenu/Manifest/app64.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Manifest/app64.manifest -------------------------------------------------------------------------------- /SmartSystemMenu/MenuItemId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/MenuItemId.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Advapi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Advapi32.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Constants.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Dwmapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Dwmapi.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/AccentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/AccentState.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/CopyPixelOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/CopyPixelOperations.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/DPI_AWARENESS_CONTEXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/DPI_AWARENESS_CONTEXT.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/DWM_BB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/DWM_BB.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/GetAncestorFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/GetAncestorFlags.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/LayeredWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/LayeredWindow.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/MIIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/MIIM.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/PROCESS_DPI_AWARENESS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/PROCESS_DPI_AWARENESS.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/Priority.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/PriorityClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/PriorityClass.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/ProcessAccessFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/ProcessAccessFlags.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/SECURITY_IMPERSONATION_LEVEL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/SECURITY_IMPERSONATION_LEVEL.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/SendMessageTimeoutFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/SendMessageTimeoutFlags.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/TOKEN_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/TOKEN_TYPE.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/ThreadAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/ThreadAccess.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/TokenAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/TokenAccess.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/WindowCompositionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/WindowCompositionAttribute.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Enums/WindowShowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Enums/WindowShowStyle.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Gdi32.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Hooks.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Kernel32.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Ntdll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Ntdll.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/SHCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/SHCore.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/AccentPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/AccentPolicy.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/CURSORINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/CURSORINFO.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/ConsoleScreenBufferInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/ConsoleScreenBufferInfo.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/Coord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/Coord.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/CopyDataStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/CopyDataStruct.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/DWM_BLURBEHIND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/DWM_BLURBEHIND.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/ICONINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/ICONINFO.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/KeyboardLLHookStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/KeyboardLLHookStruct.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/LUID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/LUID.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/LUID_AND_ATTRIBUTES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/LUID_AND_ATTRIBUTES.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/MenuItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/MenuItemInfo.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/MonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/MonitorInfo.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/MouseLLHookStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/MouseLLHookStruct.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/PROCESS_BASIC_INFORMATION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/PROCESS_BASIC_INFORMATION.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/PROCESS_INFORMATION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/PROCESS_INFORMATION.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/Point.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/Rect.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/STARTUPINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/STARTUPINFO.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/SmallRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/SmallRect.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/TITLEBARINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/TITLEBARINFO.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/TOKEN_PRIVILEGES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/TOKEN_PRIVILEGES.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/WINDOW_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/WINDOW_INFO.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/Structs/WindowCompositionAttributeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/Structs/WindowCompositionAttributeData.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Native/User32.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Program.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Properties/Resources.resx -------------------------------------------------------------------------------- /SmartSystemMenu/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Properties/Settings.settings -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/ApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/ApplicationSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/ApplicationSettingsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/ApplicationSettingsFile.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/CloserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/CloserSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/DimmerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/DimmerSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/ExcludedProcessItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/ExcludedProcessItem.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/LanguageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/LanguageSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/MenuItem.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/MenuItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/MenuItemType.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/MenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/MenuItems.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/SaveSelectedItemsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/SaveSelectedItemsSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/SizerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/SizerSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/StartProgramMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/StartProgramMenuItem.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/WindowSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/WindowSettings.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Settings/WindowSizeMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Settings/WindowSizeMenuItem.cs -------------------------------------------------------------------------------- /SmartSystemMenu/SmartSystemMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/SmartSystemMenu.csproj -------------------------------------------------------------------------------- /SmartSystemMenu/SmartSystemMenu.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/SmartSystemMenu.csproj.user -------------------------------------------------------------------------------- /SmartSystemMenu/SmartSystemMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/SmartSystemMenu.xml -------------------------------------------------------------------------------- /SmartSystemMenu/SystemMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/SystemMenu.cs -------------------------------------------------------------------------------- /SmartSystemMenu/SystemTrayMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/SystemTrayMenu.cs -------------------------------------------------------------------------------- /SmartSystemMenu/ToggleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/ToggleParser.cs -------------------------------------------------------------------------------- /SmartSystemMenu/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/UserType.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Utils/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Utils/AssemblyUtils.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Utils/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Utils/EnumUtils.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Utils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Utils/FileUtils.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Utils/SystemUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Utils/SystemUtils.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Utils/WindowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Utils/WindowUtils.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Win32Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Win32Window.cs -------------------------------------------------------------------------------- /SmartSystemMenu/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/Window.cs -------------------------------------------------------------------------------- /SmartSystemMenu/WindowAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/WindowAlignment.cs -------------------------------------------------------------------------------- /SmartSystemMenu/WindowCloserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/WindowCloserType.cs -------------------------------------------------------------------------------- /SmartSystemMenu/WindowDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/WindowDetails.cs -------------------------------------------------------------------------------- /SmartSystemMenu/WindowSizerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/WindowSizerType.cs -------------------------------------------------------------------------------- /SmartSystemMenu/WindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/WindowState.cs -------------------------------------------------------------------------------- /SmartSystemMenu/WmiProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenu/WmiProcessInfo.cs -------------------------------------------------------------------------------- /SmartSystemMenuHook/RCa01308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/RCa01308 -------------------------------------------------------------------------------- /SmartSystemMenuHook/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/ReadMe.txt -------------------------------------------------------------------------------- /SmartSystemMenuHook/SmartSystemMenuHook.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/SmartSystemMenuHook.aps -------------------------------------------------------------------------------- /SmartSystemMenuHook/SmartSystemMenuHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/SmartSystemMenuHook.cpp -------------------------------------------------------------------------------- /SmartSystemMenuHook/SmartSystemMenuHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/SmartSystemMenuHook.h -------------------------------------------------------------------------------- /SmartSystemMenuHook/SmartSystemMenuHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/SmartSystemMenuHook.vcxproj -------------------------------------------------------------------------------- /SmartSystemMenuHook/SmartSystemMenuHook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/SmartSystemMenuHook.vcxproj.filters -------------------------------------------------------------------------------- /SmartSystemMenuHook/SmartSystemMenuHook.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/SmartSystemMenuHook.vcxproj.user -------------------------------------------------------------------------------- /SmartSystemMenuHook/Version.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/Version.aps -------------------------------------------------------------------------------- /SmartSystemMenuHook/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/dllmain.cpp -------------------------------------------------------------------------------- /SmartSystemMenuHook/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/resource.h -------------------------------------------------------------------------------- /SmartSystemMenuHook/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/stdafx.cpp -------------------------------------------------------------------------------- /SmartSystemMenuHook/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/stdafx.h -------------------------------------------------------------------------------- /SmartSystemMenuHook/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/targetver.h -------------------------------------------------------------------------------- /SmartSystemMenuHook/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/tinyxml2.cpp -------------------------------------------------------------------------------- /SmartSystemMenuHook/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderPro/SmartSystemMenu/HEAD/SmartSystemMenuHook/tinyxml2.h --------------------------------------------------------------------------------