mirror of
https://github.com/danbulant/node-x11
synced 2026-05-21 21:39:13 +00:00
constants added
This commit is contained in:
parent
15bbd67965
commit
e53a974668
1 changed files with 25 additions and 1 deletions
|
|
@ -4,4 +4,28 @@ var keysyms = require('./keysyms');
|
|||
|
||||
module.exports.createClient = core.createClient;
|
||||
module.exports.eventMask = em;
|
||||
module.exports.keySyms = keysyms;
|
||||
module.exports.keySyms = keysyms;
|
||||
|
||||
|
||||
//TODO:
|
||||
// keepe everything in namespace for consistensy (eventMask, keySyms, class, destination ...
|
||||
// or put most used constants to top namespace? (currently class and destination in top)
|
||||
|
||||
// basic constants
|
||||
|
||||
// class
|
||||
module.exports.CopyFromParent = 0;
|
||||
module.exports.InputOutput = 1;
|
||||
module.exports.InputOnly = 2;
|
||||
|
||||
// destination
|
||||
module.exports.PointerWindow = 0;
|
||||
module.exports.InputFocus = 1;
|
||||
|
||||
|
||||
// TODO
|
||||
module.exports.bitGravity = {
|
||||
};
|
||||
|
||||
module.exports.winGravity = {
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue