Change build scripts
[jvcard.git] / src / com / googlecode / lanterna / terminal / ansi / FixedTerminalSizeProvider.java
1 /*
2 * This file is part of lanterna (http://code.google.com/p/lanterna/).
3 *
4 * lanterna is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Copyright (C) 2010-2015 Martin
18 */
19
20 package com.googlecode.lanterna.terminal.ansi;
21
22 import com.googlecode.lanterna.TerminalSize;
23
24 /**
25 * Using this terminal size provider, your terminal will be set to a fixed size and will never receive any resize
26 * events. Of course if the physical terminal is resized, in reality it will have a different size, but the application
27 * won't know about it. The size reported to the user is always the size attached to this object.
28 * @author martin
29 */
30 public class FixedTerminalSizeProvider implements UnixTerminalSizeQuerier {
31 private final TerminalSize size;
32
33 /**
34 * Creating a {@code FixedTerminalSizeProvider} set to a particular size that it will always report whenever the
35 * associated {@code Terminal} interface queries.
36 * @param size Size the terminal should be statically initialized to
37 */
38 public FixedTerminalSizeProvider(TerminalSize size) {
39 this.size = size;
40 }
41
42 @Override
43 public TerminalSize queryTerminalSize() {
44 return size;
45 }
46 }