[go: up one dir, main page]

Menu

[r1]: / src / gui / MGButton.java  Maximize  Restore  History

Download this file

219 lines (185 with data), 5.4 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package gui;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.event.FocusEvent;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import core.MGComposer;
import management.PanelManager;
import gui.shell.Icon_15x15;
import gui.shell.Icon_20x20;
public class MGButton extends JButton implements MouseListener {
public static final int ICON_15X15 = 0;
public static final int ICON_20X20 = 1;
private PanelManager manager;
private MouseListener broadcaster;
private JPanel panel;
private String id;
private boolean selectable;
private boolean selected;
private boolean over;
private boolean image = false;
private ImageIcon normal;
private ImageIcon highlight;
public MGButton(PanelManager manager, JPanel panel, String id, String label, int posx, int posy, int width, int height, boolean add) {
this.id = id;
this.selectable = false;
this.selected = false;
this.over = false;
this.manager = manager;
this.panel = panel;
this.setText(label);
this.addMouseListener(this);
this.setBackground(Skin.buttonBackgroundColor);
this.setBorder(Skin.buttonBorder);
this.setForeground(Skin.buttonForegroundColor);
this.setBounds(posx,posy,width,height);
if (add) { this.panel.add(this); }
this.manager.addMenuButton(this);
}
public MGButton(PanelManager manager, JPanel panel, String id, int posx, int posy, String iconClass, boolean add) {
this.normal = Icon_20x20.generateIcon(iconClass, false);
this.highlight = Icon_20x20.generateIcon(iconClass, true);
this.id = id;
this.selectable = false;
this.selected = false;
this.over = false;
this.manager = manager;
this.panel = panel;
this.image = true;
this.setText(null);
this.setIcon(normal);
this.addMouseListener(this);
this.setBackground(Skin.buttonBackgroundColor);
this.setBorder(Skin.buttonBorder);
this.setForeground(Skin.buttonForegroundColor);
this.setBounds(posx,posy,normal.getIconWidth(),normal.getIconHeight());
if (add) { this.panel.add(this); }
this.manager.addMenuButton(this);
}
public MGButton(PanelManager manager, JPanel panel, String id, int posx, int posy, int iconSize, String iconClass, boolean add) {
if (iconSize == ICON_15X15) {
this.normal = Icon_15x15.generateIcon(iconClass, false);
this.highlight = Icon_15x15.generateIcon(iconClass, true);
} else {
this.normal = Icon_20x20.generateIcon(iconClass, false);
this.highlight = Icon_20x20.generateIcon(iconClass, true);
}
this.id = id;
this.selectable = false;
this.selected = false;
this.over = false;
this.manager = manager;
this.panel = panel;
this.image = true;
this.setText(null);
this.setIcon(normal);
this.addMouseListener(this);
this.setBackground(Skin.buttonBackgroundColor);
this.setBorder(Skin.buttonBorder);
this.setForeground(Skin.buttonForegroundColor);
this.setBounds(posx,posy,normal.getIconWidth(),normal.getIconHeight());
if (add) { this.panel.add(this); }
this.manager.addMenuButton(this);
}
public void drawInPanel() { this.panel.add(this); }
public String getId() {
return id;
}
public boolean isSelected() {
return selected;
}
public void setSelected(boolean selected) {
if ( this.selected != selected ) {
this.selected = selected;
if (selected) { setStyleSelected(); }
else { setStyleNormal(); }
};
}
public boolean isOver() {
return over;
}
public boolean isSelectable() {
return selectable;
}
public void setSelectable(boolean selectable) {
this.selectable = selectable;
}
public void release() {
this.selected = false;
this.over = false;
}
public void mouseClicked(MouseEvent e) {
}
public void mouseEntered(MouseEvent e) {
setStyleOver();
over = true;
}
public void mouseExited(MouseEvent e) {
if (!selected) {
setStyleNormal();
} else {
setStyleSelected();
}
over = false;
}
public void mousePressed(MouseEvent e) {
switchStyle();
if (broadcaster != null) { broadcaster.mouseClicked(e); }
if (manager != null) { manager.buttonPressed(this); }
}
public void mouseReleased(MouseEvent e) {
}
private void switchStyle() {
if (selectable) {
if (selected) {
selected = false;
setStyleNormal();
} else if (!selected) {
selected = true;
setStyleSelected();
}
}
}
private void setStyleNormal() {
if (image) {
setIcon(normal);
} else {
setBackground(Skin.buttonBackgroundColor);
setBorder(Skin.buttonBorder);
setForeground(Skin.buttonForegroundColor);
setText(this.getText());
}
}
private void setStyleSelected() {
if (image) {
setIcon(highlight);
} else {
setBackground(Skin.buttonSelectedBackgroundColor);
setBorder(Skin.buttonSelectedBorder);
setForeground(Skin.buttonSelectedForegroundColor);
setText(this.getText());
}
}
private void setStyleOver() {
if (image) {
setIcon(highlight);
} else {
setBackground(Skin.buttonOverBackgroundColor);
setBorder(Skin.buttonOverBorder);
setForeground(Skin.buttonOverForegroundColor);
}
}
public void setManager(PanelManager manager) {
this.manager = manager;
}
public void setBroadcaster(MouseListener broadcaster) {
this.broadcaster = broadcaster;
}
}