X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTLabel.java;h=cc341cfa862964ed9097c425ea4d10b55627ac0c;hb=929409950e82914aa3cee323cfa7c5007585d2ea;hp=15d6376d5313adff2010b8e5fd559f8a2b15fdd0;hpb=30d336cc33e26af877f7950b93f3b77d9c3a3bd3;p=fanfix.git diff --git a/src/jexer/TLabel.java b/src/jexer/TLabel.java deleted file mode 100644 index 15d6376..0000000 --- a/src/jexer/TLabel.java +++ /dev/null @@ -1,100 +0,0 @@ -/** - * Jexer - Java Text User Interface - * - * License: LGPLv3 or later - * - * This module is licensed under the GNU Lesser General Public License - * Version 3. Please see the file "COPYING" in this directory for more - * information about the GNU Lesser General Public License Version 3. - * - * Copyright (C) 2015 Kevin Lamonte - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation; either version 3 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, see - * http://www.gnu.org/licenses/, or write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - * 02110-1301 USA - * - * @author Kevin Lamonte [kevin.lamonte@gmail.com] - * @version 1 - */ -package jexer; - -import jexer.bits.CellAttributes; - -/** - * TLabel implements a simple label. - */ -public final class TLabel extends TWidget { - - /** - * Label text. - */ - private String text = ""; - - /** - * Label color. - */ - private String colorKey; - - /** - * Public constructor, using the default "tlabel" for colorKey. - * - * @param parent parent widget - * @param text label on the screen - * @param x column relative to parent - * @param y row relative to parent - */ - public TLabel(final TWidget parent, final String text, final int x, - final int y) { - - this(parent, text, x, y, "tlabel"); - } - - /** - * Public constructor. - * - * @param parent parent widget - * @param text label on the screen - * @param x column relative to parent - * @param y row relative to parent - * @param colorKey ColorTheme key color to use for foreground text - */ - public TLabel(final TWidget parent, final String text, final int x, - final int y, final String colorKey) { - - // Set parent and window - super(parent, false); - - this.text = text; - setX(x); - setY(y); - setHeight(1); - setWidth(text.length()); - this.colorKey = colorKey; - } - - /** - * Draw a static label. - */ - @Override public void draw() { - // Setup my color - CellAttributes color = new CellAttributes(); - color.setTo(getTheme().getColor(colorKey)); - CellAttributes background = getWindow().getBackground(); - color.setBackColor(background.getBackColor()); - - getScreen().putStrXY(0, 0, text, color); - } - -}