From 7e3e9e1a45fc2536d64189d5f72334140718d98e Mon Sep 17 00:00:00 2001 From: sbosse Date: Tue, 27 Aug 2024 00:15:05 +0200 Subject: [PATCH] Tue 27 Aug 00:14:56 CEST 2024 --- test/test-ui3.js | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 test/test-ui3.js diff --git a/test/test-ui3.js b/test/test-ui3.js new file mode 100644 index 0000000..b9d0eb5 --- /dev/null +++ b/test/test-ui3.js @@ -0,0 +1,45 @@ +// jamsh +var ui = UI.UI({ + pages : 1, + styles : {}, + terminal: '', + title : 'Test APP' +}); + +function exit2() { + process.exit(); +} + +print(ui) +ui.init(); + + +ui.pages[1]={ + quit : ui.button({left:1,top:1,content:'QUIT', action:exit2}), + label1 : ui.label({right:1,top:2, content:'Terminal Demo'}), + term1 : ui.terminal({left:1, top:6, width:40, height:10, prompt:'> ', label:'Terminal'}), + info1 : ui.info({right:1, top:6, width:34, height:14, multiline:true, wrap:true, scrollable:true, label:'Info'}), +} +_logs=[] +Log = function () { + var line = Array.prototype.slice.call(arguments).map(function (arg) { + return inspect(arg) }).join(' '); + _logs.push(_logs.length+':'+line); + ui.pages[1].info1.setValue(_logs.join('\n')); + ui.pages[1].info1.scrollBottom(); +} +ui.pages[1].term1.on('eval',function (cmd) { + Log(cmd); + if (cmd!=null) ui.pages[1].term1.print(cmd); + ui.pages[1].term1.print('Ok.'); +}); +ui.pages[1].term1.on('clicked',function (ev) { + // Log(ev); +}); +ui.pages[1].term1.on('keypress',function (ch,key) { + // Log(key); +}); + +ui.screen.key(['escape', 'q', 'C-c'], exit2); + +ui.start();