No description
Find a file
2011-07-19 11:04:16 +10:00
lib/x11 GraphicsContext wrapper 2011-07-19 11:04:16 +10:00
test GraphicsContext wrapper 2011-07-19 11:04:16 +10:00
README.md initial big import. Working base to add new requests 2011-07-14 15:35:49 +10:00
roadmap.txt Edited roadmap.txt via GitHub 2011-07-07 20:49:08 -07:00

About

X11 protocol client for node.js

status

stage 2) ( see roadmap.txt ) next todo: dispatch replies and errors, decode all evnt types

example

var X = require('x11').createClient();
X.on('connect', function(display) {
    var root = display.screen[0].root;
    var wid = X.AllocID();
    X.CreateWindow(wid, root, 10, 10, 400, 300, 1, 1, 0, { backgroundPixel: 0, eventMask: 0x00000040 });
    X.MapWindow(wid);
});

Protocol documentation

Other implementations