-
-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathEditorFooter.java
More file actions
472 lines (371 loc) · 13.6 KB
/
EditorFooter.java
File metadata and controls
472 lines (371 loc) · 13.6 KB
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
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
Part of the Processing project - http://processing.org
Copyright (c) 2015-19 The Processing Foundation
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package processing.app.ui;
import processing.app.Base;
import processing.app.Mode;
import processing.app.Sketch;
import processing.app.contrib.ContributionManager;
import processing.data.StringDict;
import javax.swing.*;
import java.awt.*;
import java.awt.datatransfer.StringSelection;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.font.FontRenderContext;
import java.awt.geom.Ellipse2D;
import java.util.ArrayList;
import java.util.List;
/**
* Console/error/whatever tabs at the bottom of the editor window.
* This shares a lot of code with EditorHeader and the Manager tabs as well.
*/
public class EditorFooter extends Box {
// height of this tab bar
static final int HIGH = Toolkit.zoom(32);
static final int CURVE_RADIUS = Toolkit.zoom(6);
static final int TAB_TOP = Toolkit.zoom(0);
static final int TAB_BOTTOM = Toolkit.zoom(26);
// amount of extra space between individual tabs
static final int TAB_BETWEEN = Toolkit.zoom(2);
// amount of margin on the left/right for the text on the tab
static final int MARGIN = Toolkit.zoom(8);
static final int ICON_WIDTH = Toolkit.zoom(14);
static final int ICON_HEIGHT = Toolkit.zoom(14);
static final int ICON_TOP = Toolkit.zoom(5);
static final int ICON_SIDE = Toolkit.zoom(7);
static final int ENABLED = 0;
static final int SELECTED = 1;
Color[] textColor = new Color[2];
Color[] tabColor = new Color[2];
Editor editor;
List<Tab> tabs = new ArrayList<>();
Font font;
int fontAscent;
Image gradient;
Color bgColor;
Box tabBar;
JPanel cardPanel;
CardLayout cardLayout;
Controller controller;
JLabel version;
int updateCount;
public EditorFooter(Editor eddie) {
super(BoxLayout.Y_AXIS);
this.editor = eddie;
cardLayout = new CardLayout();
cardPanel = new JPanel(cardLayout);
add(cardPanel);
tabBar = new Box(BoxLayout.X_AXIS);
controller = new Controller();
tabBar.add(controller);
version = new JLabel(Base.getVersionName());
version.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, Editor.RIGHT_GUTTER));
version.addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
if(e.getClickCount() == 5){
Base.DEBUG = !Base.DEBUG;
editor.updateDevelopMenu();
}
copyFullDiagnosticsToClipboard();
}
});
tabBar.add(version);
add(tabBar);
updateTheme();
}
public static String getSystemDebugInformation() {
return String.join("\n",
"Version: " + Base.getVersionName(),
"Revision: " + Base.getRevision(),
"OS: " + System.getProperty("os.name") + " " + System.getProperty("os.version") + " " + System.getProperty("os.arch"),
"Java: " + System.getProperty("java.version") + " " + System.getProperty("java.vendor")
);
}
public static void copyDebugInformationToClipboard() {
var stringSelection = new StringSelection(getSystemDebugInformation());
var clipboard = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(stringSelection, null);
}
public void copyFullDiagnosticsToClipboard() {
var debugInformation = getSystemDebugInformation() + "\n\n" + editor.getSketchDiagnostics();
var stringSelection = new StringSelection(debugInformation);
var clipboard = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(stringSelection, null);
}
/**
* Add a panel with no icon.
*/
public void addPanel(Component comp, String name) {
addPanel(comp, name, null);
}
/**
* Add a panel with a name and icon.
* @param comp Component that will be shown when this tab is selected
* @param name Title to appear on the tab itself
* @param icon Prefix of the file name for the icon
*/
public void addPanel(Component comp, String name, String icon) {
tabs.add(new Tab(comp, name, icon));
cardPanel.add(name, comp);
}
// public void setPanel(int index) {
// cardLayout.show(cardPanel, tabs.get(index).name);
// }
public void setPanel(Component comp) {
for (Tab tab : tabs) {
if (tab.comp == comp) {
cardLayout.show(cardPanel, tab.title);
repaint();
}
}
}
public void setNotification(Component comp, boolean note) {
for (Tab tab : tabs) {
if (tab.comp == comp) {
tab.notification = note;
repaint();
}
}
}
public void setUpdateCount(int count) {
this.updateCount = count;
repaint();
}
public void updateTheme() {
textColor[SELECTED] = Theme.getColor("footer.text.selected.color");
textColor[ENABLED] = Theme.getColor("footer.text.enabled.color");
font = Theme.getFont("footer.text.font");
tabColor[SELECTED] = Theme.getColor("footer.tab.selected.color");
tabColor[ENABLED] = Theme.getColor("footer.tab.enabled.color");
gradient = Theme.makeGradient("footer", 400, HIGH);
// Set the default background color in case the window size reported
// incorrectly by the OS, or we miss an update event of some kind
// https://github.com/processing/processing/issues/3919
bgColor = Theme.getColor("footer.gradient.bottom");
setBackground(bgColor);
for (Tab tab : tabs) {
tab.updateTheme();
}
// replace colors for the "updates" indicator
controller.updateTheme();
tabBar.setOpaque(true);
tabBar.setBackground(bgColor);
var updatesTextColor = Theme.getColor("footer.updates.text.color");
var withAlpha = new Color(updatesTextColor.getRed(), updatesTextColor.getGreen(), updatesTextColor.getBlue(), 128);
version.setForeground(withAlpha);
version.setFont(font);
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
class Controller extends JComponent {
Color updatesTextColor;
Color indicatorFieldColor;
Color indicatorTextColor;
int updateLeft;
Controller() {
addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
int x = e.getX();
for (Tab tab : tabs) {
if (tab.contains(x)) {
//editor.setFooterPanel(tab.index);
cardLayout.show(cardPanel, tab.title);
repaint();
}
}
if (updateCount > 0 && x > updateLeft) {
ContributionManager.openUpdates();
}
}
});
}
void updateTheme() {
updatesTextColor = Theme.getColor("footer.updates.text.color");
indicatorFieldColor = Theme.getColor("footer.updates.indicator.field.color");
indicatorTextColor = Theme.getColor("footer.updates.indicator.text.color");
repaint();
}
public void paintComponent(Graphics g) {
if (g == null) return;
Sketch sketch = editor.getSketch();
if (sketch == null) return; // possible?
g.setFont(font); // need to set this each time through
if (fontAscent == 0) {
fontAscent = (int) Toolkit.getAscent(g);
}
Graphics2D g2 = Toolkit.prepareGraphics(g);
g.setColor(tabColor[SELECTED]);
// can't be done with lines, b/c retina leaves tiny hairlines
//g.fillRect(0, 0, getWidth(), Toolkit.zoom(2));
g.drawImage(gradient, 0, 0, getWidth(), getHeight(), this);
// reset all tab positions
for (Tab tab : tabs) {
tab.textWidth = (int)
font.getStringBounds(tab.title, g2.getFontRenderContext()).getWidth();
}
// now actually draw the tabs
drawTabs(g2, Editor.LEFT_GUTTER);
// the number of updates available in the Manager
drawUpdates(g2);
}
/**
* @param left starting position from the left
* @param g graphics context, or null if we're not drawing
*/
private void drawTabs(Graphics2D g, int left) {
int x = left;
for (Tab tab : tabs) {
tab.left = x;
x += MARGIN;
if (tab.hasIcon()) {
x += ICON_WIDTH + MARGIN;
}
x += tab.textWidth + MARGIN;
tab.right = x;
tab.draw(g);
x += TAB_BETWEEN;
}
}
private void drawUpdates(Graphics2D g2) {
if (updateCount != 0) {
FontRenderContext frc = g2.getFontRenderContext();
final int GAP = Toolkit.zoom(5);
final String updateLabel = "Updates";
// String updatesStr = " " + ((int) (Math.random() * 25)) + " "; // testing
String updatesStr = " " + updateCount + " ";
double countWidth = font.getStringBounds(updatesStr, frc).getWidth();
double countHeight = font.getStringBounds(updatesStr, frc).getHeight();
if (fontAscent > countWidth) {
countWidth = fontAscent;
}
// Using a variant of https://github.com/processing/processing/pull/4097
final float CIRCULAR_PADDING = 1.5f;
float diameter = (float) (2 * (Math.max(countHeight, countWidth)/2 + CIRCULAR_PADDING));
float ex = getWidth() - Editor.RIGHT_GUTTER - diameter;
float ey = (getHeight() - diameter) / 2;
g2.setColor(indicatorFieldColor);
g2.fill(new Ellipse2D.Float(ex, ey, diameter, diameter));
g2.setColor(indicatorTextColor);
int baseline = (getHeight() + fontAscent) / 2;
g2.drawString(updatesStr, (int) (ex + (diameter - countWidth)/2), baseline);
double updatesWidth = font.getStringBounds(updateLabel, frc).getWidth();
g2.setColor(updatesTextColor);
updateLeft = (int) (ex - updatesWidth - GAP);
g2.drawString(updateLabel, updateLeft, baseline);
}
}
public Dimension getPreferredSize() {
return new Dimension(Toolkit.zoom(300), HIGH);
}
public Dimension getMinimumSize() {
return getPreferredSize();
}
public Dimension getMaximumSize() {
return new Dimension(super.getMaximumSize().width, HIGH);
}
}
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
class Tab {
String title;
String icon;
Component comp;
boolean notification;
Image enabledIcon;
Image selectedIcon;
int left;
int right;
int textWidth;
Tab(Component comp, String title, String icon) {
this.comp = comp;
this.title = title;
this.icon = icon;
updateTheme();
}
protected void updateTheme() {
if (icon != null) {
enabledIcon = renderImage("enabled");
selectedIcon = renderImage("selected");
if (selectedIcon == null) {
selectedIcon = enabledIcon; // fallback
}
}
}
protected Image renderImage(String state) {
Mode mode = editor.getMode();
String xmlOrig = mode.loadString(icon + ".svg");
if (xmlOrig == null) {
// load image data from PNG files
return mode.loadImageX(icon + "-" + state);
}
/*
final String ICON_COLOR = "silver";
String iconColor = Theme.get("footer.icon." + state + ".color");
String xmlStr = xmlOrig.replace(ICON_COLOR, iconColor);
final int m = Toolkit.highResMultiplier();
return Toolkit.svgToImage(xmlStr, ICON_WIDTH * m, ICON_HEIGHT * m);
*/
StringDict replacements = new StringDict(new String[][] {
{ "silver", Theme.get("footer.icon." + state + ".color") }
});
return Toolkit.svgToImageMult(xmlOrig, ICON_WIDTH, ICON_HEIGHT, replacements);
}
boolean contains(int x) {
return x >= left && x <= right;
}
boolean isCurrent() {
return comp.isVisible();
}
/*
boolean isFirst() {
return tabs.get(0) == this;
}
boolean isLast() {
return tabs.get(tabs.size() - 1) == this;
}
*/
int getTextLeft() {
int links = left;
if (enabledIcon != null) {
links += ICON_WIDTH + ICON_SIDE;
}
return links + ((right - links) - textWidth) / 2;
}
boolean hasIcon() {
return enabledIcon != null;
}
void draw(Graphics2D g2) {
int state = isCurrent() ? SELECTED : ENABLED;
g2.setColor(tabColor[state]);
g2.fill(Toolkit.createRoundRect(left, TAB_TOP, right, TAB_BOTTOM, 0, 0,
CURVE_RADIUS, CURVE_RADIUS));
// isLast() ? CURVE_RADIUS : 0,
// isFirst() ? CURVE_RADIUS : 0));
if (hasIcon()) {
Image icon = (isCurrent() || notification) ? selectedIcon : enabledIcon;
g2.drawImage(icon, left + MARGIN, ICON_TOP, ICON_WIDTH, ICON_HEIGHT, null);
}
int textLeft = getTextLeft();
if (notification && state == ENABLED) {
g2.setColor(textColor[SELECTED]);
} else {
g2.setColor(textColor[state]);
}
int tabHeight = TAB_BOTTOM - TAB_TOP;
int baseline = TAB_TOP + (tabHeight + fontAscent) / 2;
g2.drawString(title, textLeft, baseline);
}
}
}