-
Notifications
You must be signed in to change notification settings - Fork 0
/
Paint.java
1043 lines (802 loc) · 22.6 KB
/
Paint.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Yuki Tetsuka
* <p>
* Project: DrawJava
* Description: A simple drawing application in Java.
* <p>
* Copyright (c) 2023 Yuki Tetsuka. All rights reserved.
* See the project repository at: https://github.com/ponstream24/DrawJava
*/
// https://eclipse.dev/eclipse/news/4.14/platform.php#control-character-console
package enshuReport2_2023;
import static enshuReport2_2023.util.ColorCtrl.*;
import static enshuReport2_2023.util.FileCtrl.*;
import static enshuReport2_2023.util.ShowCtrl.*;
import java.awt.BasicStroke;
import java.awt.Button;
import java.awt.Checkbox;
import java.awt.CheckboxGroup;
import java.awt.Color;
import java.awt.Component;
import java.awt.Cursor;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.awt.event.MouseWheelEvent;
import java.awt.event.MouseWheelListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.ArrayList;
import java.util.LinkedList;
import javax.swing.JColorChooser;
import javax.swing.JOptionPane;
import enshuReport2_2023.util.HistoryCtrl;
// MouseListener -> マウスクリック等監視
// MouseMotionListener -> マウス動き等監視
// KeyListener -> キー監視
// MouseWheelListener -> マウスホイール監視
public class Paint extends Frame
implements MouseListener, MouseMotionListener, KeyListener, MouseWheelListener, ActionListener, ItemListener {
// 初期化
public static Frame mainFrame;
public static String loadingFile = null;
public static boolean isUndoRedoLastTime = false;
public static boolean isDrawLock = false;
public static boolean isSaved = true;
public static Figure c; // 点
public static LinkedList<Figure> coords = new LinkedList<>();// 線分
public static ArrayList<LinkedList<Figure>> coordsList = new ArrayList<>(); // 線分リスト
public static HistoryCtrl historyCtrl = new HistoryCtrl();
public static CheckboxGroup cbg, colorGroup;
public static ArrayList<Checkbox> cgCheckBoxList = new ArrayList<>();
public static ArrayList<Button> buttonList = new ArrayList<>();
public static ArrayList<Component> otherList = new ArrayList<>();
public static ArrayList<Checkbox> colorList = new ArrayList<>();
public int x, y;
public boolean isFill = false;
public Color color = Color.BLACK; // 色
public Color customColor = Color.BLACK; // 色
public int size = 1; // 太さ
/**
* 0:通常描画
* 1:大きさ変更して描画
* 2:全体移動
* 3:線
* 4:消しゴム
*/
int mode = 0;
/**
* 画面ちかちか防止のため、一旦オフスクリーンに描画して、ちかちかを防止する
*/
// オフスクリーン
Image offScreenImage;
Graphics offScreenGraphics;
// コンストラクター
public Paint() {
mainFrame = this;
c = null;
this.setSize(640, 480);
this.setBackground(Color.WHITE);
// 各イベント監視開始
this.addMouseListener(this);
this.addMouseMotionListener(this);
this.addKeyListener(this);
this.addMouseWheelListener(this);
this.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
if (isSaved || showSaveConfirmDialog()) {
dispose();
}
}
});
this.addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
setDesign();
}
});
setLayout(null);
cbg = new CheckboxGroup();
String[] labels = { "自由線", "円", "四角", "線" };
for (String label : labels) {
Checkbox checkbox;
checkbox = new Checkbox(label, cbg, false);
add(checkbox);
checkbox.addKeyListener(this);
cgCheckBoxList.add(checkbox);
}
cgCheckBoxList.get(0).setState(true);
String[] otherLabels = { "塗り直し", "描画ロック" };
for (String otherLabel : otherLabels) {
Checkbox checkbox;
checkbox = new Checkbox(otherLabel);
add(checkbox);
checkbox.addKeyListener(this);
checkbox.addItemListener(this);
otherList.add(checkbox);
}
cgCheckBoxList.get(0).setState(true);
String[] buttonLabels = { "色を選択", "Undo", "Redo", "読み込み", "上書き保存", "新規保存", "終了" };
for (String buttonLabel : buttonLabels) {
Button b = new Button(buttonLabel);
add(b);
b.addActionListener(this);
b.addKeyListener(this);
buttonList.add(b);
}
colorGroup = new CheckboxGroup();
String[] colorLabels = { "黒", "赤", "青", "水", "薄桃", "灰", "緑", "黄", "桃", "橙", "カスタム" };
for (String label : colorLabels) {
Checkbox checkbox;
checkbox = new Checkbox(label, colorGroup, false);
add(checkbox);
checkbox.addKeyListener(this);
checkbox.addItemListener(this);
colorList.add(checkbox);
}
colorList.get(0).setState(true);
setDesign();
historyAdd();
isSaved = true;
}
// psvm
public static void main(String[] args) {
nowLoading();
// インスタンス
Paint f = new Paint();
f.setTitle("2232103");
f.setVisible(true);
if (args.length >= 1)
f.load(args[0]);
closeNowLoading();
}
@Override
public void update(Graphics g) {
if (offScreenImage == null) {
// オフスクリーンイメージをフルスクリーンサイズで作成
offScreenImage = createImage(1980, 1080);
// オフスクリーンイメージに描画するための Graphics オブジェクト
offScreenGraphics = offScreenImage.getGraphics();
}
// offScreenGraphicsにペイントする
paint(offScreenGraphics);
// イメージをスクリーンに書き込む
g.drawImage(offScreenImage, 0, 0, this);
}
@Override
public void paint(Graphics g) {
updateHistoryButton();
// 2Dにキャスト
Graphics2D g2 = (Graphics2D) g;
// 線分リストをループ
if (coordsList.size() > 0) {
// 線分をループ
for (LinkedList<Figure> coords : coordsList) {
// 線分が1
if (coords.size() == 1) {
coords.get(0).paint(g);
} else if (coords.size() > 0) {
Coord lastCoord = null;
// 各点を描画
for (Coord _c : coords) {
if (lastCoord == null) {
_c.paint(g);
}
lastCoord = _c;
}
// 線分内の点で配列を形成
int n = coords.size();
int size = coords.get(0).w;
int[] xp = new int[n];
int[] yp = new int[n];
for (int i = 0; i < n; i++) {
xp[i] = coords.get(i).x;
yp[i] = coords.get(i).y;
}
// ポリラインで線分を描画
BasicStroke bs = new BasicStroke(size);
g2.setStroke(bs);
g2.drawPolyline(xp, yp, n);
}
}
}
// 描画中の線分あり
if (coords.size() > 0) {
Coord lastCoord = null;
// 各点を描画
for (Coord _c : coords) {
if (lastCoord == null) {
_c.paint(g);
}
lastCoord = _c;
}
// 線分内の点で配列を形成
int n = coords.size();
int size = coords.get(0).w;
int[] xp = new int[n];
int[] yp = new int[n];
for (int i = 0; i < n; i++) {
xp[i] = coords.get(i).x;
yp[i] = coords.get(i).y;
}
// ポリラインで線分を描画
BasicStroke bs = new BasicStroke(size);
g2.setStroke(bs);
g2.drawPolyline(xp, yp, n);
}
// 描画中の点あり なら 描画
if (c != null)
c.paint(g);
// info用
ArrayList<String> info = new ArrayList<>();
// 説明を追加
info.add("~How to Use~");
info.add("・Left: " + getStringColor(color) + " Cicle");
info.add("・Right: While Circle");
info.add("・Center: Move");
info.add("・Scroll: Size(" + this.size + ")");
info.add("");
info.add("1 : 黒");
info.add("2 : 赤");
info.add("3 : 青");
info.add("4 : 水");
info.add("5 : 薄桃");
info.add("6 : 灰");
info.add("7 : 緑");
info.add("8 : 黄");
info.add("9 : 桃");
info.add("0 : 橙");
// 文字色は黒
g.setColor(Color.BLACK);
// 説明を記述
for (int i = 0; i < info.size(); i++) {
g.drawString(info.get(i), 10, 50 + (i * 15));
}
// カウント情報等を表示
showCount();
}
@Override
public void mousePressed(MouseEvent e) {
if (isDrawLock)
return;
this.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
if (otherList.get(0) instanceof Checkbox) {
Checkbox isFillCheckbox = (Checkbox)otherList.get(0);
isFill = isFillCheckbox.getState();
}
Checkbox cb = cbg.getSelectedCheckbox();
if (cb == cgCheckBoxList.get(0)) {
c = new Dot();
mode = 0;
} else if (cb == cgCheckBoxList.get(1)) {
c = new Circle();
mode = 1;
} else if (cb == cgCheckBoxList.get(2)) {
c = new Box();
mode = 1;
} else if (cb == cgCheckBoxList.get(3)) {
c = new Line(this.size);
mode = 3;
} else {
c = new Dot();
mode = 0;
}
// 中央
if (e.getButton() == MouseEvent.BUTTON2) {
// null => 全体移動用
mode = 2;
this.setCursor(new Cursor(Cursor.HAND_CURSOR));
}
// 右
else if (e.getButton() == MouseEvent.BUTTON3) {
// 消しゴム用四角
c = new Dot(true);
mode = 4;
}
// 描画中の点があるなら
if (c != null) {
// 点を移動させ、座標を書き換え
c.moveto(e.getX(), e.getY());
c.setWH(size, size);
c.color = this.color;
c.isFill = this.isFill;
}
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
@Override
public void mouseReleased(MouseEvent e) {
if (isDrawLock)
return;
this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
if (mode != 2 && c != null) {
// 点を深層クローン
Figure _Coord = c.clone();
// 線分に追加
coords.add(_Coord);
// サイズを引き継ぎ
c.setWH(size, size);
// 色を引き継ぎ
c.color = this.color;
// 線分リストに線分を追加
coordsList.add(coords);
historyAdd();
}
if (c != null && (mode == 1 || mode == 3)) {
c.moveto(e.getX(), e.getY());
if (mode == 3) {
c.width = this.size;
c.setWH(1, 1);
}
}
// 線分を初期化
coords = new LinkedList<>();
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
@Override
public void mouseClicked(MouseEvent e) {
}
@Override
public void mouseEntered(MouseEvent e) {
}
@Override
public void mouseExited(MouseEvent e) {
}
@Override
public void mouseDragged(MouseEvent e) {
if (isDrawLock)
return;
// 全体移動用なら
if (mode == 2) {
// 動いた量
int moveX = e.getX() - this.x;
int moveY = e.getY() - this.y;
// 線分リストがあるなら
if (coordsList.size() > 0) {
// 線分リストをループ
for (LinkedList<Figure> coords : coordsList) {
// 線分があるなら
if (coords.size() > 0) {
// 線分をループ
for (Coord _c : coords) {
// 点を移動
_c.move(moveX, moveY);
}
}
}
}
// 線分があるなら
if (coords.size() > 0) {
// 線分をループ
for (Coord _c : coords) {
// 点を移動
_c.move(moveX, moveY);
}
}
if (c != null) {
// マウスが動いた分移動させる
c.move(e.getX() - x, e.getY() - y);
}
} else if (mode == 1 || mode == 3) {
c.setWH(x -= c.x, y - c.y);
}
// 描画中の点があるなら
else if (c != null) {
// 点を深層クローン
Figure _Coord = c.clone();
// 線分に追加
coords.add(_Coord);
// サイズを引き継ぎ
c.setWH(size, size);
// 色を引き継ぎ
c.color = this.color;
// マウスが動いた分移動させる
c.move(e.getX() - x, e.getY() - y);
}
// 座標を更新
x = e.getX();
y = e.getY();
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
@Override
public void mouseMoved(MouseEvent e) {
if (isDrawLock)
return;
// 全体移動用なら
if (mode == 2) {
// サークルをインスタンス
c = new Circle();
// 移動、現在の設定を適応
c.moveto(e.getX(), e.getY());
// サイズを引き継ぎ
c.setWH(size, size);
// 色を引き継ぎ
c.color = this.color;
}
// 描画中の点があるなら
else if (c != null) {
if (mode == 1) {
c.moveto(e.getX(), e.getY());
} else {
// 点を移動
c.move(e.getX() - x, e.getY() - y);
}
} else {
// サークルをインスタンス
c = new Circle();
// 移動、現在の設定を適応
c.moveto(e.getX(), e.getY());
// サイズを引き継ぎ
c.setWH(size, size);
// 色を引き継ぎ
c.color = this.color;
}
// 座標を更新
x = e.getX();
y = e.getY();
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
/**
* コンソールに情報を表示
*/
public void showCount() {
// カウント初期化
int count = 0;
// 線分リストをループ
for (LinkedList<Figure> coords : coordsList) {
// 線分内の点の数を足す
count += coords.size();
}
// 描画中の線分の点の数を足す
count += coords.size();
// コンソールの現在の行の最初の文字まで戻る
clearConsole();
// 出力
System.out.print("Count : " + count);
System.out.print(", X : " + x);
System.out.print(", Y : " + y);
System.out.print(", W : " + size);
System.out.print(", H : " + size);
System.out.print(", Color : " + getStringColor(color));
System.out.print(", Mode : " + mode);
System.out.print(" ");
}
/**
* コンソールの現在の行の最初の文字まで戻る
*/
public void clearConsole() {
System.out.print("\r");
}
@Override
public void keyTyped(KeyEvent e) {
}
@Override
public void keyPressed(KeyEvent e) {
// 押されたキーを取得
int key = e.getKeyChar();
// もしキーが〇なら◇色にcolorを設定
if (key == '1')
color = Color.BLACK;
else if (key == '2')
color = Color.RED;
else if (key == '3')
color = Color.BLUE;
else if (key == '4')
color = Color.CYAN;
else if (key == '5')
color = Color.PINK;
else if (key == '6')
color = Color.GRAY;
else if (key == '7')
color = Color.GREEN;
else if (key == '8')
color = Color.YELLOW;
else if (key == '9')
color = Color.MAGENTA;
else if (key == '0')
color = Color.ORANGE;
else if (key == 'r' || key == 'R') {
if (isDrawLock)
return;
coordsList = new ArrayList<>();
coords = new LinkedList<>();
historyAdd();
}
// Mac : Command + Z + Shift
// Win : Ctrl + Z + Shift(じゃないの?) Ctrl + Z
else if ((((key == 'z' || key == 'Z' || key == 26) || e.getKeyCode() == 39) &&
((e.isMetaDown() || e.isControlDown())) &&
e.isShiftDown()) ||
((key == 'y' || key == 'Y' || key == 25) && e.isControlDown()))
redo();
// Mac : Command + (Z + <-)
// Win : Ctrl + (Z + <-)
else if (((key == 'z' || key == 'Z' || key == 26) || e.getKeyCode() == 37)
&& (e.isMetaDown() || e.isControlDown()))
undo();
// Mac : Command + Shift + S
// Win : Ctrl + Shift + s
else if ((key == 's' || key == 'S' || key == 19) && (e.isMetaDown() || e.isControlDown()) && e.isShiftDown()) {
if (saveNew()) {
JOptionPane.showMessageDialog(this, "新規保存しました。");
} else {
JOptionPane.showMessageDialog(this, "保存に失敗しました。");
}
return;
}
// Mac : Command + S
// Win : Ctrl + s
else if ((key == 's' || key == 'S' || key == 19) && (e.isMetaDown() || e.isControlDown())) {
if (save()) {
JOptionPane.showMessageDialog(this, "上書き保存しました。");
} else {
JOptionPane.showMessageDialog(this, "保存に失敗しました。");
}
return;
}
// Mac : Command + (Q or W)
// Win : Ctrl + (Q or W)
else if ((key == 'w' || key == 'W' || key == 'q' || key == 'Q' || key == 17 || key == 23)
&& (e.isMetaDown() || e.isControlDown())) {
if (isSaved || showSaveConfirmDialog()) {
dispose();
}
return;
}
// Mac : Command + N
// Win : Ctrl + N
else if ((key == 'n' || key == 'N' || key == 14) && (e.isMetaDown() || e.isControlDown())) {
if (isSaved || showSaveConfirmDialog()) {
load();
}
return;
} else
return;
// 色を変えるごとに保存 -> 需要ない
// if( coords.size() > 0 ) historyAdd();
// 線分を線分リストに追加
coordsList.add(coords);
// 線分を初期化
coords = new LinkedList<>();
// 色をセット
c.color = this.color;
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
@Override
public void keyReleased(KeyEvent e) {
}
@Override
public void mouseWheelMoved(MouseWheelEvent e) {
// マウスが動いた分 * マウスが動いた向き をsizeに足す
this.size += e.getScrollAmount() * e.getWheelRotation();
// サイズが1以下なら
if (this.size <= 1) {
// サイズを1にする」
this.size = 1;
}
// 描画中の点があるなら
if (c != null) {
// サイズを更新する
if (mode == 3)
c.width = this.size;
else
c.setWH(size, size);
// 色をセット
c.color = this.color;
}
// 線分を線分リストに追加
coordsList.add(coords);
// historyAdd();
// 線分を初期化
coords = new LinkedList<>();
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
@Override
public void actionPerformed(ActionEvent e) {
if (e.getActionCommand().equalsIgnoreCase("色を選択")) {
this.color = JColorChooser.showDialog(this, "色の選択", Color.BLACK);
this.customColor = this.color;
if (this.color == null)
this.color = Color.BLACK;
// 線分を線分リストに追加
coordsList.add(coords);
// historyAdd();
// 線分を初期化
coords = new LinkedList<>();
// 色をセット
c.color = this.color;
buttonList.get(0).setBackground(this.color);
colorList.get(colorList.size() - 1).setState(true);
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
} else if (e.getActionCommand().equalsIgnoreCase("Undo")) {
undo();
} else if (e.getActionCommand().equalsIgnoreCase("Redo")) {
redo();
} else if (e.getActionCommand().equalsIgnoreCase("読み込み")) {
if (isSaved || showSaveConfirmDialog()) {
load();
}
} else if (e.getActionCommand().equalsIgnoreCase("上書き保存")) {
save();
} else if (e.getActionCommand().equalsIgnoreCase("新規保存")) {
saveNew();
} else {
if (isSaved || showSaveConfirmDialog()) {
dispose();
}
}
updateHistoryButton();
}
public boolean save() {
boolean result = fileSave();
if (result)
isSaved = true;
return result;
}
public boolean saveNew() {
boolean result = fileSave(1);
if (result)
isSaved = true;
return result;
}
public void load() {
load(null);
}
public void load(String str) {
ArrayList<LinkedList<Figure>> _cooArrayList = new ArrayList<>(coordsList);
LinkedList<Figure> _coords = new LinkedList<>(coords);
coordsList = new ArrayList<>();
coords = new LinkedList<>();
boolean result = fileLoad(str);
if (result) {
offScreenImage = null;
repaint();
} else {
coordsList = _cooArrayList;
coords = _coords;
}
offScreenImage = null;
repaint();
}
public void updateHistoryButton() {
buttonList.get(1).setEnabled(historyCtrl.getNextUndo() != null);
buttonList.get(2).setEnabled(historyCtrl.getNextRedo() != null);
}
private void historyAdd() {
isSaved = false;
if (isUndoRedoLastTime) {
// 履歴に追加
ArrayList<LinkedList<Figure>> cloneCoordsList = new ArrayList<>(coordsList);
cloneCoordsList.remove(cloneCoordsList.size() - 1);
historyCtrl.add(cloneCoordsList);
historyCtrl.add(coordsList);
} else {
// 履歴に追加
historyCtrl.add(coordsList);
}
isUndoRedoLastTime = false;
}
private void undo() {
if (historyCtrl.getNextUndo() == null)
historyCtrl.undo();
if (historyCtrl.getNextUndo() != null && coordsList.size() == historyCtrl.getNextUndo().size())
historyCtrl.undo();
ArrayList<LinkedList<Figure>> _list = historyCtrl.undo();
isUndoRedoLastTime = true;
if (_list == null) {
coordsList = new ArrayList<>();
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
return;
} else {
coordsList = _list;
}
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
private void redo() {
if (historyCtrl.getNextRedo() == null)
return;
if (coordsList.size() == historyCtrl.getNextRedo().size())
historyCtrl.redo();
ArrayList<LinkedList<Figure>> _list = historyCtrl.redo();
isUndoRedoLastTime = true;
if (_list == null)
return;
coordsList = _list;
// オフスクリーンをリセット
offScreenImage = null;
// 再描画をリクエスト
repaint();
}
private boolean showSaveConfirmDialog() {
int choice = JOptionPane.showConfirmDialog(this, "保存しますか?", "確認", JOptionPane.YES_NO_CANCEL_OPTION);
if (choice == JOptionPane.YES_OPTION) {
if (save()) {
isSaved = true;
return true;
} else {
return false;
}
} else
return choice == JOptionPane.NO_OPTION;
}
@Override
public void itemStateChanged(ItemEvent e) {
if (e.getItemSelectable() instanceof Checkbox) {
Checkbox checkbox = (Checkbox) e.getItemSelectable();
// 色選択ボックス