X-Git-Url: http://git.nikiroo.be/?p=jvcard.git;a=blobdiff_plain;f=src%2Fcom%2Fgooglecode%2Flanterna%2Fgraphics%2FNullTextGraphics.java;fp=src%2Fcom%2Fgooglecode%2Flanterna%2Fgraphics%2FNullTextGraphics.java;h=0000000000000000000000000000000000000000;hp=0e73695a6d103e88400c9bd20091c8a943e304a0;hb=f06c81000632cfb5f525ca458f719338f55f9f66;hpb=a73a906356c971b080c36368e71a15d87e8b8d31 diff --git a/src/com/googlecode/lanterna/graphics/NullTextGraphics.java b/src/com/googlecode/lanterna/graphics/NullTextGraphics.java deleted file mode 100644 index 0e73695..0000000 --- a/src/com/googlecode/lanterna/graphics/NullTextGraphics.java +++ /dev/null @@ -1,253 +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; - -import com.googlecode.lanterna.*; -import com.googlecode.lanterna.screen.TabBehaviour; -import java.util.Arrays; -import java.util.Collection; -import java.util.EnumSet; - -/** - * TextGraphics implementation that does nothing, but has a pre-defined size - * @author martin - */ -class NullTextGraphics implements TextGraphics { - private final TerminalSize size; - private TextColor foregroundColor; - private TextColor backgroundColor; - private TabBehaviour tabBehaviour; - private final EnumSet activeModifiers; - - /** - * Creates a new {@code NullTextGraphics} that will return the specified size value if asked how big it is but other - * than that ignore all other calls. - * @param size The size to report - */ - public NullTextGraphics(TerminalSize size) { - this.size = size; - this.foregroundColor = TextColor.ANSI.DEFAULT; - this.backgroundColor = TextColor.ANSI.DEFAULT; - this.tabBehaviour = TabBehaviour.ALIGN_TO_COLUMN_4; - this.activeModifiers = EnumSet.noneOf(SGR.class); - } - - @Override - public TerminalSize getSize() { - return size; - } - - @Override - public TextGraphics newTextGraphics(TerminalPosition topLeftCorner, TerminalSize size) throws IllegalArgumentException { - return this; - } - - @Override - public TextColor getBackgroundColor() { - return backgroundColor; - } - - @Override - public TextGraphics setBackgroundColor(TextColor backgroundColor) { - this.backgroundColor = backgroundColor; - return this; - } - - @Override - public TextColor getForegroundColor() { - return foregroundColor; - } - - @Override - public TextGraphics setForegroundColor(TextColor foregroundColor) { - this.foregroundColor = foregroundColor; - return this; - } - - @Override - public TextGraphics enableModifiers(SGR... modifiers) { - activeModifiers.addAll(Arrays.asList(modifiers)); - return this; - } - - @Override - public TextGraphics disableModifiers(SGR... modifiers) { - activeModifiers.removeAll(Arrays.asList(modifiers)); - return this; - } - - @Override - public TextGraphics setModifiers(EnumSet modifiers) { - clearModifiers(); - activeModifiers.addAll(modifiers); - return this; - } - - @Override - public TextGraphics clearModifiers() { - activeModifiers.clear(); - return this; - } - - @Override - public EnumSet getActiveModifiers() { - return EnumSet.copyOf(activeModifiers); - } - - @Override - public TabBehaviour getTabBehaviour() { - return tabBehaviour; - } - - @Override - public TextGraphics setTabBehaviour(TabBehaviour tabBehaviour) { - this.tabBehaviour = tabBehaviour; - return this; - } - - @Override - public TextGraphics fill(char c) { - return this; - } - - @Override - public TextGraphics setCharacter(int column, int row, char character) { - return this; - } - - @Override - public TextGraphics setCharacter(int column, int row, TextCharacter character) { - return this; - } - - @Override - public TextGraphics setCharacter(TerminalPosition position, char character) { - return this; - } - - @Override - public TextGraphics setCharacter(TerminalPosition position, TextCharacter character) { - return this; - } - - @Override - public TextGraphics drawLine(TerminalPosition fromPoint, TerminalPosition toPoint, char character) { - return this; - } - - @Override - public TextGraphics drawLine(TerminalPosition fromPoint, TerminalPosition toPoint, TextCharacter character) { - return this; - } - - @Override - public TextGraphics drawLine(int fromX, int fromY, int toX, int toY, char character) { - return this; - } - - @Override - public TextGraphics drawLine(int fromX, int fromY, int toX, int toY, TextCharacter character) { - return this; - } - - @Override - public TextGraphics drawTriangle(TerminalPosition p1, TerminalPosition p2, TerminalPosition p3, char character) { - return this; - } - - @Override - public TextGraphics drawTriangle(TerminalPosition p1, TerminalPosition p2, TerminalPosition p3, TextCharacter character) { - return this; - } - - @Override - public TextGraphics fillTriangle(TerminalPosition p1, TerminalPosition p2, TerminalPosition p3, char character) { - return this; - } - - @Override - public TextGraphics fillTriangle(TerminalPosition p1, TerminalPosition p2, TerminalPosition p3, TextCharacter character) { - return this; - } - - @Override - public TextGraphics drawRectangle(TerminalPosition topLeft, TerminalSize size, char character) { - return this; - } - - @Override - public TextGraphics drawRectangle(TerminalPosition topLeft, TerminalSize size, TextCharacter character) { - return this; - } - - @Override - public TextGraphics fillRectangle(TerminalPosition topLeft, TerminalSize size, char character) { - return this; - } - - @Override - public TextGraphics fillRectangle(TerminalPosition topLeft, TerminalSize size, TextCharacter character) { - return this; - } - - @Override - public TextGraphics drawImage(TerminalPosition topLeft, TextImage image) { - return this; - } - - @Override - public TextGraphics drawImage(TerminalPosition topLeft, TextImage image, TerminalPosition sourceImageTopLeft, TerminalSize sourceImageSize) { - return this; - } - - @Override - public TextGraphics putString(int column, int row, String string) { - return this; - } - - @Override - public TextGraphics putString(TerminalPosition position, String string) { - return this; - } - - @Override - public TextGraphics putString(int column, int row, String string, SGR extraModifier, SGR... optionalExtraModifiers) { - return this; - } - - @Override - public TextGraphics putString(TerminalPosition position, String string, SGR extraModifier, SGR... optionalExtraModifiers) { - return this; - } - - @Override - public TextGraphics putString(int column, int row, String string, Collection extraModifiers) { - return this; - } - - @Override - public TextCharacter getCharacter(int column, int row) { - return null; - } - - @Override - public TextCharacter getCharacter(TerminalPosition position) { - return null; - } -}