Mon 21 Jul 22:43:21 CEST 2025
This commit is contained in:
parent
1f00ea3636
commit
061cd42368
45
js/x11/examples/smoketest/polyline.js
Normal file
45
js/x11/examples/smoketest/polyline.js
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
var x11 = require('../../lib');
|
||||||
|
|
||||||
|
var Exposure = x11.eventMask.Exposure;
|
||||||
|
var PointerMotion = x11.eventMask.PointerMotion;
|
||||||
|
var pts = [];
|
||||||
|
|
||||||
|
var prevPoint;
|
||||||
|
|
||||||
|
x11.createClient(function(err, display) {
|
||||||
|
var X = display.client;
|
||||||
|
var root = display.screen[0].root;
|
||||||
|
var white = display.screen[0].white_pixel;
|
||||||
|
var black = display.screen[0].black_pixel;
|
||||||
|
|
||||||
|
var wid = X.AllocID();
|
||||||
|
X.CreateWindow(
|
||||||
|
wid, root,
|
||||||
|
0, 0, 400, 300,
|
||||||
|
0, 0, 0, 0,
|
||||||
|
{
|
||||||
|
backgroundPixel: white, eventMask: Exposure|PointerMotion
|
||||||
|
}
|
||||||
|
);
|
||||||
|
X.MapWindow(wid);
|
||||||
|
|
||||||
|
var gc = X.AllocID();
|
||||||
|
X.CreateGC(gc, wid, { foreground: black, background: white } );
|
||||||
|
|
||||||
|
X.on('event', function(ev) {
|
||||||
|
if (ev.type == 12)
|
||||||
|
{
|
||||||
|
if (pts.length > 4)
|
||||||
|
X.PolyLine(0, wid, gc, pts);
|
||||||
|
} else if (ev.type == 6) {
|
||||||
|
pts.push(ev.x);
|
||||||
|
pts.push(ev.y);
|
||||||
|
if (pts.length > 4)
|
||||||
|
X.PolyLine(0, wid, gc, pts.slice(-4));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
X.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user