-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowLayoutEngine.Uplink.iss
More file actions
286 lines (231 loc) · 8.42 KB
/
WindowLayoutEngine.Uplink.iss
File metadata and controls
286 lines (231 loc) · 8.42 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#include "WindowLayoutEngine.Generators.iss"
objectdef windowLayoutEngine
{
variable windowLayoutGenerators Generators
variable jsonvalue GeneratorSettings="{}"
variable jsonvalue Layouts="[]"
variable jsonvalueref ActiveLayout
method Initialize()
{
LGUI2:LoadPackageFile[WindowLayoutEngine.Uplink.lgui2Package.json]
This:LoadTests
}
method Shutdown()
{
LGUI2:UnloadPackageFile[WindowLayoutEngine.Uplink.lgui2Package.json]
}
method Event_OnSessionStartup(string sessionName)
{
relay "${sessionName~}" "WLEngine:SetLayout[\"${ActiveLayout.AsJSON~}\"]"
}
method Event_OnSessionShutdown(string sessionName)
{
}
method GenerateLayouts()
{
}
method ActivateLayout(jsonvalueref newValue)
{
ActiveLayout:SetReference[newValue]
LGUI2.Element["windowLayoutEngine.events"]:FireEventHandler[activeLayoutChanged]
echo relay "all local" "WLEngine:SetLayout[\"${newValue.AsJSON~}\"]"
relay "all local" "WLEngine:SetLayout[\"${newValue.AsJSON.Escape[1]~}\"]"
}
method SelectLayout(uint numLayout)
{
This:ActivateLayout["Layouts[${numLayout}]"]
}
method AddLayout(string name, string generator, jsonvalueref inputData, jsonvalue regions)
{
variable jsonvalue jo="{}"
jo:SetString["name","${name~}"]
jo:SetString["generator","${generator~}"]
jo:Set["inputData","${inputData.AsJSON~}"]
jo:SetByRef["regions","regions"]
Layouts:AddByRef[jo]
}
method AddScreen(jsonvalueref ja, jsonvalueref joMonitor)
{
variable jsonvalue jo="{}"
jo:SetString["itemType","screen"]
jo:SetString["name","${joMonitor.Get[name]~}"]
jo:SetInteger["left",${joMonitor.GetInteger[left]}]
jo:SetInteger["top",${joMonitor.GetInteger[top]}]
jo:SetInteger["width",${joMonitor.GetInteger[width]}]
jo:SetInteger["height",${joMonitor.GetInteger[height]}]
ja:AddByRef[jo]
}
method AddRegion(jsonvalueref ja, jsonvalueref joRegion)
{
variable jsonvalue jo="${joRegion.AsJSON~}"
if ${joRegion.Has[numLayout]}
{
jo:SetString["itemType","region${joRegion.GetInteger[numLayout]}"]
}
else
{
jo:SetString["itemType","region"]
}
ja:AddByRef[jo]
}
member:jsonvalue GetPreviewExtents(jsonvalueref joLayout)
{
variable int left
variable int right
variable int top
variable int bottom
variable uint numMonitor
variable uint numMonitors
numMonitors:Set[${joLayout.Get[inputData,monitors].Used}]
variable jsonvalueref joMonitor
for (numMonitor:Set[1] ; ${numMonitor}<=${numMonitors} ; numMonitor:Inc)
{
joMonitor:SetReference["joLayout.Get[inputData,monitors,${numMonitor}]"]
if !${joMonitor.Reference(exists)}
break
if ${joMonitor.GetInteger[left]}<${left}
left:Set["${joMonitor.GetInteger[left]}"]
if ${joMonitor.GetInteger[top]}<${top}
top:Set["${joMonitor.GetInteger[top]}"]
if ${joMonitor.GetInteger[right]}>${right}
right:Set["${joMonitor.GetInteger[right]}"]
if ${joMonitor.GetInteger[bottom]}>${bottom}
bottom:Set["${joMonitor.GetInteger[bottom]}"]
}
; echo GetPreviewExtents "[${left},${top},${right.Dec[${left}]},${bottom.Dec[${top}]}]"
return "[${left},${top},${right.Dec[${left}]},${bottom.Dec[${top}]}]"
}
member:jsonvalueref GetPreviewItems(uint numLayout,lgui2elementref element)
{
variable jsonvalue ja="[]"
variable jsonvalueref joLayout
joLayout:SetReference["Layouts.Get[${numLayout}]"]
if !${joLayout.Reference(exists)}
return NULL
; echo GetPreviewItems element=${element}
if ${element.Element(exists)}
{
variable jsonvalue jaExtents
jaExtents:SetValue["${This.GetPreviewExtents[joLayout]}"]
element:SetVirtualOrigin[${jaExtents.GetInteger[1]},${jaExtents.GetInteger[2]}]
element:SetVirtualSize[${jaExtents.GetInteger[3]},${jaExtents.GetInteger[4]}]
}
; screens
joLayout.Get[inputData,monitors]:ForEach["This:AddScreen[ja,ForEach.Value]"]
; regions
joLayout.Get[regions]:ForEach["This:AddRegion[ja,ForEach.Value]"]
return ja
}
method LoadTests()
{
variable jsonvalue testData
testData:SetValue["$$>
{
"numSlots":5,
"useMonitor":1,
"monitors":[
${Display.Monitor.AsJSON~}
],
"avoidTaskbar":false,
"leaveHole":true,
"edge":"bottom",
"rows":4,
"columns":2
}
<$$"]
This:AddLayout["Bottom","Edge",testData,"${Generators.Edge.GenerateRegions["testData"]~}"]
testData:SetString[edge,"right"]
This:AddLayout["Right","Edge",testData,"${Generators.Edge.GenerateRegions["testData"]~}"]
testData:SetString[edge,"top"]
This:AddLayout["Top","Edge",testData,"${Generators.Edge.GenerateRegions["testData"]~}"]
testData:SetString[edge,"left"]
This:AddLayout["Left","Edge",testData,"${Generators.Edge.GenerateRegions["testData"]~}"]
This:AddLayout["Stacked","Stacked",testData,"${Generators.Stacked.GenerateRegions["testData"]~}"]
This:AddLayout["Tile","Tile",testData,"${Generators.Tile.GenerateRegions["testData"]~}"]
This:AddLayout["Grid","Grid",testData,"${Generators.Grid.GenerateRegions["testData"]~}"]
variable jsonvalue joNextMonitor
joNextMonitor:SetValue["$$>
{
"id":1,
"primary":false,
"left":1920,"right":3840,"top":0,"bottom":1080,"width":1920,"height":1080,
"maximizeLeft":1920,"maximizeRight":3840,"maximizeTop":0,"maximizeBottom":1040,"maximizeWidth":1920,"maximizeHeight":1040
}
<$$"]
joNextMonitor:SetString[name,"\\\\.\\DISPLAY2"]
testData.Get[monitors]:Add["${joNextMonitor~}"]
This:AddLayout["ScreenPer","ScreenPer",testData,"${Generators.ScreenPer.GenerateRegions["testData"]~}"]
This:LoadComboTests
}
method LoadComboTests()
{
variable jsonvalue monitor2
monitor2:SetValue["$$>
{
"id":1,
"primary":false,
"left":1920,"right":3840,"top":0,"bottom":1080,"width":1920,"height":1080,
"maximizeLeft":1920,"maximizeRight":3840,"maximizeTop":0,"maximizeBottom":1040,"maximizeWidth":1920,"maximizeHeight":1040
}
<$$"]
monitor2:SetString[name,"\\\\.\\DISPLAY2"]
variable jsonvalue testData
testData:SetValue["$$>
{
"layouts":[
{
"useMonitor":1,
"generator":"Edge"
},
{
"useMonitor":2,
"generator":"Edge"
}
],
"numSlots":5,
"avoidTaskbar":false,
"leaveHole":true,
"edge":"bottom",
"rows":4,
"columns":2,
"monitors":[
${Display.Monitor.AsJSON~},
${monitor2.AsJSON~}
]
}
<$$"]
This:AddLayout["Combo 1","Combo",testData,"${Generators.Combo.GenerateRegions["testData"]~}"]
testData:Set["layouts","$$>
[
{
"useMonitor":1,
"generator":"Edge"
},
{
"useMonitor":2,
"generator":"Tile"
}
]
<$$"]
This:AddLayout["Combo 2","Combo",testData,"${Generators.Combo.GenerateRegions["testData"]~}"]
testData:Set["layouts","$$>
[
{
"useMonitor":1,
"generator":"Grid"
},
{
"useMonitor":2,
"generator":"Edge"
}
]
<$$"]
This:AddLayout["Combo 3","Combo",testData,"${Generators.Combo.GenerateRegions["testData"]~}"]
}
}
variable(global) windowLayoutEngine WLEngine
function main()
{
while 1
waitframe
}