@qooxdoo/framework
Version:
The JS Framework for Coders
63 lines (47 loc) • 1.44 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Sebastian Werner (wpbasti)
* Fabian Jakobs (fjakobs)
************************************************************************ */
qx.Class.define("qxl.demobrowser.demo.root.Application",
{
extend : qx.application.Standalone,
members :
{
main: function()
{
this.base(arguments);
var w1 = new qx.ui.core.Widget().set({
backgroundColor: "red",
decorator: "main",
padding: 10
});
var w2 = new qx.ui.core.Widget().set({
backgroundColor: "blue",
decorator: "main"
});
var w3 = new qx.ui.core.Widget().set({
backgroundColor: "green",
decorator: "main"
});
var w4 = new qx.ui.core.Widget().set({
backgroundColor: "yellow",
decorator: "main"
});
var container = new qx.ui.container.Composite(new qx.ui.layout.HBox());
container.setDecorator("main");
container.add(w1);
container.add(w2);
container.add(w3);
container.add(w4);
this.getRoot().add(container, {edge:0});
}
}
});