-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathElementFactory.java
155 lines (141 loc) · 6.5 KB
/
ElementFactory.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
import java.awt.*;
import java.util.Vector;
class ElementFactory {
private int style;
public static final int STYLE_ORIGINAL = 0;
public static final int STYLE_BASIC = 1;
public static final int STYLE_LONELY_LUCKILY = 2;
public static final int STYLE_DARK = 3;
public static final int STYLE_PICTURES_ONLY = 4;
public static final int STYLE_LINES = 5;
public static final Color DEFAULT_DARK_STYLE_BACKGROUND_COLOR = new Color(100, 100, 100);
public ElementFactory(int style) {
this.style = style;
}
public void setStyle(int style) {
this.style = style;
}
public Article createArticle(Vector<String> article) {
switch (style) {
case STYLE_ORIGINAL: return new ArticleOriginal(article);
case STYLE_BASIC: return new ArticleBasic(article);
case STYLE_DARK: return new ArticleDark(article);
case STYLE_LONELY_LUCKILY: return new ArticleLonely(article);
case STYLE_PICTURES_ONLY: return new ArticleLonely(article);
case STYLE_LINES: return new ArticleLines(article);
default: return new ArticleOriginal(article);
}
}
public Title createTitle(String title) {
switch (style) {
case STYLE_ORIGINAL: return new TitleOriginal(title);
case STYLE_BASIC: return new TitleBasic(title);
case STYLE_DARK: return new TitleDark(title);
case STYLE_LONELY_LUCKILY: return new TitleLonely(title);
case STYLE_PICTURES_ONLY: return new TitleBasic(title);
case STYLE_LINES: return new TitleLines(title);
default: return new TitleOriginal(title);
}
}
public PictureBlock createPictureBlock(Image image, String description) {
if (style != STYLE_LONELY_LUCKILY) {
if (description.length() > DPGenGUI.PICTURE_COMMENT_MAX_SIZE) description = description.substring(0, DPGenGUI.PICTURE_COMMENT_MAX_SIZE);
}
switch (style) {
case STYLE_ORIGINAL: return new PictureBlockOriginal(image, description);
case STYLE_BASIC: return new PictureBlockBasic(image, description);
case STYLE_DARK: return new PictureBlockDarkStyle(image, description);
case STYLE_LONELY_LUCKILY: return new PictureBlockLonely(image, description);
case STYLE_PICTURES_ONLY: return new PictureBlockPicturesOnly(image, description);
case STYLE_LINES: return new PictureBlockLines(image, description);
default: return new PictureBlockOriginal(image, description);
}
}
public MaterialBlock copyOfElement(MaterialBlock element) {
return copyOfElement(element, element.style);
}
public MaterialBlock copyOfElement(MaterialBlock element, int requestedStyle) {
if (element == null) return createTitle("Не удалось скопировать");
int styleOfFactory = style;
style = requestedStyle;
if (element instanceof Article) {
Article copy = createArticle(((Article) element).article);
copy.setBordered(((Article) element).bordered);
copy.setTextColor(((Article) element).textColor);
copy.setBackgroundColor(((Article) element).backgroundColor);
copy.style = requestedStyle;
copy.textAlign = element.textAlign;
style = styleOfFactory;
return copy;
} else if (element instanceof Title) {
Title copy = createTitle(((Title) element).header);
copy.setTextColor(((Title) element).textColor);
copy.style = requestedStyle;
copy.textAlign = element.textAlign;
style = styleOfFactory;
return copy;
} else if (element instanceof PictureBlock) {
PictureBlock copy = createPictureBlock(((PictureBlock) element).picture, ((PictureBlock) element).description);
copy.style = requestedStyle;
style = styleOfFactory;
copy.textAlign = element.textAlign;
return copy;
}
// if fail
return createTitle("Не удалось скопировать");
}
public PictureBlock createPictureBlock(Image picture, String description, int requestedStyle) {
int styleOfFactory = style;
style = requestedStyle;
PictureBlock element = createPictureBlock(picture, description);
style = styleOfFactory;
return element;
}
public Title createTitle(String title, int requestedStyle) {
int styleOfFactory = style;
style = requestedStyle;
Title element = createTitle(title);
style = styleOfFactory;
return element;
}
public Article createArticle(Vector<String> article, int requestedStyle) {
int styleOfFactory = style;
style = requestedStyle;
Article element = createArticle(article);
style = styleOfFactory;
return element;
}
public Color getBackgroundColorOfStyle() {
switch (style) {
case STYLE_ORIGINAL: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
case STYLE_BASIC: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
case STYLE_DARK: return DEFAULT_DARK_STYLE_BACKGROUND_COLOR;
case STYLE_LONELY_LUCKILY: return Color.WHITE;
case STYLE_PICTURES_ONLY: return Color.WHITE;
case STYLE_LINES: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
default: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
}
}
public Color getTextColorOfStyle() {
switch (style) {
case STYLE_ORIGINAL: return DPGenGUI.DEFAULT_TEXT_COLOR;
case STYLE_BASIC: return DPGenGUI.DEFAULT_TEXT_COLOR;
case STYLE_DARK: return new Color(230, 230, 230);
case STYLE_LONELY_LUCKILY: return Color.BLACK;
case STYLE_PICTURES_ONLY: return Color.BLACK;
case STYLE_LINES: return DPGenGUI.textColor;
default: return DPGenGUI.DEFAULT_TEXT_COLOR;
}
}
public Color getArticleBackgroundOfStyle() {
switch (style) {
case STYLE_ORIGINAL: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
case STYLE_BASIC: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
case STYLE_DARK: return DEFAULT_DARK_STYLE_BACKGROUND_COLOR.brighter();
case STYLE_LONELY_LUCKILY: return Color.WHITE;
case STYLE_PICTURES_ONLY: return Color.WHITE;
case STYLE_LINES: return new Color(230, 230, 230);
default: return DPGenGUI.DEFAULT_BACKGROUND_COLOR;
}
}
}