UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

59 lines (46 loc) 1.25 kB
/* ************************************************************************ 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) * Andreas Ecker (ecker) ************************************************************************ */ /** * A widget used for decoration proposes to structure a toolbar. Each * Separator renders a line between the buttons around. */ qx.Class.define("qx.ui.toolbar.Separator", { extend: qx.ui.core.Widget, /* ***************************************************************************** PROPERTIES ***************************************************************************** */ properties: { // overridden appearance: { refine: true, init: "toolbar-separator" }, // overridden anonymous: { refine: true, init: true }, // overridden width: { refine: true, init: 0 }, // overridden height: { refine: true, init: 0 } } });