-
Notifications
You must be signed in to change notification settings - Fork 0
/
KTimer.java
235 lines (175 loc) · 7.59 KB
/
KTimer.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
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/**
* Timer
* @author kaito071831
*/
public class KTimer{
public static void main(String[] args) {
//フレームを生成
JFrame frame = new JFrame("キッチンタイマー");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 200);
frame.setLayout(new BorderLayout());
//時間出力部分をtimeIOパネルに追加してパネルをフレームに追加
JPanel timeIO = new JPanel();
timeIO.setLayout(new FlowLayout());
JLabel timeMl = new JLabel("分");
JLabel timeSl = new JLabel("秒");
JLabel timeM = new JLabel();
timeM.setText("00");
JLabel timeS = new JLabel();
timeS.setText("00");
timeIO.add(timeM);
timeIO.add(timeMl);
timeIO.add(timeS);
timeIO.add(timeSl);
frame.add(timeIO, BorderLayout.NORTH);
//タイマー操作ボタンをactionパネルに追加してからフレームに設定
JButton reset = new JButton("リセット");
frame.add(reset, BorderLayout.WEST);
JPanel action = new JPanel();
action.setLayout(new BoxLayout(action, BoxLayout.Y_AXIS));
frame.add(action, BorderLayout.EAST);
JButton start = new JButton("開始");
start.setMaximumSize(new Dimension(80,80));
action.add(start);
JButton stop = new JButton("停止");
stop.setMaximumSize(new Dimension(80,80));
action.add(stop);
//時間設定ボタン定義する。buttonAパネルにbuttonLayoutパネルを追加してフレームに設定
JPanel buttonA = new JPanel();
JPanel buttonLayout = new JPanel();
buttonLayout.setLayout(new BoxLayout(buttonLayout, BoxLayout.Y_AXIS));
frame.add(buttonA, BorderLayout.CENTER);
buttonA.add(buttonLayout);
JButton m10 = new JButton("10分");
m10.setMaximumSize(new Dimension(100,50));
JButton m1 = new JButton("1分");
m1.setMaximumSize(new Dimension(100,50));
JButton s10 = new JButton("10秒");
s10.setMaximumSize(new Dimension(100,50));
JButton s1 = new JButton("1秒");
s1.setMaximumSize(new Dimension(100,50));
//時間の値を設定するためにコンストラクタ生成
Time time = new Time();
//10分追加ボタンのイベント処理
m10.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
time.min += 10;
if(time.min >= 60){
time.min -= 60;
time.minO = Integer.toString(time.min);
timeM.setText("0" + time.minO);
}else{
time.minO = Integer.toString(time.min);
timeM.setText(time.minO);
}
}
});
//1分追加ボタンのイベント処理
m1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
time.min += 1;
if(time.min >= 60){
time.min -= 60;
}
time.minO = Integer.toString(time.min);
if(time.minO.length() < 2){
timeM.setText("0" + time.minO);
}else{
timeM.setText(time.minO);
}
}
});
//10秒追加ボタンのイベント処理
s10.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
time.sec += 10;
if(time.sec >= 60){
time.sec -= 60;
time.secO = Integer.toString(time.sec);
timeS.setText("0" + time.secO);
}else{
time.secO = Integer.toString(time.sec);
timeS.setText(time.secO);
}
}
});
//1秒追加ボタンのイベント処理
s1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
time.sec += 1;
if(time.sec >= 60){
time.sec -= 60;
}
time.secO = Integer.toString(time.sec);
if(time.secO.length() < 2){
timeS.setText("0" + time.secO);
}else{
timeS.setText(time.secO);
}
}
});
//リセットボタンのイベント処理
reset.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
time.min = 0;
time.sec = 0;
timeM.setText("00");
timeS.setText("00");
}
});
//スタートボタンのイベント処理
start.addActionListener(new ActionListener(){
Timer timer = new Timer(1000, this);
public void actionPerformed(ActionEvent e){
timer.start();
//分と秒が0になったときtimerのスケジュールをキャンセルする
if(time.min == 0 && time.sec == 0){
timer.stop();
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog(frame, "時間になりました!", "アラーム", 1);
return;
}
time.sec--;
//秒数が0未満になるとき分を1減らして秒数を59増やす
if(time.sec < 0){
time.sec += 60;
time.min--;
time.minO = Integer.toString(time.min);
//分が1桁になったときは0+分で出力する。そうでなければ通常通り出力する
if(time.min < 10){
timeM.setText("0" + time.minO);
}else{
timeM.setText(time.minO);
}
//分数が0未満のとき分の出力エリアの表示を00で固定する
if(time.min < 0){
timeM.setText("00");
}
}
time.secO = Integer.toString(time.sec);
//秒が1桁になったときは0+秒で出力する。そうでなければ通常通り出力する
if(time.sec < 10){
timeS.setText("0" + time.secO);
}else{
timeS.setText(time.secO);
}
//停止ボタンが押されたときtimerのスケジュールをキャンセルする
stop.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
timer.stop();
}
});
}
});
//時間設定ボタンをbuttonLayoutパネルに追加
buttonLayout.add(m10);
buttonLayout.add(m1);
buttonLayout.add(s10);
buttonLayout.add(s1);
frame.setVisible(true);
}
}