-
Notifications
You must be signed in to change notification settings - Fork 0
/
HistoryCont.java
65 lines (54 loc) · 1.54 KB
/
HistoryCont.java
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
import javax.swing.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
/* Controller : 履歴画面+警告画面に対して */
class HistoryCont implements ActionListener, KeyListener {
public Game frame;
// コンストラクタ
public HistoryCont(Game f) {
frame = f;
frame.addKeyListener(this);
frame.ht_view.b1.addActionListener(this);
frame.ht_view.b1.setActionCommand("return");
frame.ht_view.b2.addActionListener(this);
frame.ht_view.b2.setActionCommand("datareset");
frame.ht_view2.b1.addActionListener(this);
frame.ht_view2.b1.setActionCommand("yes");
frame.ht_view2.b2.addActionListener(this);
frame.ht_view2.b2.setActionCommand("no");
}
// キーリスナーを手動で加える
public void add() {
frame.addKeyListener(this);
}
// キーリスナーを外す
public void remove() {
frame.removeKeyListener(this);
}
// ボタンが押されたときの処理
public void actionPerformed(ActionEvent e) {
String cmd = e.getActionCommand();
if (cmd.equals("return")) {
frame.history_start();
return;
} else if (cmd.equals("datareset")) {
frame.history_notion();
return;
} else if (cmd.equals("yes")) {
frame.mana_file.resetData(frame.mana_item);
frame.notion_history_yes();
return;
} else if (cmd.equals("no")) {
frame.notion_history_no();
return;
}
}
// キーの処理
public void keyPressed(KeyEvent e) {
}
public void keyTyped(KeyEvent e) {
}
public void keyReleased(KeyEvent e) {
}
}