This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************************ | |
* @description 調用 Gemini API 的函式。 | |
* @author Nikola Perovic | |
* @link https://gist.github.com/nperovic/17c544cb43629fca5e8f5ea8c40190d3 | |
* @date 2025/03/30 | |
* @version 1.0.0 | |
***********************************************************************/ | |
#Requires AutoHotkey 2.1-alpha.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************************ | |
* @description Customise a GroupBox's border size and text/ background colour | |
* @file GroupBoxEx.ahk | |
* @author Nikola Perovic | |
* @link https://github.com/nperovic | |
* @date 2024/06/09 | |
* @version 1.0.0 | |
***********************************************************************/ | |
#Requires AutoHotkey v2.1-alpha.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2 | |
/** | |
* Sets the value of Desktop Window Manager (DWM) non-client rendering attributes for a window. For programming guidance, and code examples, see Controlling non-client region rendering. | |
* @param hwnd The handle to the window for which the attribute value is to be set. | |
* @param dwAttribute A flag describing which value to set, specified as a value of the [DWMWINDOWATTRIBUTE](https://learn.microsoft.com/en-us/windows/desktop/api/dwmapi/ne-dwmapi-dwmwindowattribute) enumeration. This parameter specifies which attribute to set, and the pvAttribute parameter points to an object containing the attribute value. | |
* | |
* > ___| prop | |
* > :-:|:----------------------------------------- | |
* > 1 | ~DWMWA_NCRENDERING_ENABLED~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************************ | |
* @description Create an interface that allows users to customize hotkeys. | |
* @file SetHotkeyGui.ahk | |
* @link https://github.com/nperovic | |
* @author Nikola Perovic | |
* @date 2024/04/22 | |
* @version 1.0.0 | |
***********************************************************************/ | |
#Requires AutoHotkey v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************************ | |
* @description Apply dark theme to the built-in MsgBox. | |
* @file Dark_MsgBox.ahk | |
* @link https://gist.github.com/nperovic/0b9a511eda773f9304813a6ad9eec137 | |
* @author Nikola Perovic | |
* @date 2024/06/09 | |
* @version 1.1.0 | |
***********************************************************************/ | |
#Requires AutoHotkey v2.1-alpha.13 | |
#Module Dark_MsgBox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires AutoHotkey v2 | |
/** | |
* Sets the attributes of a window. Specifically, it can set the color of the window's caption, text, and border. | |
* @param {integer} hwnd Window handle. | |
* @param {integer} [titleText] Specifies the color(BGR) of the caption text. Specifying `0xFFFFFFFF` will reset to the system's default caption text color. | |
* @param {integer} [titleBackground] Specifies the color(BGR) of the caption. Specifying `0xFFFFFFFF` will reset to the system's default caption color. | |
* @param {integer} [border] Specifies the color(BGR) of the window border. | |
* - Specifying `0xFFFFFFFE` will suppress the drawing of the window border. | |
* - Specifying `0xFFFFFFFF` will reset to the system's default border color. |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"BCM_FIRST": { | |
"prefix" : "BCM", | |
"body" : "BCM_FIRST := 0x1600", | |
"description": "Windows - GUI - Controls - Button - Messages (Button Messages)" | |
}, | |
"BCM_GETIDEALSIZE": { | |
"prefix" : "BCM", | |
"body" : "BCM_GETIDEALSIZE := 0x1601", | |
"description": "Windows - GUI - Controls - Button - Messages (Button Messages)" |