UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

45 lines (35 loc) 1.01 kB
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2004-2011 1&1 Internet AG, Germany, http://www.1und1.de 2006 Derrell Lipman 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) * Derrell Lipman (derrell) * Christian Hagendorn (chris_schmidt) ************************************************************************ */ /** * The tree file is a leaf tree item. It cannot contain any nested tree items. */ qx.Class.define("qx.ui.tree.TreeFile", { extend: qx.ui.tree.core.AbstractTreeItem, properties: { appearance: { refine: true, init: "tree-file" } }, members: { // overridden _addWidgets() { this.addSpacer(); this.addIcon(); this.addLabel(); } } });