LICENSE CHANGED TO MIT
[nikiroo-utils.git] / src / jexer / event / TResizeEvent.java
CommitLineData
daa4106c 1/*
df8de03f
KL
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
df8de03f 5 *
e16dda65 6 * Copyright (C) 2016 Kevin Lamonte
df8de03f 7 *
e16dda65
KL
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
df8de03f 14 *
e16dda65
KL
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
df8de03f 17 *
e16dda65
KL
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
7b5261bc
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
df8de03f
KL
28 */
29package jexer.event;
30
31/**
32 * This class encapsulates a screen or window resize event.
33 */
d4a29741 34public final class TResizeEvent extends TInputEvent {
df8de03f
KL
35
36 /**
37 * Resize events can be generated for either a total screen resize or a
38 * widget/window resize.
39 */
40 public enum Type {
7b5261bc
KL
41 /**
42 * The entire screen size changed.
43 */
44 SCREEN,
45
46 /**
47 * A widget was resized.
48 */
49 WIDGET
50 }
51
52 /**
53 * The type of resize.
54 */
55 private Type type;
56
57 /**
58 * Get resize type.
59 *
60 * @return SCREEN or WIDGET
61 */
d4a29741 62 public Type getType() {
7b5261bc 63 return type;
df8de03f
KL
64 }
65
66 /**
7b5261bc
KL
67 * New width.
68 */
69 private int width;
70
71 /**
72 * Get the new width.
73 *
74 * @return width
df8de03f 75 */
d4a29741 76 public int getWidth() {
7b5261bc
KL
77 return width;
78 }
df8de03f
KL
79
80 /**
7b5261bc 81 * New height.
df8de03f 82 */
7b5261bc 83 private int height;
df8de03f
KL
84
85 /**
7b5261bc
KL
86 * Get the new height.
87 *
88 * @return height
df8de03f 89 */
d4a29741
KL
90 public int getHeight() {
91 return height;
7b5261bc 92 }
df8de03f
KL
93
94 /**
7b5261bc 95 * Public contructor.
df8de03f
KL
96 *
97 * @param type the Type of resize, Screen or Widget
98 * @param width the new width
05dbb28d 99 * @param height the new height
df8de03f 100 */
7b5261bc
KL
101 public TResizeEvent(final Type type, final int width, final int height) {
102 this.type = type;
103 this.width = width;
104 this.height = height;
df8de03f
KL
105 }
106
107 /**
7b5261bc
KL
108 * Make human-readable description of this TResizeEvent.
109 *
110 * @return displayable String
df8de03f
KL
111 */
112 @Override
d4a29741 113 public String toString() {
7b5261bc
KL
114 return String.format("Resize: %s width = %d height = %d",
115 type, width, height);
df8de03f
KL
116 }
117
118}