XULJet
| XULJet | |
|---|---|
| Lançamento estável | XULJet-3.0.1
/ 7 de fevereiro de 2011 |
| Escrito em | JavaScript |
| Sistema operacional | Multiplataforma |
| Tipo | JavaScript library |
| Licença | MIT License |
| Website | http://code.google.com/p/xuljet/ |
XULJet é um open-source JavaScript framework para o Mozilla XULRunner run-time environment. Ele foi projetado para escrever aplicações desktop em JavaScript puro.
XULJet fornece uma arquitetura de componentes e elementos de interface de usuario, projetados pelo Seaside. Ele implementa algumas especificações do CommonJS. [1].
Exemplos
Ola mundo em XULJet:

var xuljet = require('lib/xuljet');
var Main = function(aWindow)
{
xuljet.Component.call(this, aWindow);
this.message = "Ola mundo!";
}
xuljet.inherits(Main, xuljet.Component);
Main.prototype.render = function(xul)
{
xul.vbox({flex: 1},
xul.toolbox(
xul.menubar(
xul.menu({label: "File", accesskey: "f"},
xul.menupopup(
xul.menuitem({label: "Close", oncommand: "window.close()"}))))),
xul.vbox({align: "center", pack: "center", flex: 1},
xul.description({bind: "desc"}, "Press the button"),
xul.button({label: "OK", oncommand: function() {
this["desc"].value = this.message}})),
xul.statusbar(
xul.statusbarpanel({flex: 1, label: 'Ready...'})))
}
}
function main()
{
var rootComponent = new Main(window);
window.setTitle("XULJet");
rootComponent.beMainWindowComponent();
}
Veja também
Referencias
Ligações externas
- Official website
- XULJet mailing list - general discussion about XULJet
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.