-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDPGenGUI.java
1398 lines (1300 loc) · 62.1 KB
/
DPGenGUI.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
import javax.imageio.ImageIO;
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import java.awt.*;
import java.awt.datatransfer.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.io.*;
import java.util.Random;
import java.util.Vector;
import javax.swing.filechooser.FileNameExtensionFilter;
public class DPGenGUI extends JFrame implements ClipboardOwner, ActionListener {
private static final long serialVersionUID = 1L;
final JList elementList;
private final Vector<String> elements;
private final JLabel imageLabel;
final JPanel mainCardPanel;
final CardLayout mainCardLayout;
final JTextField nameField;
final JTextArea articleArea;
final JTextField titleField;
final JTextField imageTextField;
public static final Color PICTURE_BLOCK_COLOR = new Color(50, 50, 50);
public static final Color DEFAULT_BACKGROUND_COLOR = new Color(243, 243, 243);
public static final Color DEFAULT_TEXT_COLOR = new Color(0, 0, 0);
private static final Color DEFAULT_COMMON_ARTICLE_COLOR = DEFAULT_BACKGROUND_COLOR;
public static Color pictureBoundColor = new Color(0, 0, 0);
static Color backgroundColor = DEFAULT_BACKGROUND_COLOR;
static Color textColor = new Color(0, 0, 0);
Color nameColor;
public static final Color HEADER_COLOR = new Color(200, 200, 200);
public static final int POST_NAME_MAX_SIZE = 22;
public static final int TITLE_MAX_SIZE = 32;
public static final int PICTURE_COMMENT_MAX_SIZE = 100;
static Font textFont;
static Font commentFont;
static Font headerFont;
private static Font postNameFont;
static int lineSize = 59;
static final int pictureDescriptionLineSize = 33;
static final int width = 600;
Vector<MaterialBlock> materialBlocks;
String name;
private int longPostSize;
private BufferedImage result;
final JLabel imageOnEditLabel;
Image currentImage;
MaterialBlock selectedBlock;
int selectedIndex;
private final JButton applyTitle;
private final JButton applyName;
Color commonArticleBackgroundColor;
private static DPGenGUI singleGenGUI;
Vector<String> signature;
Color signatureColor;
final JTextField signatureField;
final JTextField textSizeField;
static Color thematicColor;
private final JPopupMenu popupMenu;
private final JMenuItem popupBackColorItem;
private final JMenuItem popupTextColorItem;
static int style;
final ElementFactory elementFactory;
final JList styleSelectionList;
final Vector<String> listOfStyles;
private final JMenu rotateMenu;
private final JMenu alignMenu;
private JCheckBoxMenuItem borderItem;
private ProjectInformation lastProjectCondition;
private ProjectInformation currentProjectCondition;
private static String OS = System.getProperty("os.name").toLowerCase();
private boolean madeChange;
final int textArticleWidth = width - 20;
private DPGenGUI(){
super("Генератор длиннопостов от yiotro ;)");
MyButtonListener myButtonListener = new MyButtonListener(this);
MyListSelectionListener myListSelectionListener = new MyListSelectionListener(this);
MyImageMouseListener imageMouseListener = new MyImageMouseListener(this);
MyStyleSelectionListener styleSelectionListener = new MyStyleSelectionListener(this);
madeChange = false;
elementFactory = new ElementFactory(ElementFactory.STYLE_ORIGINAL);
Random random = new Random();
setFont(new Font("Dialog", Font.PLAIN, 15));
longPostSize = 1000;
name = "";
textFont = new Font("Arial", Font.PLAIN, 18);
postNameFont = new Font("Arial", Font.PLAIN, 48);
commentFont = textFont.deriveFont(14f);
headerFont = new Font("Arial", Font.BOLD, 28);
selectedIndex = -1;
commonArticleBackgroundColor = backgroundColor;
nameColor = new Color(0, 0, 0);
signatureColor = new Color(100, 100, 100);
signature = new Vector<String>();
thematicColor = new Color(0, 0, 0);
style = ElementFactory.STYLE_ORIGINAL;
listOfStyles = new Vector<String>();
listOfStyles.add("Original style");
listOfStyles.add("Basic style");
listOfStyles.add("Dark style");
listOfStyles.add("Lonely42Luckily");
listOfStyles.add("Pictures only style");
listOfStyles.add("Line style");
materialBlocks = new Vector<MaterialBlock>();
lastProjectCondition = new ProjectInformation(getAsPiBlocks(), "", backgroundColor,
textColor, commonArticleBackgroundColor, nameColor, thematicColor, textFont, style, new Vector<String>());
currentProjectCondition = new ProjectInformation(getAsPiBlocks(), "", backgroundColor,
textColor, commonArticleBackgroundColor, nameColor, thematicColor, textFont, style, new Vector<String>());
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ignored) {}
Container c = getContentPane();
JPanel leftPanel = new JPanel(null, true);
leftPanel.setPreferredSize(new Dimension(300, 800));
JPanel rightPanel = new JPanel(null, true);
rightPanel.setPreferredSize(new Dimension(200, 800));
JPanel centerPanel = new JPanel(null, true);
centerPanel.setBackground(Color.GRAY);
c.add(leftPanel, BorderLayout.WEST);
c.add(rightPanel, BorderLayout.EAST);
Font buttonFont = new Font("Dialog", Font.PLAIN, 20);
//left panel
JButton optionsButton = new JButton("Настройки поста");
optionsButton.setBounds(10, 10, 280, 50);
optionsButton.setFont(buttonFont);
optionsButton.addActionListener(myButtonListener);
leftPanel.add(optionsButton);
JButton createNewArticleButton = new JButton("Создать абзац");
createNewArticleButton.setBounds(10, 70, 280, 50);
createNewArticleButton.setFont(buttonFont);
createNewArticleButton.addActionListener(myButtonListener);
leftPanel.add(createNewArticleButton);
JButton createNewTitleButton = new JButton("Создать заголовок");
createNewTitleButton.setBounds(10, 130, 280, 50);
createNewTitleButton.setFont(buttonFont);
createNewTitleButton.addActionListener(myButtonListener);
leftPanel.add(createNewTitleButton);
JButton createNewPictureButton = new JButton("Создать картинку");
createNewPictureButton.setBounds(10, 190, 280, 50);
createNewPictureButton.setFont(buttonFont);
createNewPictureButton.addActionListener(myButtonListener);
leftPanel.add(createNewPictureButton);
//now right panel
elements = new Vector<String>();
elementList = new JList(elements);
elementList.addListSelectionListener(myListSelectionListener);
JScrollPane elementPane = new JScrollPane(elementList);
elementPane.setBounds(5, 115, 190, 300);
rightPanel.add(elementPane);
JLabel editLabel = new JLabel("Редактирование элемента");
editLabel.setBounds(10, 5, 190, 20);
rightPanel.add(editLabel);
JButton deleteButton = new JButton("Удалить");
deleteButton.setBounds(5, 25, 190, 25);
deleteButton.addActionListener(myButtonListener);
rightPanel.add(deleteButton);
JButton cloneButton = new JButton("Клонировать");
cloneButton.setBounds(5, 85, 190, 25);
cloneButton.addActionListener(myButtonListener);
rightPanel.add(cloneButton);
JButton moveUpButton = new JButton("Выше");
moveUpButton.setBounds(5, 55, 95, 25);
moveUpButton.addActionListener(myButtonListener);
rightPanel.add(moveUpButton);
JButton moveDownButton = new JButton("Ниже");
moveDownButton.setBounds(100, 55, 95, 25);
moveDownButton.addActionListener(myButtonListener);
rightPanel.add(moveDownButton);
JLabel styleLabel = new JLabel("Стили");
styleLabel.setBounds(5, 420, 190, 25);
rightPanel.add(styleLabel);
styleSelectionList = new JList();
styleSelectionList.addListSelectionListener(styleSelectionListener);
styleSelectionList.setListData(listOfStyles);
JScrollPane styleScrollPane = new JScrollPane(styleSelectionList);
styleScrollPane.setBounds(5, 445, 190, 190);
rightPanel.add(styleScrollPane);
//center panel
JScrollPane centerScrollPane = new JScrollPane(centerPanel);
c.add(centerScrollPane, BorderLayout.CENTER);
Image emptyPost = new BufferedImage(width, 630, BufferedImage.TYPE_INT_ARGB);
Graphics graphics = emptyPost.getGraphics();
graphics.setColor(Color.DARK_GRAY);
graphics.fillRect(0, 0, width, 1000);
ImageIcon icon = new ImageIcon(emptyPost);
imageLabel = new JLabel(icon);
imageLabel.setOpaque(true);
imageLabel.setBackground(Color.DARK_GRAY);
imageLabel.addMouseListener(imageMouseListener);
centerPanel.setLayout(new BorderLayout());
centerScrollPane.getVerticalScrollBar().setUnitIncrement(16);
centerPanel.add(imageLabel);
//context menu
popupMenu = new JPopupMenu();
Vector<String> popupMenuNames = new Vector<String>();
popupMenuNames.add("Удалить");
popupMenuNames.add("Выше");
popupMenuNames.add("Ниже");
popupMenuNames.add("Клонировать");
for (String popupName : popupMenuNames) {
JMenuItem item = new JMenuItem(popupName);
item.addActionListener(myButtonListener);
popupMenu.add(item);
}
popupBackColorItem = new JMenuItem("Задать цвет фона");
popupBackColorItem.addActionListener(myButtonListener);
popupMenu.add(popupBackColorItem);
popupTextColorItem = new JMenuItem("Задать цвет текста");
popupTextColorItem.addActionListener(myButtonListener);
popupMenu.add(popupTextColorItem);
JMenu selectStyleItem = new JMenu("Стиль элемента");
for (String styleName : listOfStyles) {
JMenuItem item = new JMenuItem(styleName);
item.setActionCommand(styleName);
item.addActionListener(styleSelectionListener);
selectStyleItem.add(item);
}
popupMenu.add(selectStyleItem);
rotateMenu = new JMenu("Повернуть");
Vector<String> rotateList = new Vector<String>();
rotateList.add("По часовой");
rotateList.add("Против часовой");
rotateList.add("Вверх ногами");
for (String rotateOption : rotateList) {
JMenuItem item = new JMenuItem(rotateOption);
item.setActionCommand(rotateOption);
item.addActionListener(myButtonListener);
rotateMenu.add(item);
}
popupMenu.add(rotateMenu);
alignMenu = new JMenu("Выравнивание текста");
Vector<String> alignList = new Vector<String>();
Vector<String> alignCommandList = new Vector<String>();
alignList.add("Слева"); alignCommandList.add("align text left");
alignList.add("По центру"); alignCommandList.add("align text center");
alignList.add("Справа"); alignCommandList.add("align text right");
int k = 0;
for (String alignOption : alignList) {
JMenuItem item = new JMenuItem(alignOption);
item.setActionCommand(alignCommandList.get(k));
item.addActionListener(myButtonListener);
alignMenu.add(item);
k++;
}
popupMenu.add(alignMenu);
borderItem = new JCheckBoxMenuItem("Обводка");
borderItem.setActionCommand("switch border");
borderItem.addActionListener(myButtonListener);
popupMenu.add(borderItem);
//main card panel
mainCardPanel = new JPanel();
mainCardLayout = new CardLayout();
mainCardPanel.setLayout(mainCardLayout);
mainCardPanel.setBounds(10, 250, 280, 400);
leftPanel.add(mainCardPanel);
JPanel emptyPanel = new JPanel();
mainCardPanel.add(emptyPanel, "empty");
mainCardLayout.show(mainCardPanel, "empty");
//options for post panel
JPanel optionsPanel = new JPanel();
optionsPanel.setLayout(null);
JLabel nameLabel = new JLabel("Имя поста");
nameLabel.setBounds(5, 5, 80, 20);
optionsPanel.add(nameLabel);
nameField = new JTextField("", 20);
nameField.setBounds(90, 5, 185, 25);
nameField.setActionCommand("name");
nameField.addActionListener(this);
optionsPanel.add(nameField);
applyName = new JButton("Применить имя");
applyName.addActionListener(myButtonListener);
applyName.setBounds(5, 30, 150, 25);
optionsPanel.add(applyName);
JButton changeNameColor = new JButton("Цвет имени");
changeNameColor.addActionListener(myButtonListener);
changeNameColor.setBounds(160, 30, 115, 25);
optionsPanel.add(changeNameColor);
JButton applyBackgroundColor = new JButton("Задать фон");
applyBackgroundColor.setActionCommand("apply post background color");
applyBackgroundColor.addActionListener(myButtonListener);
applyBackgroundColor.setBounds(5, 60, 115, 25);
optionsPanel.add(applyBackgroundColor);
JButton applyTextColor = new JButton("Задать цвет текста");
applyTextColor.setActionCommand("apply post text color");
applyTextColor.addActionListener(myButtonListener);
applyTextColor.setBounds(125, 60, 150, 25);
optionsPanel.add(applyTextColor);
JButton setCommonArticleBackgroundColor = new JButton("Задать общий цвет абзацев");
setCommonArticleBackgroundColor.setActionCommand("set common article color");
setCommonArticleBackgroundColor.addActionListener(myButtonListener);
setCommonArticleBackgroundColor.setBounds(5, 90, 270, 25);
optionsPanel.add(setCommonArticleBackgroundColor);
JLabel labelSignature = new JLabel("Подпись");
labelSignature.setBounds(5, 130, 270, 25);
optionsPanel.add(labelSignature);
signatureField = new JTextField(getStringFromStringVector(signature));
signatureField.setActionCommand("Применить");
signatureField.addActionListener(myButtonListener);
signatureField.setBounds(5, 150, 270, 25);
optionsPanel.add(signatureField);
JButton applySignatureButton = new JButton("Применить подпись");
if (isMac()) applySignatureButton.setText("Применить");
applySignatureButton.setActionCommand("apply signature");
applySignatureButton.addActionListener(myButtonListener);
applySignatureButton.setBounds(5, 180, 140, 25);
optionsPanel.add(applySignatureButton);
JButton setSignatureColorButton = new JButton("Цвет подписи");
setSignatureColorButton.addActionListener(myButtonListener);
setSignatureColorButton.setBounds(150, 180, 125, 25);
optionsPanel.add(setSignatureColorButton);
JButton applyTextSize = new JButton("Размер текста");
applyTextSize.addActionListener(myButtonListener);
applyTextSize.setBounds(5, 210, 150, 25);
optionsPanel.add(applyTextSize);
textSizeField = new JTextField(String.valueOf(textFont.getSize()));
textSizeField.setBounds(160, 210, 115, 25);
textSizeField.addActionListener(myButtonListener);
textSizeField.setActionCommand("Задать размер текста");
optionsPanel.add(textSizeField);
JButton applyThematicColor = new JButton("Задать тематический цвет поста O_o");
applyThematicColor.addActionListener(myButtonListener);
applyThematicColor.setBounds(5, 240, 270, 25);
optionsPanel.add(applyThematicColor);
JButton buttonChooseFont = new JButton("Все шрифты");
buttonChooseFont.setActionCommand("choose font");
buttonChooseFont.addActionListener(myButtonListener);
buttonChooseFont.setBounds(5, 270, 120, 25);
optionsPanel.add(buttonChooseFont);
JButton buttonLoadFont = new JButton("Шрифт из файла");
buttonLoadFont.setActionCommand("load font");
buttonLoadFont.addActionListener(myButtonListener);
buttonLoadFont.setBounds(130, 270, 145, 25);
optionsPanel.add(buttonLoadFont);
mainCardPanel.add(optionsPanel, "options");
//edit article panel
JPanel editArticlePanel = new JPanel();
editArticlePanel.setLayout(null);
JLabel articleLabel = new JLabel("Текст абзаца");
articleLabel.setBounds(5, 5, 120, 20);
editArticlePanel.add(articleLabel);
articleArea = new JTextArea("", lineSize, 5);
articleArea.setLineWrap(true);
JScrollPane tempScrollPane = new JScrollPane(articleArea);
tempScrollPane.setBounds(5, 30, 270, 300);
articleArea.setFont(c.getFont());
editArticlePanel.add(tempScrollPane);
JButton applyArticle = new JButton("Применить абзац");
applyArticle.addActionListener(myButtonListener);
applyArticle.setBounds(5, 335, 270, 25);
editArticlePanel.add(applyArticle);
JButton changeArticleBackgroundColor = new JButton("Задать цвет фона");
if (isMac()) changeArticleBackgroundColor.setText("Цвет фона");
changeArticleBackgroundColor.addActionListener(myButtonListener);
changeArticleBackgroundColor.setActionCommand("change article background color");
changeArticleBackgroundColor.setBounds(5, 365, 130, 25);
editArticlePanel.add(changeArticleBackgroundColor);
JButton changeArticleTextColor = new JButton("Задать цвет текста");
if (isMac()) changeArticleTextColor.setText("Цвет текста");
changeArticleTextColor.addActionListener(myButtonListener);
changeArticleTextColor.setActionCommand("change article text color");
changeArticleTextColor.setBounds(140, 365, 135, 25);
editArticlePanel.add(changeArticleTextColor);
JButton trimArticleButton = new JButton("Схлопнуть абзац");
if (isMac()) trimArticleButton.setText("Схлопнуть");
trimArticleButton.addActionListener(myButtonListener);
trimArticleButton.setActionCommand("trim article");
trimArticleButton.setBounds(150, 5, 125, 25);
editArticlePanel.add(trimArticleButton);
mainCardPanel.add(editArticlePanel, "article");
//edit title panel
JPanel editTitlePanel = new JPanel();
JLabel titleLabel = new JLabel("Заголовок");
titleLabel.setBounds(5, 5, 150, 20);
editTitlePanel.add(titleLabel);
titleField = new JTextField("заголовок", 20);
titleField.setBounds(5, 30, 100, 25);
titleField.setActionCommand("title");
titleField.addActionListener(this);
editTitlePanel.add(titleField);
applyTitle = new JButton("Применить заголовок");
applyTitle.addActionListener(myButtonListener);
// applyTitle.setBounds(5, 60, 290, 25);
editTitlePanel.add(applyTitle);
JButton changeTitleColor = new JButton("Цвет заголовка");
changeTitleColor.addActionListener(myButtonListener);
editTitlePanel.add(changeTitleColor);
mainCardPanel.add(editTitlePanel, "title");
//edit picture panel
JPanel editImagePanel = new JPanel();
editImagePanel.setLayout(null);
JLabel editImageLabel = new JLabel("Скопируйте картинку и нажмите -->");
if (isMac()) editImageLabel.setText("Скопируйте картинку");
editImageLabel.setBounds(5, 5, 200, 20);
editImagePanel.add(editImageLabel);
JButton pasteImageButton = new JButton("Вставить");
pasteImageButton.setBounds(195, 0, 80, 25);
pasteImageButton.addActionListener(myButtonListener);
editImagePanel.add(pasteImageButton);
imageOnEditLabel = new JLabel();
imageOnEditLabel.setBounds(5, 25, 270, 270);
Image image = new BufferedImage(300, 300, BufferedImage.TYPE_INT_ARGB);
Graphics gr = image.getGraphics();
gr.setColor(Color.LIGHT_GRAY);
gr.fillRect(0, 0, 300, 300);
ImageIcon imageIcon = new ImageIcon(image);
imageOnEditLabel.setIcon(imageIcon);
editImagePanel.add(imageOnEditLabel);
imageTextField = new JTextField("Надпись на картинке", 20);
imageTextField.setBounds(5, 300, 270, 25);
editImagePanel.add(imageTextField);
JButton applyImage = new JButton("Применить картинку");
applyImage.addActionListener(myButtonListener);
applyImage.setBounds(5, 330, 270, 25);
editImagePanel.add(applyImage);
JButton addImageFromFileButton = new JButton("Добавить картинку из папки");
addImageFromFileButton.addActionListener(myButtonListener);
addImageFromFileButton.setBounds(5, 360, 270, 25);
editImagePanel.add(addImageFromFileButton);
mainCardPanel.add(editImagePanel, "picture");
//menu bar
MenuBar menuBar = new MenuBar();
setMenuBar(menuBar);
Menu main = new Menu("Файл");
menuBar.add(main);
Vector<String> menuItemNames = new Vector<String>();
menuItemNames.add("Сохранить");
menuItemNames.add("Загрузить");
menuItemNames.add("Обновить пост");
menuItemNames.add("Новый пост");
menuItemNames.add("Экспорт в PNG");
menuItemNames.add("Помощь, епта");
menuItemNames.add("Отмена");
menuItemNames.add("Quit");
Vector<MenuItem> menuItems = new Vector<MenuItem>();
for (String name : menuItemNames) {
MenuItem menuItem = new MenuItem(name);
main.add(menuItem);
menuItems.add(menuItem);
}
Vector<MenuShortcut> menuShortcuts = new Vector<MenuShortcut>();
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_S, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_O, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_R, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_N, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_E, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_H, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_Z, false));
menuShortcuts.add(new MenuShortcut(KeyEvent.VK_Q, false));
int size = Math.min(menuItems.size(), menuShortcuts.size());
for (int i=0; i<size; i++) {
menuItems.get(i).setShortcut(menuShortcuts.get(i));
menuItems.get(i).addActionListener(myButtonListener);
}
setBounds(50, 20, 1200, 700);
setVisible(true);
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
}
public static void setBackgroundColor(Color backgroundColor) {
DPGenGUI.backgroundColor = backgroundColor;
DPGenGUI.singleGenGUI.signatureColor = backgroundColor.darker().darker();
}
void setStyle(int style) {
DPGenGUI.style = style;
elementFactory.setStyle(style);
Vector<MaterialBlock> copies = new Vector<MaterialBlock>();
for (MaterialBlock materialBlock : materialBlocks) {
copies.add(elementFactory.copyOfElement(materialBlock, style));
}
materialBlocks = new Vector<MaterialBlock>();
elementList.clearSelection();
elementList.removeAll();
elementList.updateUI();
elements.removeAllElements();
clearSelection();
Color backgroundArticleColor = elementFactory.getArticleBackgroundOfStyle();
for (MaterialBlock copy : copies) {
if (copy instanceof Article) ((Article) copy).setBackgroundColor(backgroundArticleColor);
addElement(copy, false);
}
setTextColor(elementFactory.getTextColorOfStyle());
setBackgroundColor(elementFactory.getBackgroundColorOfStyle());
if (style == ElementFactory.STYLE_LONELY_LUCKILY) {
textFont = textFont.deriveFont(16.0f);
refreshLineSize();
}
compose(false);
}
public void setStyleByString(String nameOfStyle) {
setStyle(getStyleByName(nameOfStyle));
}
int getStyleByName(String nameOfStyle) {
if (nameOfStyle.equals(listOfStyles.get(0))) return ElementFactory.STYLE_ORIGINAL;
else if (nameOfStyle.equals(listOfStyles.get(1))) return ElementFactory.STYLE_BASIC;
else if (nameOfStyle.equals(listOfStyles.get(2))) return ElementFactory.STYLE_DARK;
else if (nameOfStyle.equals(listOfStyles.get(3))) return ElementFactory.STYLE_LONELY_LUCKILY;
else if (nameOfStyle.equals(listOfStyles.get(4))) return ElementFactory.STYLE_PICTURES_ONLY;
else if (nameOfStyle.equals(listOfStyles.get(5))) return ElementFactory.STYLE_LINES;
//if bad name of style
System.out.println("tried to get style by name but failed");
return ElementFactory.STYLE_ORIGINAL;
}
public void setStyleOfSelectedBlockByString(String nameOfStyle) {
if (selectedBlock == null) return;
if (selectedIndex < 0 || selectedIndex >= materialBlocks.size()) return;
if (materialBlocks.size() < 1) return;
MaterialBlock copy = elementFactory.copyOfElement(selectedBlock, getStyleByName(nameOfStyle));
materialBlocks.add(selectedIndex, copy);
materialBlocks.remove(selectedBlock);
copy.refreshHeight();
compose();
}
public void setCommonArticleBackgroundColor(Color commonArticleBackgroundColor) {
this.commonArticleBackgroundColor = commonArticleBackgroundColor;
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article) {
((Article) materialBlock).setBackgroundColor(commonArticleBackgroundColor);
}
}
compose(false);
}
public void setThematicColor(Color thematicColor) {
DPGenGUI.thematicColor = thematicColor;
pictureBoundColor = thematicColor;
}
public void refreshLineSize() {
BufferedImage bufferedImage = new BufferedImage(width, 100, BufferedImage.TYPE_INT_ARGB);
Graphics2D graphics = (Graphics2D) bufferedImage.getGraphics();
graphics.setFont(textFont);
FontMetrics metrics = graphics.getFontMetrics();
String biggestLine = "";
Article articleWithBiggestLine = null;
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article) {
for (String currentLine : ((Article) materialBlock).article) {
if (metrics.stringWidth(currentLine) > metrics.stringWidth(biggestLine)) {
biggestLine = currentLine;
articleWithBiggestLine = (Article) materialBlock;
}
}
}
}
if (articleWithBiggestLine == null) {
lineSize = howManySymbolsFitInWidth(textArticleWidth, textFont, "");
} else {
lineSize = biggestLine.length();
}
String subBiggestLine = biggestLine;
while (metrics.stringWidth(subBiggestLine) > textArticleWidth) {
lineSize--;
subBiggestLine = biggestLine.substring(0, Math.min(lineSize - 1, biggestLine.length()));
}
}
public void refreshLineSizeOldAndBuggy() {
String maximumText = "";
String currentText = "";
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article) {
currentText = getStringFromStringVector(((Article) materialBlock).article, false);
if (currentText.length() > maximumText.length()) maximumText = currentText;
}
}
lineSize = howManySymbolsFitInWidth(textArticleWidth, textFont, maximumText);
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article) {
((Article) materialBlock).refreshArticleLines();
}
}
if (result == null) return;
while (findBiggestLineLengthInPixels() > width - 20) {
trimLineSizeIteration();
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article)
((Article) materialBlock).trimArticle();
}
}
}
int findBiggestLineLengthInPixels() {
if (result == null) return 0;
Graphics graphics = result.getGraphics();
graphics.setFont(textFont);
FontMetrics metrics = graphics.getFontMetrics();
String biggestLine = "";
int biggestWidth = 0;
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article) {
for (String currentLine : ((Article) materialBlock).article) {
if (metrics.stringWidth(currentLine) > metrics.stringWidth(biggestLine)) {
biggestLine = currentLine;
biggestWidth = metrics.stringWidth(currentLine);
}
}
}
}
return biggestWidth;
}
void trimLineSizeIteration() {
// lineSize can be too big, so we let's find biggest line and trim lineSize
Graphics graphics = result.getGraphics();
graphics.setFont(textFont);
FontMetrics metrics = graphics.getFontMetrics();
String biggestLine = "";
Article articleWithBiggestLine = null;
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article) {
for (String currentLine : ((Article) materialBlock).article) {
if (metrics.stringWidth(currentLine) > metrics.stringWidth(biggestLine)) {
biggestLine = currentLine;
articleWithBiggestLine = (Article) materialBlock;
}
}
}
}
//if null then let's just return from this method
if (articleWithBiggestLine == null) return;
System.out.println(biggestLine);
//We have found biggest line, now let's trim
Article copyOfArticleWithBiggestLine = (Article) elementFactory.copyOfElement(articleWithBiggestLine);
while (true) {
lineSize--;
copyOfArticleWithBiggestLine.trimArticle();
biggestLine = "";
for (String currentLine : copyOfArticleWithBiggestLine.article) {
if (currentLine.length() > biggestLine.length()) biggestLine = currentLine;
}
int currentWidth = metrics.stringWidth(biggestLine);
if (currentWidth < textArticleWidth) {
break;
}
}
}
void undoAction() {
if (lastProjectCondition != null) {
clearPost(false);
setProjectByProjectInformation(lastProjectCondition);
compose(false);
}
}
private static String generateStringByLength(int length, String text) {
StringBuilder buffer = new StringBuilder();
if (length > text.length()) {
for (int i=0; i<length; i++) {
buffer.append("e");
}
} else {
buffer.append(text.substring(0, length));
}
return buffer.toString();
}
public static void setTextColor(Color textColor) {
DPGenGUI.textColor = textColor;
}
public void refreshTextColorOfArticles() {
for (MaterialBlock materialBlock : materialBlocks) {
if (materialBlock instanceof Article)
((Article) materialBlock).setTextColor(textColor);
}
}
public void askIfUserWantsToCloseProgram() {
if (!madeChange) System.exit(0);
Object[] options = {"Выйти", "Сохранить и выйти", "Отмена"};
int n = JOptionPane.showOptionDialog(singleGenGUI, "Выйти без сохранения?", "", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[2]);
switch (n) {
case JOptionPane.YES_OPTION: System.exit(0); break;
case JOptionPane.NO_OPTION:
savePost();
System.exit(0);
break;
}
}
public static void main(String args[]){
singleGenGUI = new DPGenGUI();
singleGenGUI.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent ev){
singleGenGUI.askIfUserWantsToCloseProgram();
}
});
}
public static DPGenGUI getSingleGenGUI() {
return singleGenGUI;
}
public void clearPost(boolean reDraw) {
materialBlocks = new Vector<MaterialBlock>();
elementList.clearSelection();
elementList.removeAll();
elementList.updateUI();
elements.removeAllElements();
clearSelection();
backgroundColor = DEFAULT_BACKGROUND_COLOR;
textColor = DEFAULT_TEXT_COLOR;
commonArticleBackgroundColor = DEFAULT_COMMON_ARTICLE_COLOR;
name = "";
signature = new Vector<String>();
if (reDraw) compose();
}
@Override
public void actionPerformed(ActionEvent e) {
String command = e.getActionCommand();
if (command.equals("title")) {
applyTitle.doClick();
} else if (command.equals("name")) {
applyName.doClick();
}
}
void exportToPNG() {
boolean mc = madeChange;
compose();
madeChange = mc;
if (isMac()) {
FileDialog dialog = new FileDialog(this, "Экспорт", FileDialog.SAVE);
dialog.setFile("Оригинальное название");
dialog.setVisible(true);
String fileName = dialog.getFile();
if (fileName == null) {
System.out.println("Error exporting file");
} else {
try {
File file = new File(dialog.getDirectory() + fileName + ".png");
ImageIO.write(result, "png", file);
} catch (Exception ignored) {
ignored.printStackTrace();
}
}
return;
}
JFileChooser chooser = new JFileChooser(".");
FileFilter type1 = new FileNameExtensionFilter("Image file", ".png");
chooser.setAcceptAllFileFilterUsed(false);
chooser.addChoosableFileFilter(type1);
int returnVal = chooser.showSaveDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
try {
File file = new File(chooser.getSelectedFile() + ".png");
ImageIO.write(result, "png", file);
} catch (Exception e) {
e.printStackTrace();
}
}
}
void memorizeCurrentProjectCondition() {
madeChange = true;
copyProjectInformation(currentProjectCondition, lastProjectCondition);
currentProjectCondition.blocks = getAsPiBlocks();
currentProjectCondition.projectName = name;
currentProjectCondition.backgroundColor = backgroundColor;
currentProjectCondition.textColor = textColor;
currentProjectCondition.commonArticleColor = commonArticleBackgroundColor;
currentProjectCondition.nameColor = nameColor;
currentProjectCondition.thematicColor = thematicColor;
currentProjectCondition.textFont = textFont;
currentProjectCondition.style = style;
currentProjectCondition.sign = new Vector<String>();
for (String line : signature) currentProjectCondition.sign.add(line);
}
private void copyProjectInformation(ProjectInformation src, ProjectInformation dst) {
dst.blocks = src.blocks;
dst.projectName = new String(src.projectName);
dst.backgroundColor = new Color(src.backgroundColor.getRGB());
dst.textColor = new Color(src.textColor.getRGB());
dst.commonArticleColor = new Color(src.commonArticleColor.getRGB());
dst.nameColor = new Color(src.nameColor.getRGB());
dst.thematicColor = new Color(src.thematicColor.getRGB());
dst.textFont = new Font(src.textFont.getName(), src.textFont.getStyle(), src.textFont.getSize());
dst.style = src.style;
dst.sign = new Vector<String>();
for (String line : src.sign) dst.sign.add(line);
}
void savePost() {
if (isMac()) {
FileDialog dialog = new FileDialog(this, "Сохранить файл", FileDialog.SAVE);
dialog.setFile("Оригинальное название");
dialog.setVisible(true);
String fileName = dialog.getFile();
if (fileName == null) {
System.out.println("Error saving file");
} else {
try {
madeChange = false;
File file = new File(dialog.getDirectory() + fileName + ".dat");
ObjectOutputStream stream = new ObjectOutputStream(new FileOutputStream(file));
ProjectInformation projectInformation = new ProjectInformation(getAsPiBlocks(), name, backgroundColor, textColor,
commonArticleBackgroundColor, nameColor, thematicColor, textFont, style, signature);
stream.writeObject(projectInformation);
} catch (Exception ignored) {
ignored.printStackTrace();
} finally {
return;
}
}
return;
}
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showSaveDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
try {
madeChange = false;
File file = chooser.getSelectedFile();
ObjectOutputStream stream = new ObjectOutputStream(new FileOutputStream(file));
ProjectInformation projectInformation = new ProjectInformation(getAsPiBlocks(), name, backgroundColor, textColor,
commonArticleBackgroundColor, nameColor, thematicColor, textFont, style, signature);
stream.writeObject(projectInformation);
} catch (Exception e) {
e.printStackTrace();
}
}
}
void loadPost() {
if (isMac()) {
FileDialog dialog = new FileDialog(this, "Открыть файл", FileDialog.LOAD);
dialog.setVisible(true);
String fileName = dialog.getFile();
if (fileName == null) {
System.out.println("Error loading file");
} else {
try {
File file = new File(dialog.getDirectory() + fileName);
ObjectInputStream stream = new ObjectInputStream(new FileInputStream(file));
ProjectInformation projectInformation = (ProjectInformation) stream.readObject();
clearPost(true);
setProjectByProjectInformation(projectInformation);
madeChange = false;
} catch (Exception ignored) {
ignored.printStackTrace();
}
}
return;
}
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
refreshLineSize();
compose(false);
try {
File file = chooser.getSelectedFile();
ObjectInputStream stream = new ObjectInputStream(new FileInputStream(file));
ProjectInformation projectInformation = (ProjectInformation) stream.readObject();
clearPost(true);
setProjectByProjectInformation(projectInformation);
madeChange = false;
} catch (Exception e) {
System.out.println(e.getLocalizedMessage() + "\n");
e.printStackTrace();
}
}
}
void mousePressedOnImage(MouseEvent mouseEvent) {
int horIconPosEstimated = (int) ((float)(imageLabel.getWidth() - width) / 2.0f);
int verIconPosEstimated = Math.max(3, (635 - longPostSize) / 2);
int cx = mouseEvent.getX() - horIconPosEstimated;
int cy = mouseEvent.getY() - verIconPosEstimated;
if (cx < 0 || cy < 0 || cx > width) return;
clearSelection();
Rectangle region;
boolean selectedSomething = false;
for (MaterialBlock materialBlock : materialBlocks) {
region = materialBlock.getSelectionRegion();
if (cx > region.x && cx < region.x + region.width && cy > region.y && cy < region.y + region.height) {
int index = materialBlocks.indexOf(materialBlock);
selectSpecificBlock(index);
selectedSomething = true;
}
}
if (!selectedSomething) compose(false);
if (selectedSomething && mouseEvent.getButton() == MouseEvent.BUTTON3) {
popupBackColorItem.setEnabled(false);
popupTextColorItem.setEnabled(false);
rotateMenu.setEnabled(false);
alignMenu.setEnabled(false);
borderItem.setEnabled(false);
borderItem.setState(false);
if (selectedBlock instanceof Article) {
popupBackColorItem.setEnabled(true);
popupTextColorItem.setEnabled(true);
alignMenu.setEnabled(true);
borderItem.setEnabled(true);
borderItem.setState(((Article) selectedBlock).bordered);
} else if (selectedBlock instanceof Title) {
popupTextColorItem.setEnabled(true);
alignMenu.setEnabled(true);
} else if (selectedBlock instanceof PictureBlock) {
rotateMenu.setEnabled(true);
}
popupMenu.show(imageLabel, mouseEvent.getX(), mouseEvent.getY());
}
}
void selectSpecificBlock(int index) {
clearSelection();
selectedIndex = index;
reselectBlock();
}
void compose() {
compose(true);
}
void compose(boolean reselect) {
memorizeCurrentProjectCondition();
int currentVerticalPos;
longPostSize = getEstimatedPostHeight();
result = new BufferedImage(width, longPostSize, BufferedImage.TYPE_INT_ARGB);
Graphics2D graphics = (Graphics2D) result.getGraphics();
graphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
graphics.setFont(postNameFont);
graphics.setColor(backgroundColor);
graphics.fillRect(0, 0, width, longPostSize);
if (style == ElementFactory.STYLE_ORIGINAL) {
graphics.setStroke(new BasicStroke(3));
graphics.setColor(Color.GRAY);
graphics.drawRect(1, 1, width - 3, longPostSize - 3);
}
FontMetrics metrics = graphics.getFontMetrics();
int namePos = (int) ((width - metrics.stringWidth(name)) / 2.0f);
if (namePos < 10) {
while (namePos < 10) {
name = name.substring(0, name.length() - 1);
namePos = (int) ((width - metrics.stringWidth(name)) / 2.0f);
}
}
graphics.setColor(nameColor);
graphics.drawString(name, namePos, 70);
graphics.setColor(textColor);
graphics.setFont(textFont);
currentVerticalPos = 150;
for (MaterialBlock materialBlock : materialBlocks) {
currentVerticalPos = materialBlock.show(graphics, currentVerticalPos);
}
//signature
graphics.setColor(signatureColor);
graphics.setFont(textFont);
metrics = graphics.getFontMetrics();
currentVerticalPos = longPostSize - 5 - 24 * signature.size();
int horizontalPosition;
for (String line : signature) {
int currentLineWidth = metrics.stringWidth(line);
horizontalPosition = width - 10 - currentLineWidth;
graphics.drawString(line, horizontalPosition, currentVerticalPos);
currentVerticalPos += 24;
}
BufferedImage showedPostImage = new BufferedImage(result.getWidth(null), result.getHeight(null), BufferedImage.TYPE_INT_ARGB);
Graphics gr = showedPostImage.getGraphics();