This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get dependencies in place (example for Debian based systems) | |
sudo apt-get build-dep --yes qt5-default | |
sudo apt-get install --yes libxcb-xinerama0-dev git python cmake default-jre | |
# Install Emscripten | |
git clone https://github.com/juj/emsdk.git | |
cd emsdk | |
./emsdk install latest | |
./emsdk activate latest | |
source emsdk_env.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const yaml = require('js-yaml') | |
const fs = require('fs') | |
let res = {} | |
let doc = yaml.safeLoad(fs.readFileSync('icons.yml', 'utf8')) | |
doc.icons.forEach((iconDsc) => { | |
res[iconDsc.id] = iconDsc.unicode | |
if (res.aliases) { | |
res.aliases.forEach((alias) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class.define("OpenCloseController", | |
{ | |
extend: qx.core.Object, | |
construct: function(tree, model) | |
{ | |
this.base(arguments); | |
this._tree = tree; | |
this._lids = []; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
qx.Mixin.define("foo.MRadialBackgroundGradient", | |
{ | |
/* | |
***************************************************************************** | |
PROPERTIES | |
***************************************************************************** | |
*/ | |
properties : | |
{ | |
/** |