├── .gitignore ├── README.md ├── package.json ├── src ├── application.js ├── index.js ├── style.css ├── ui.glade ├── utils │ ├── key-symbols.js │ ├── key.js │ └── key.test.js └── window.js └── static ├── demo.png └── inspector.png /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/package.json -------------------------------------------------------------------------------- /src/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/application.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/style.css -------------------------------------------------------------------------------- /src/ui.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/ui.glade -------------------------------------------------------------------------------- /src/utils/key-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/utils/key-symbols.js -------------------------------------------------------------------------------- /src/utils/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/utils/key.js -------------------------------------------------------------------------------- /src/utils/key.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/utils/key.test.js -------------------------------------------------------------------------------- /src/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/src/window.js -------------------------------------------------------------------------------- /static/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/static/demo.png -------------------------------------------------------------------------------- /static/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgrk/node-gtk-template/HEAD/static/inspector.png --------------------------------------------------------------------------------