X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FColorTheme.java;h=ffba4d472cc67c36ebda4114e503ba1db545c719;hb=929409950e82914aa3cee323cfa7c5007585d2ea;hp=ff78af454d5744e34eb3c5f6173e0f00b7a56e14;hpb=2420f903afc54a5bcf61f1bdd5e3dfada2fab5b2;p=fanfix.git diff --git a/src/jexer/bits/ColorTheme.java b/src/jexer/bits/ColorTheme.java deleted file mode 100644 index ff78af4..0000000 --- a/src/jexer/bits/ColorTheme.java +++ /dev/null @@ -1,422 +0,0 @@ -/** - * Jexer - Java Text User Interface - * - * Version: $Id$ - * - * Author: Kevin Lamonte, kevin.lamonte@gmail.com - * - * License: LGPLv3 or later - * - * Copyright: 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 - */ -package jexer.bits; - -import java.io.BufferedReader; -import java.io.FileReader; -import java.io.FileWriter; -import java.io.IOException; -import java.util.SortedMap; -import java.util.StringTokenizer; -import java.util.TreeMap; - -/** - * ColorTheme is a collection of colors keyed by string. - */ -public class ColorTheme { - - /** - * The current theme colors - */ - private SortedMap colors; - - /** - * Public constructor. - */ - public ColorTheme() { - colors = new TreeMap(); - setDefaultTheme(); - } - - /** - * Retrieve the CellAttributes by name. - * - * @param name hash key - * @return color associated with hash key - */ - public CellAttributes getColor(String name) { - CellAttributes attr = (CellAttributes)colors.get(name); - return attr; - } - - /** - * Save the colors to an ASCII file - * - * @param filename file to write to - */ - public void save(String filename) throws IOException { - FileWriter file = new FileWriter(filename); - for (String key: colors.keySet()) { - CellAttributes color = getColor(key); - file.write(String.format("%s = %s\n", key, color)); - } - file.close(); - } - - /** - * Read colors from an ASCII file - * - * @param filename file to read from - */ - public void load(String filename) throws IOException { - BufferedReader reader = new BufferedReader(new FileReader(filename)); - String line = reader.readLine(); - for (; line != null; line = reader.readLine()) { - String key; - String bold; - String foreColor; - String backColor; - - // Look for lines that resemble: - // "key = blah on blah" - // "key = bold blah on blah" - StringTokenizer tokenizer = new StringTokenizer(line); - key = tokenizer.nextToken(); - if (!tokenizer.nextToken().equals("=")) { - // Skip this line - continue; - } - bold = tokenizer.nextToken(); - if (!bold.toLowerCase().equals("bold")) { - // "key = blah on blah" - foreColor = bold; - } else { - // "key = bold blah on blah" - foreColor = tokenizer.nextToken().toLowerCase(); - } - if (!tokenizer.nextToken().toLowerCase().equals("on")) { - // Skip this line - continue; - } - backColor = tokenizer.nextToken().toLowerCase(); - - CellAttributes color = new CellAttributes(); - if (bold.equals("bold")) { - color.bold = true; - } - color.foreColor = CellAttributes.colorFromString(foreColor); - color.backColor = CellAttributes.colorFromString(backColor); - colors.put(key, color); - } - } - - /** - * Sets to defaults that resemble the Borland IDE colors. - */ - public void setDefaultTheme() { - CellAttributes color; - - // TWindow border - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("twindow.border", color); - - // TWindow background - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("twindow.background", color); - - // TWindow border - inactive - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("twindow.border.inactive", color); - - // TWindow background - inactive - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("twindow.background.inactive", color); - - // TWindow border - modal - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.WHITE; - color.bold = true; - colors.put("twindow.border.modal", color); - - // TWindow background - modal - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.WHITE; - color.bold = false; - colors.put("twindow.background.modal", color); - - // TWindow border - modal + inactive - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.WHITE; - color.bold = true; - colors.put("twindow.border.modal.inactive", color); - - // TWindow background - modal + inactive - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.WHITE; - color.bold = false; - colors.put("twindow.background.modal.inactive", color); - - // TWindow border - during window movement - modal - color = new CellAttributes(); - color.foreColor = Color.GREEN; - color.backColor = Color.WHITE; - color.bold = true; - colors.put("twindow.border.modal.windowmove", color); - - // TWindow border - during window movement - color = new CellAttributes(); - color.foreColor = Color.GREEN; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("twindow.border.windowmove", color); - - // TWindow background - during window movement - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("twindow.background.windowmove", color); - - // TApplication background - color = new CellAttributes(); - color.foreColor = Color.BLUE; - color.backColor = Color.WHITE; - color.bold = false; - colors.put("tapplication.background", color); - - // TButton text - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.GREEN; - color.bold = false; - colors.put("tbutton.inactive", color); - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.GREEN; - color.bold = true; - colors.put("tbutton.active", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.WHITE; - color.bold = true; - colors.put("tbutton.disabled", color); - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.GREEN; - color.bold = true; - colors.put("tbutton.mnemonic", color); - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.GREEN; - color.bold = true; - colors.put("tbutton.mnemonic.highlighted", color); - - // TLabel text - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("tlabel", color); - - // TText text - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLACK; - color.bold = false; - colors.put("ttext", color); - - // TField text - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tfield.inactive", color); - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLACK; - color.bold = true; - colors.put("tfield.active", color); - - // TCheckbox - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tcheckbox.inactive", color); - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLACK; - color.bold = true; - colors.put("tcheckbox.active", color); - - - // TRadioButton - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tradiobutton.inactive", color); - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLACK; - color.bold = true; - colors.put("tradiobutton.active", color); - - // TRadioGroup - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tradiogroup.inactive", color); - color = new CellAttributes(); - color.foreColor = Color.YELLOW; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("tradiogroup.active", color); - - // TMenu - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.WHITE; - color.bold = false; - colors.put("tmenu", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.GREEN; - color.bold = false; - colors.put("tmenu.highlighted", color); - color = new CellAttributes(); - color.foreColor = Color.RED; - color.backColor = Color.WHITE; - color.bold = false; - colors.put("tmenu.mnemonic", color); - color = new CellAttributes(); - color.foreColor = Color.RED; - color.backColor = Color.GREEN; - color.bold = false; - colors.put("tmenu.mnemonic.highlighted", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.WHITE; - color.bold = true; - colors.put("tmenu.disabled", color); - - // TProgressBar - color = new CellAttributes(); - color.foreColor = Color.BLUE; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("tprogressbar.complete", color); - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tprogressbar.incomplete", color); - - // THScroller / TVScroller - color = new CellAttributes(); - color.foreColor = Color.CYAN; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tscroller.bar", color); - color = new CellAttributes(); - color.foreColor = Color.BLUE; - color.backColor = Color.CYAN; - color.bold = false; - colors.put("tscroller.arrows", color); - - // TTreeView - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("ttreeview", color); - color = new CellAttributes(); - color.foreColor = Color.GREEN; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("ttreeview.expandbutton", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.CYAN; - color.bold = false; - colors.put("ttreeview.selected", color); - color = new CellAttributes(); - color.foreColor = Color.RED; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("ttreeview.unreadable", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("ttreeview.inactive", color); - - // TText text - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLUE; - color.bold = false; - colors.put("tdirectorylist", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.CYAN; - color.bold = false; - colors.put("tdirectorylist.selected", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.CYAN; - color.bold = false; - colors.put("tdirectorylist.unreadable", color); - color = new CellAttributes(); - color.foreColor = Color.BLACK; - color.backColor = Color.BLUE; - color.bold = true; - colors.put("tdirectorylist.inactive", color); - - // TEditor - color = new CellAttributes(); - color.foreColor = Color.WHITE; - color.backColor = Color.BLACK; - color.bold = false; - colors.put("teditor", color); - - } - -}