forked from parro-it/libui-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
462 lines (395 loc) · 9.49 KB
/
index.js
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
'use strict';
const nbind = require('@w8coffee/nbind');
const async_hooks = require('@mischnic/async-hooks');
const binding = nbind.init(__dirname);
let asyncHook = null;
module.exports = binding.lib;
binding.lib.Ui.init();
var setTimeoutNode;
var clearTimeoutNode;
var setIntervalNode;
var clearIntervalNode;
function stopLoop() {
binding.lib.EventLoop.stop();
if (!setTimeoutNode) {
return;
}
asyncHook.disable();
global.setTimeout = setTimeoutNode;
global.clearTimeout = clearTimeoutNode;
global.setInterval = setIntervalNode;
global.clearInterval = clearIntervalNode;
setTimeoutNode = null;
clearTimeoutNode = null;
setIntervalNode = null;
clearIntervalNode = null;
}
function startLoop() {
binding.lib.EventLoop.start();
if (setTimeoutNode) {
return;
}
// Create a new AsyncHook instance.
asyncHook = async_hooks.createHook({init});
// Allow callbacks of this AsyncHook instance to call. This is not an implicit
// action after running the constructor, and must be explicitly run to begin
// executing callbacks.
asyncHook.enable();
setTimeoutNode = global.setTimeout;
global.setTimeout = function(cb, t) {
const args = Array.prototype.slice.call(arguments, 2);
return binding.lib.setTimeout(function() {
cb.apply(null, args);
}, t);
};
clearTimeoutNode = global.clearTimeout;
global.clearTimeout = function(obj) {
if (obj && obj.constructor === binding.lib.TimeoutHandle) {
// console.log('patched clearTimeout called');
binding.lib.clearTimeout(obj);
} else {
// console.log('node clearTimeout called');
// not created by us, use original
// clearTimeoutNode
clearTimeoutNode(obj);
}
};
setIntervalNode = global.setInterval;
global.setInterval = function(cb, t) {
const args = Array.prototype.slice.call(arguments, 2);
return binding.lib.setInterval(function() {
cb.apply(null, args);
}, t);
};
clearIntervalNode = global.clearInterval;
global.clearInterval = function(obj) {
if (obj && obj.constructor === binding.lib.TimeoutHandle) {
// console.log('patched clearInterval called');
binding.lib.clearInterval(obj);
} else {
// console.log('node clearInterval called');
// not created by us, use original
// clearTimeoutNode
clearIntervalNode(obj);
}
}
}
// This is called when a new async handle
// is created. It's used to signal the background
// thread to stop awaiting calls and upgrade it's list of handles
// it's awaiting for.
let wakingup = false
function init(asyncId, type, triggerAsyncId, resource) {
if (wakingup) {
return;
}
wakingup = true;
setImmediate(() => {
binding.lib.EventLoop.wakeupBackgroundThread();
wakingup = false;
});
}
function Color(r, g, b, a) {
this.r = r;
this.g = g;
this.b = b;
this.a = a;
}
function fromJSColor(output) {
output(this.r, this.g, this.b, this.a);
}
Color.prototype.fromJS = fromJSColor;
binding.bind('Color', Color);
function Point(x, y) {
this.x = x;
this.y = y;
}
function fromJSPoint(output) {
output(this.x, this.y);
}
Point.prototype.fromJS = fromJSPoint;
binding.bind('Point', Point);
function PointDouble(x, y) {
this.x = x;
this.y = y;
}
function fromJSPointDouble(output) {
output(this.x, this.y);
}
PointDouble.prototype.fromJS = fromJSPointDouble;
binding.bind('PointDouble', PointDouble);
function Size(w, h) {
this.w = w;
this.h = h;
}
function fromJSSize(output) {
output(this.w, this.h);
}
Size.prototype.fromJS = fromJSSize;
binding.bind('Size', Size);
function SizeDouble(w, h) {
this.w = w;
this.h = h;
}
function fromJSSizeDouble(output) {
output(this.w, this.h);
}
SizeDouble.prototype.fromJS = fromJSSizeDouble;
binding.bind('SizeDouble', SizeDouble);
function BrushGradientStop(pos, color) {
this.pos = pos;
this.color = color;
}
function fromJSBrushGradientStop(output) {
output(this.pos, this.color);
}
BrushGradientStop.prototype.fromJS = fromJSBrushGradientStop;
binding.bind('BrushGradientStop', BrushGradientStop);
const textWeight = {
minimum: 0,
thin: 100,
ultraLight: 200,
light: 300,
book: 350,
normal: 400,
medium: 500,
semiBold: 600,
bold: 700,
ultraBold: 800,
heavy: 900,
ultraHeavy: 950,
maximum: 1000
};
const textItalic = {
normal: 0,
oblique: 1,
italic: 2
};
const textStretch = {
ultraCondensed: 0,
extraCondensed: 1,
condensed: 2,
semiCondensed: 3,
normal: 4,
semiExpanded: 5,
expanded: 6,
extraExpanded: 7,
ultraExpanded: 8
};
const textAttributeType = {
family: 0,
size: 1,
weight: 2,
italic: 3,
stretch: 4,
color: 5,
background: 6,
underline: 7,
underlineColor: 8,
features: 9
};
const textUnderline = {
none: 0,
single: 1,
double: 2,
suggestion: 3
};
const textUnderlineColor = {
custom: 0,
spelling: 1,
grammar: 2,
auxiliary: 3
};
const textAlign = {
left: 0,
center: 1,
right: 2
};
const forEach = {
continue: 0,
stop: 1
};
binding.lib.AttributedString.prototype.appendAttributed = function(str) {
return this.appendAttributedInternal(str, Array.prototype.slice.call(arguments, 1));
};
binding.lib.AttributedString.prototype.insertAttributed = function(str, start) {
return this.insertAttributedInternal(str, start, Array.prototype.slice.call(arguments, 2));
};
binding.lib.FontAttribute.newUnderlineColor = function(type, color) {
if (type === textUnderlineColor.custom && !color) {
console.error('With textUnderlineColor.custom, a color needs to passed');
}
color = color || new Color(0, 0, 0, 0);
return binding.lib.FontAttribute.newUnderlineColor2(type, color);
};
binding.lib.OpenTypeFeatures.prototype.get = function(str) {
const value = this.getInternal(str);
if (value[1]) {
return value[0];
}
return null;
};
binding.lib.FontAttribute.prototype.getFamily = function() {
if (this.getAttributeType() !== textAttributeType.family) {
return null;
}
return this.getFamilyInternal();
};
binding.lib.FontAttribute.prototype.getSize = function() {
if (this.getAttributeType() !== textAttributeType.size) {
return null;
}
return this.getSizeInternal();
};
binding.lib.FontAttribute.prototype.getWeight = function() {
if (this.getAttributeType() !== textAttributeType.weight) {
return null;
}
return this.getWeightInternal();
};
binding.lib.FontAttribute.prototype.getItalic = function() {
if (this.getAttributeType() !== textAttributeType.italic) {
return null;
}
return this.getItalicInternal();
};
binding.lib.FontAttribute.prototype.getStretch = function() {
if (this.getAttributeType() !== textAttributeType.stretch) {
return null;
}
return this.getStretchInternal();
};
binding.lib.FontAttribute.prototype.getColor = function() {
if (this.getAttributeType() !== textAttributeType.color) {
return null;
}
return this.getColorInternal();
};
binding.lib.FontAttribute.prototype.getUnderline = function() {
if (this.getAttributeType() !== textAttributeType.underline) {
return null;
}
return this.getUnderlineInternal();
};
binding.lib.FontAttribute.prototype.getUnderlineColor = function() {
if (this.getAttributeType() !== textAttributeType.underlineColor) {
return null;
}
const v = this.getUnderlineColorInternal();
const type = Math.round(v[1].r);
return {type, color: type === textUnderlineColor.custom ? v[0] : null};
};
binding.lib.FontAttribute.prototype.getOTFeatures = function() {
if (this.getAttributeType() !== textAttributeType.features) {
return null;
}
return this.getOTFeaturesInternal();
};
binding.lib.UiDialogs.openFile = function(parent) {
const v = binding.lib.UiDialogs.openFileInternal(parent);
if (v) {
return v;
} else {
return null;
}
};
binding.lib.UiDialogs.saveFile = function(parent) {
const v = binding.lib.UiDialogs.saveFileInternal(parent);
if (v) {
return v;
} else {
return null;
}
};
const brushType = {
solid: 0,
linearGradient: 1,
radialGradient: 2
// IMPL uiDrawBrushTypeImage: 3
};
const lineCap = {
flat: 0,
round: 1,
square: 2
};
const lineJoin = {
miter: 0,
round: 1,
bevel: 2
};
const fillMode = {
winding: 0,
alternate: 1
};
const modifierKeys = {
ctrl: 1 << 0,
alt: 1 << 1,
shift: 1 << 2,
super: 1 << 3
};
const extKeys = {
escape: 1,
insert: 2, // equivalent to "Help" on Apple keyboards
delete: 3,
home: 4,
end: 5,
pageUp: 6,
pageDown: 7,
up: 8,
down: 9,
left: 10,
right: 11,
f1: 12, // F1..F12 are guaranteed to be consecutive
f2: 13,
f3: 14,
f4: 15,
f5: 16,
f6: 17,
f7: 18,
f8: 19,
f9: 20,
f10: 21,
f11: 22,
f12: 23,
n0: 24, // numpad keys; independent of Num Lock state
n1: 25, // N0..N9 are guaranteed to be consecutive
n2: 26,
n3: 27,
n4: 28,
n5: 29,
n6: 30,
n7: 31,
n8: 32,
n9: 33,
nDot: 34,
nEnter: 35,
nAdd: 36,
nSubtract: 37,
nMultiply: 38,
nDivide: 39
};
module.exports.textStretch = textStretch;
module.exports.textItalic = textItalic;
module.exports.textWeight = textWeight;
module.exports.textItalic = textItalic;
module.exports.textStretch = textStretch;
module.exports.textAttributeType = textAttributeType;
module.exports.textUnderline = textUnderline;
module.exports.textUnderlineColor = textUnderlineColor;
module.exports.textAlign = textAlign;
module.exports.forEach = forEach;
module.exports.Size = Size;
module.exports.Point = Point;
module.exports.Color = Color;
module.exports.PointDouble = PointDouble;
module.exports.SizeDouble = SizeDouble;
module.exports.BrushGradientStop = BrushGradientStop;
module.exports.brushType = brushType;
module.exports.lineCap = lineCap;
module.exports.lineJoin = lineJoin;
module.exports.fillMode = fillMode;
module.exports.modifierKeys = modifierKeys;
module.exports.extKeys = extKeys;
module.exports.startLoop = startLoop;
module.exports.stopLoop = stopLoop;
module.exports.onShouldQuit = binding.lib.Ui.onShouldQuit;