X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTLabel.java;h=cc341cfa862964ed9097c425ea4d10b55627ac0c;hb=8a1cae77d279cc246a68109f6178b2bb05e7471f;hp=801db2a25ac299f5571c70c53611c2fd048538b5;hpb=0d47c5460c8e9d1198928308767a63ad35f46eb8;p=fanfix.git diff --git a/src/jexer/TLabel.java b/src/jexer/TLabel.java deleted file mode 100644 index 801db2a..0000000 --- a/src/jexer/TLabel.java +++ /dev/null @@ -1,114 +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 label = ""; - - /** - * Get label text. - * - * @return label text - */ - public String getLabel() { - return label; - } - - /** - * Set label text. - * - * @param label new label text - */ - public void setLabel(final String label) { - this.label = label; - } - - /** - * 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, x, y, text.length(), 1); - - this.label = text; - 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().putStringXY(0, 0, label, color); - } - -}