X-Git-Url: http://git.nikiroo.be/?p=jvcard.git;a=blobdiff_plain;f=src%2Fcom%2Fgooglecode%2Flanterna%2Fgraphics%2FThemedTextGraphics.java;fp=src%2Fcom%2Fgooglecode%2Flanterna%2Fgraphics%2FThemedTextGraphics.java;h=0000000000000000000000000000000000000000;hp=593e0e6c8f7e62de353380daca2e94887ce3f287;hb=f06c81000632cfb5f525ca458f719338f55f9f66;hpb=a73a906356c971b080c36368e71a15d87e8b8d31 diff --git a/src/com/googlecode/lanterna/graphics/ThemedTextGraphics.java b/src/com/googlecode/lanterna/graphics/ThemedTextGraphics.java deleted file mode 100644 index 593e0e6..0000000 --- a/src/com/googlecode/lanterna/graphics/ThemedTextGraphics.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * This file is part of lanterna (http://code.google.com/p/lanterna/). - * - * lanterna 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 Lesser 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 . - * - * Copyright (C) 2010-2015 Martin - */ -package com.googlecode.lanterna.graphics; - -/** - * Expanded TextGraphics that adds methods to interact with themes - * @author Martin - */ -public interface ThemedTextGraphics extends TextGraphics { - /** - * Returns the {@code Theme} object active on this {@code ThemedTextGraphics} - * @return Active {@code Theme} object - */ - Theme getTheme(); - - /** - * Retrieves the ThemeDefinition associated with the class parameter passed in. The implementation should make sure - * that there is always a fallback available if there's no direct definition for this class; the method should never - * return null. - * @param clazz Class to search ThemeDefinition for - * @return ThemeDefinition that was resolved for this class - */ - ThemeDefinition getThemeDefinition(Class clazz); - - /** - * Takes a ThemeStyle as applies it to this TextGraphics. This will effectively set the foreground color, the - * background color and all the SGRs. - * @param themeStyle ThemeStyle to apply - * @return Itself - */ - ThemedTextGraphics applyThemeStyle(ThemeStyle themeStyle); -}