-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathEditorStatus.java
More file actions
447 lines (355 loc) · 12.2 KB
/
EditorStatus.java
File metadata and controls
447 lines (355 loc) · 12.2 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
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
Part of the Processing project - http://processing.org
Copyright (c) 2012-19 The Processing Foundation
Copyright (c) 2004-12 Ben Fry and Casey Reas
Copyright (c) 2001-04 Massachusetts Institute of Technology
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 java.awt.Color;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.StringSelection;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
import javax.swing.plaf.basic.BasicSplitPaneDivider;
import javax.swing.plaf.basic.BasicSplitPaneUI;
import processing.app.Mode;
import processing.app.Platform;
import processing.app.Preferences;
import processing.core.PApplet;
/**
* Panel just below the editing area that contains status messages.
*/
public class EditorStatus extends BasicSplitPaneDivider {
static final int HIGH = Toolkit.zoom(28);
static final int LEFT_MARGIN = Editor.LEFT_GUTTER;
static final int RIGHT_MARGIN = Toolkit.zoom(20);
Color urlColor;
Color[] fgColor;
Color[] bgColor;
Image[] bgImage;
@SuppressWarnings("hiding")
static public final int ERROR = 1;
static public final int CURSOR_LINE_ERROR = 2;
static public final int WARNING = 3;
static public final int CURSOR_LINE_WARNING = 4;
static public final int NOTICE = 0;
static final int YES = 1;
static final int NO = 2;
static final int CANCEL = 3;
static final int OK = 4;
Editor editor;
int mode;
String message = "";
String url;
int rightEdge;
int mouseX;
static final int ROLLOVER_NONE = 0;
static final int ROLLOVER_URL = 1;
static final int ROLLOVER_COLLAPSE = 2;
static final int ROLLOVER_CLIPBOARD = 3;
int rolloverState;
Font font;
FontMetrics metrics;
int ascent;
// actual Clipboard character not available [fry 180326]
//static final String CLIPBOARD_GLYPH = "\uD83D\uDCCB";
// other apps seem to use this one as a hack
static final String CLIPBOARD_GLYPH = "\u2398";
// https://en.wikipedia.org/wiki/Geometric_Shapes
// static final String COLLAPSE_GLYPH = "\u25B3"; // large up
// static final String EXPAND_GLYPH = "\u25BD"; // large down
// static final String COLLAPSE_GLYPH = "\u25B5"; // small up (unavailable)
// static final String EXPAND_GLYPH = "\u25BF"; // small down (unavailable)
static final String COLLAPSE_GLYPH = "\u25C1"; // left
static final String EXPAND_GLYPH = "\u25B7"; // right
// static final String COLLAPSE_GLYPH = "\u25F8"; // upper-left (unavailable)
// static final String EXPAND_GLYPH = "\u25FF"; // lower-right (unavailable)
// a font that supports the Unicode glyphs we need
Font glyphFont;
Image offscreen;
int sizeW, sizeH;
// size of the glyph buttons (width and height are identical)
int buttonSize;
boolean collapsed = false;
int response;
boolean indeterminate;
Thread thread;
public EditorStatus(BasicSplitPaneUI ui, Editor editor) {
super(ui);
this.editor = editor;
empty();
updateMode();
addMouseListener(new MouseAdapter() {
@Override
public void mouseEntered(MouseEvent e) {
updateMouse();
}
@Override
public void mousePressed(MouseEvent e) {
if (rolloverState == ROLLOVER_URL) {
Platform.openURL(url);
} else if (rolloverState == ROLLOVER_CLIPBOARD) {
if (e.isShiftDown()) {
// open the text in a browser window as a search
final String fmt = Preferences.get("search.format");
Platform.openURL(String.format(fmt, PApplet.urlEncode(message)));
} else {
// copy the text to the clipboard
Clipboard clipboard = getToolkit().getSystemClipboard();
clipboard.setContents(new StringSelection(message), null);
System.out.println("Copied to the clipboard. " +
"Use shift-click to search the web instead.");
}
} else if (rolloverState == ROLLOVER_COLLAPSE) {
setCollapsed(!collapsed);
}
}
@Override
public void mouseExited(MouseEvent e) {
mouseX = -100;
updateMouse();
}
});
addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseDragged(MouseEvent e) {
// BasicSplitPaneUI.startDragging gets called even when you click but
// don't drag, so we can't expand the console whenever that gets called
// or the button wouldn't work.
setCollapsed(false);
}
@Override
public void mouseMoved(MouseEvent e) {
mouseX = e.getX();
updateMouse();
}
});
}
void setCollapsed(boolean newState) {
if (collapsed != newState) {
collapsed = newState;
editor.footer.setVisible(!newState);
splitPane.resetToPreferredSizes();
}
}
void updateMouse() {
switch (rolloverState) {
case ROLLOVER_CLIPBOARD:
case ROLLOVER_URL:
setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
break;
case ROLLOVER_COLLAPSE:
setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
break;
case ROLLOVER_NONE:
setCursor(Cursor.getPredefinedCursor(Cursor.MOVE_CURSOR));
break;
}
repaint();
}
static String findURL(String message) {
String[] m = PApplet.match(message, "http\\S+");
if (m != null) {
return m[0];
}
return null;
}
public void updateMode() {
Mode mode = editor.getMode();
urlColor = mode.getColor("status.url.fgcolor");
fgColor = new Color[] {
mode.getColor("status.notice.fgcolor"),
mode.getColor("status.error.fgcolor"),
mode.getColor("status.error.fgcolor"),
mode.getColor("status.warning.fgcolor"),
mode.getColor("status.warning.fgcolor")
};
bgColor = new Color[] {
mode.getColor("status.notice.bgcolor"),
mode.getColor("status.error.bgcolor"),
mode.getColor("status.error.bgcolor"),
mode.getColor("status.warning.bgcolor"),
mode.getColor("status.warning.bgcolor")
};
bgImage = new Image[] {
mode.loadImage("/lib/status/notice.png"),
mode.loadImage("/lib/status/error.png"),
mode.loadImage("/lib/status/error.png"),
mode.loadImage("/lib/status/warning.png"),
mode.loadImage("/lib/status/warning.png")
};
font = mode.getFont("status.font");
glyphFont = mode.getFont("status.emoji.font");
metrics = null;
}
public void empty() {
mode = NOTICE;
message = "";
url = null;
repaint();
}
public void message(String message, int mode) {
this.message = message;
this.mode = mode;
url = findURL(message);
repaint();
}
public void notice(String message) {
message(message, NOTICE);
// mode = NOTICE;
// this.message = message;
// url = findURL(message);
// repaint();
}
// public void unnotice(String unmessage) {
// if (message.equals(unmessage)) empty();
// }
public void warning(String message) {
message(message, WARNING);
// this.message = message;
// mode = WARNING;
// url = findURL(message);
// repaint();
}
public void error(String message) {
message(message, ERROR);
// this.message = message;
// mode = ERROR;
// url = findURL(message);
// repaint();
}
public void startIndeterminate() {
indeterminate = true;
thread = new Thread() {
public void run() {
while (Thread.currentThread() == thread) {
repaint();
try {
Thread.sleep(1000 / 10);
} catch (InterruptedException e) { }
}
}
};
thread.setName("Editor Status");
thread.start();
}
public void stopIndeterminate() {
indeterminate = false;
thread = null;
repaint();
}
//public void paintComponent(Graphics screen) {
public void paint(Graphics screen) {
Dimension size = getSize();
if ((size.width != sizeW) || (size.height != sizeH)) {
// component has been resized
offscreen = null;
}
if (offscreen == null) {
sizeW = size.width;
sizeH = size.height;
buttonSize = sizeH;
offscreen = Toolkit.offscreenGraphics(this, sizeW, sizeH);
}
Graphics g = offscreen.getGraphics();
/*Graphics2D g2 =*/ Toolkit.prepareGraphics(g);
g.setFont(font);
if (metrics == null) {
metrics = g.getFontMetrics();
ascent = metrics.getAscent();
}
g.drawImage(bgImage[mode], 0, 0, sizeW, sizeH, this);
rolloverState = ROLLOVER_NONE;
if (mouseX > sizeW - buttonSize && mouseX < sizeW) {
rolloverState = ROLLOVER_COLLAPSE;
} else if (message != null && !message.isEmpty()) {
if (sizeW - 2*buttonSize < mouseX) {
rolloverState = ROLLOVER_CLIPBOARD;
} else if (url != null && mouseX > LEFT_MARGIN &&
// calculate right edge of the text for rollovers (otherwise the pane
// cannot be resized up or down whenever a URL is being displayed)
mouseX < (LEFT_MARGIN + g.getFontMetrics().stringWidth(message))) {
rolloverState = ROLLOVER_URL;
}
}
// https://github.com/processing/processing/issues/3265
if (message != null) {
// font needs to be set each time on osx
g.setFont(font);
// set the highlight color on rollover so that the user's not surprised
// to see the web browser open when they click
g.setColor((rolloverState == ROLLOVER_URL) ? urlColor : fgColor[mode]);
g.drawString(message, LEFT_MARGIN, (sizeH + ascent) / 2);
}
if (indeterminate) {
//int x = cancelButton.getX();
//int w = cancelButton.getWidth();
int w = Toolkit.getButtonWidth();
int x = getWidth() - Math.max(RIGHT_MARGIN, (int)(buttonSize*1.2)) - w;
int y = sizeH / 3;
int h = sizeH / 3;
g.setColor(new Color(0x80000000, true));
g.drawRect(x, y, w, h);
for (int i = 0; i < 10; i++) {
int r = (int) (x + Math.random() * w);
g.drawLine(r, y, r, y+h);
}
} else if (!message.isEmpty()) {
g.setFont(glyphFont);
drawButton(g, CLIPBOARD_GLYPH, 1, rolloverState == ROLLOVER_CLIPBOARD);
g.setFont(font);
}
// draw collapse/expand button
String collapseGlyph = collapsed ? EXPAND_GLYPH : COLLAPSE_GLYPH;
drawButton(g, collapseGlyph, 0, rolloverState == ROLLOVER_COLLAPSE);
screen.drawImage(offscreen, 0, 0, sizeW, sizeH, null);
}
//private final Color whitishTint = new Color(0x20eeeeee, true);
/**
* @param pos A zero-based button index with 0 as the rightmost button
*/
private void drawButton(Graphics g, String symbol, int pos, boolean highlight) {
int left = sizeW - (pos + 1) * buttonSize;
// Overlap very long errors
g.drawImage(bgImage[mode], left, 0, buttonSize, sizeH, this);
if (highlight) {
// disabling since this doesn't match any of our other UI
// g.setColor(whitishTint);
// g.fillRect(left, 0, sizeH, sizeH);
g.setColor(urlColor);
} else {
g.setColor(fgColor[mode]);
}
g.drawString(symbol,
left + (buttonSize - g.getFontMetrics().stringWidth(symbol))/2,
(sizeH + ascent) / 2);
}
public Dimension getPreferredSize() {
return getMinimumSize();
}
public Dimension getMinimumSize() {
return new Dimension(Toolkit.zoom(300), HIGH);
}
public Dimension getMaximumSize() {
return new Dimension(super.getMaximumSize().width, HIGH);
}
}