-
Notifications
You must be signed in to change notification settings - Fork 72
/
class_iOSVSliderProvider.ahk
179 lines (132 loc) · 10.1 KB
/
class_iOSVSliderProvider.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/**
* Class: iOSVSliderProvider
* provider for an iOS alike styled volume slider
* include this within your own script for it to use this lib
* Attributes:
*
* Methods:
* initialize()
* Dependencies:
* VSliderGUI.ahk – Class used to manage individual slider guis
* Segoe MDL2 Asstes – font used for rendering icons only available in Win10+
*/
Class iOSVSliderProvider {
initialize(){
this.slider := {}
this.slider.normal := new VSliderGUI("nSlider" ; guiName
, 322 ; width
, 98 ; height
, 48 ; tsize
, 24 ; iconOffsetx
, 16 ; iconOffsety
, 48 ; bradius
, "Center" ; y
, 224 ; transtarget
, 1500) ; timeToDecay
this.slider.fullscreen := new VSliderGUI("fcSlider" ; guiName
, 192 ; width
, 50 ; height
, 24 ; tsize
, 16 ; iconOffsetx
, 8 ; iconOffsety
, 24 ; bradius
, 80 ; y
, 208 ; transtarget
, 1000 ; timeToDecay
, 0) ; mute the volume test sound
}
volUp(individually, repeated, maxDiffRepeat){
oldVol := this._getVol()
this._setVol(Format("+{1:d}"
, this._chooseRepeated(individually
, repeated
, maxDiffRepeat)))
this._chooseVariant(oldVol)
}
volDown(individually, repeated, maxDiffRepeat){
oldVol := this._getVol()
this._setVol(Format("-{1:d}"
, this._chooseRepeated(individually
, repeated
, maxDiffRepeat)))
this._chooseVariant(oldVol)
}
_chooseRepeated(individually, repeated, maxTime){
return, ((A_TimeSincePriorHotkey - A_TimeSinceThisHotkey <= maxTime)
&& (A_ThisHotkey == A_PriorHotkey))
? repeated : individually
}
volMute(){
this._setMute()
this._chooseVariant()
}
_setVol(vol, component := "MASTER"){
SoundSet, vol, % component, % "VOL"
}
_getVol(component := "MASTER"){
SoundGet, vol, % component, % "VOL"
return, Round(vol)
}
_setMute(action := "toggle", component := "MASTER"){
SoundSet, % (action == "mute")
? 1 : (action == "unmute")
? 0 : "+1"
, % component
, % "MUTE"
}
_getMute(component := "MASTER"){
SoundGet, muteState, % component, % "MUTE"
return, muteState
}
_getIcon(component := "MASTER"){
if(this._getMute(component) != "Off")
return, ""
vol := this._getVol(component)
if(vol < 1)
return, ""
if(vol < 33)
return, ""
if(vol < 66)
return, ""
return, ""
}
_alert(message){
MsgBox, % 0x40, , % message
}
_chooseVariant(oldVol){
if(!(variant := this._getVariant()))
return
if(!this.slider.HasKey(variant))
return, this._alert("Yet not chooseable userinterface variant")
return, this.slider[variant].update(this._getVol(), this._getIcon())
}
_getVariant(){
atts := this._getWinAttributes("A")
if((atts.class == "Windows.UI.Core.CoreWindow")
|| (atts.class == "WorkerW"))
return, "normal"
if((atts.dim.width >= A_ScreenWidth)
&& (atts.dim.height >= A_ScreenHeight))
return, "fullscreen"
return, "normal"
}
_getWinAttributes(title){
r := {}
WinGetTitle, t, % title
r.title := t
WinGetClass, c, % title
r.class := c
for _, element in ["ID", "PID", "ProcessName", "ProcessPath"] {
WinGet, out, % element, % title
r[element] := out
}
r.dim := {}
WinGetPos, x, y, width, height, % title
r.dim.x := x
r.dim.y := y
r.dim.width := width
r.dim.height := height
return, r
}
}
#Include, %A_LineFile%\..\VSliderGUI.ahk