1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.gui; |
22 |
|
|
23 |
|
import java.awt.BorderLayout; |
24 |
|
import java.awt.Color; |
25 |
|
import java.awt.Component; |
26 |
|
import java.awt.Container; |
27 |
|
import java.awt.Dimension; |
28 |
|
import java.awt.FontMetrics; |
29 |
|
import java.awt.Graphics; |
30 |
|
import java.awt.Graphics2D; |
31 |
|
import java.awt.GridLayout; |
32 |
|
import java.awt.Point; |
33 |
|
import java.awt.Rectangle; |
34 |
|
import java.awt.Toolkit; |
35 |
|
import java.awt.Window; |
36 |
|
import java.awt.datatransfer.Clipboard; |
37 |
|
import java.awt.datatransfer.ClipboardOwner; |
38 |
|
import java.awt.datatransfer.DataFlavor; |
39 |
|
import java.awt.datatransfer.Transferable; |
40 |
|
import java.awt.dnd.DnDConstants; |
41 |
|
import java.awt.dnd.DropTargetDragEvent; |
42 |
|
import java.awt.dnd.DropTargetDropEvent; |
43 |
|
import java.awt.dnd.DropTargetEvent; |
44 |
|
import java.awt.dnd.DropTargetListener; |
45 |
|
import java.awt.event.ActionEvent; |
46 |
|
import java.awt.event.ActionListener; |
47 |
|
import java.awt.event.InputEvent; |
48 |
|
import java.awt.event.KeyEvent; |
49 |
|
import java.awt.event.MouseAdapter; |
50 |
|
import java.awt.event.MouseEvent; |
51 |
|
import java.awt.event.WindowAdapter; |
52 |
|
import java.awt.event.WindowEvent; |
53 |
|
import java.awt.geom.AffineTransform; |
54 |
|
import java.beans.PropertyChangeEvent; |
55 |
|
import java.beans.PropertyChangeListener; |
56 |
|
import java.beans.PropertyVetoException; |
57 |
|
import java.io.File; |
58 |
|
import java.io.FileNotFoundException; |
59 |
|
import java.io.FileWriter; |
60 |
|
import java.io.IOException; |
61 |
|
import java.lang.reflect.Field; |
62 |
|
import java.net.URL; |
63 |
|
import java.util.ArrayList; |
64 |
|
import java.util.Arrays; |
65 |
|
import java.util.HashMap; |
66 |
|
import java.util.Hashtable; |
67 |
|
import java.util.List; |
68 |
|
import java.util.ListIterator; |
69 |
|
import java.util.Locale; |
70 |
|
import java.util.Map; |
71 |
|
import java.util.Vector; |
72 |
|
import java.util.concurrent.ExecutorService; |
73 |
|
import java.util.concurrent.Executors; |
74 |
|
import java.util.concurrent.Semaphore; |
75 |
|
|
76 |
|
import javax.swing.AbstractAction; |
77 |
|
import javax.swing.Action; |
78 |
|
import javax.swing.ActionMap; |
79 |
|
import javax.swing.Box; |
80 |
|
import javax.swing.BoxLayout; |
81 |
|
import javax.swing.DefaultDesktopManager; |
82 |
|
import javax.swing.DesktopManager; |
83 |
|
import javax.swing.InputMap; |
84 |
|
import javax.swing.JButton; |
85 |
|
import javax.swing.JCheckBox; |
86 |
|
import javax.swing.JComboBox; |
87 |
|
import javax.swing.JComponent; |
88 |
|
import javax.swing.JDesktopPane; |
89 |
|
import javax.swing.JFrame; |
90 |
|
import javax.swing.JInternalFrame; |
91 |
|
import javax.swing.JLabel; |
92 |
|
import javax.swing.JMenuItem; |
93 |
|
import javax.swing.JOptionPane; |
94 |
|
import javax.swing.JPanel; |
95 |
|
import javax.swing.JPopupMenu; |
96 |
|
import javax.swing.JProgressBar; |
97 |
|
import javax.swing.JScrollPane; |
98 |
|
import javax.swing.JTextArea; |
99 |
|
import javax.swing.JTextField; |
100 |
|
import javax.swing.JTextPane; |
101 |
|
import javax.swing.KeyStroke; |
102 |
|
import javax.swing.SwingUtilities; |
103 |
|
import javax.swing.WindowConstants; |
104 |
|
import javax.swing.event.HyperlinkEvent; |
105 |
|
import javax.swing.event.HyperlinkEvent.EventType; |
106 |
|
import javax.swing.event.InternalFrameAdapter; |
107 |
|
import javax.swing.event.InternalFrameEvent; |
108 |
|
import javax.swing.text.JTextComponent; |
109 |
|
|
110 |
|
import org.stackoverflowusers.file.WindowsShortcut; |
111 |
|
|
112 |
|
import jalview.api.AlignViewportI; |
113 |
|
import jalview.api.AlignmentViewPanel; |
114 |
|
import jalview.api.structures.JalviewStructureDisplayI; |
115 |
|
import jalview.bin.Cache; |
116 |
|
import jalview.bin.Jalview; |
117 |
|
import jalview.bin.Jalview.ExitCode; |
118 |
|
import jalview.bin.argparser.Arg; |
119 |
|
import jalview.bin.groovy.JalviewObject; |
120 |
|
import jalview.bin.groovy.JalviewObjectI; |
121 |
|
import jalview.datamodel.Alignment; |
122 |
|
import jalview.datamodel.HiddenColumns; |
123 |
|
import jalview.datamodel.Sequence; |
124 |
|
import jalview.datamodel.SequenceI; |
125 |
|
import jalview.gui.ImageExporter.ImageWriterI; |
126 |
|
import jalview.gui.QuitHandler.QResponse; |
127 |
|
import jalview.io.AppletFormatAdapter; |
128 |
|
import jalview.io.BackupFiles; |
129 |
|
import jalview.io.DataSourceType; |
130 |
|
import jalview.io.FileFormat; |
131 |
|
import jalview.io.FileFormatException; |
132 |
|
import jalview.io.FileFormatI; |
133 |
|
import jalview.io.FileFormats; |
134 |
|
import jalview.io.FileLoader; |
135 |
|
import jalview.io.FormatAdapter; |
136 |
|
import jalview.io.IdentifyFile; |
137 |
|
import jalview.io.JalviewFileChooser; |
138 |
|
import jalview.io.JalviewFileView; |
139 |
|
import jalview.io.NewickFile; |
140 |
|
import jalview.io.exceptions.ImageOutputException; |
141 |
|
import jalview.jbgui.GSplitFrame; |
142 |
|
import jalview.jbgui.GStructureViewer; |
143 |
|
import jalview.project.Jalview2XML; |
144 |
|
import jalview.structure.StructureSelectionManager; |
145 |
|
import jalview.urls.IdOrgSettings; |
146 |
|
import jalview.util.ArgParserUtils; |
147 |
|
import jalview.util.ArgParserUtils.BaseInfo; |
148 |
|
import jalview.util.BrowserLauncher; |
149 |
|
import jalview.util.ChannelProperties; |
150 |
|
import jalview.util.FileUtils; |
151 |
|
import jalview.util.ImageMaker.TYPE; |
152 |
|
import jalview.util.LaunchUtils; |
153 |
|
import jalview.util.MessageManager; |
154 |
|
import jalview.util.Platform; |
155 |
|
import jalview.util.ShortcutKeyMaskExWrapper; |
156 |
|
import jalview.util.UrlConstants; |
157 |
|
import jalview.viewmodel.AlignmentViewport; |
158 |
|
import jalview.ws.params.ParamManager; |
159 |
|
import jalview.ws.utils.UrlDownloadClient; |
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
|
164 |
|
|
165 |
|
@author |
166 |
|
@version |
167 |
|
|
|
|
| 44.4% |
Uncovered Elements: 979 (1,762) |
Complexity: 472 |
Complexity Density: 0.42 |
|
168 |
|
public class Desktop extends jalview.jbgui.GDesktop |
169 |
|
implements DropTargetListener, ClipboardOwner, IProgressIndicator, |
170 |
|
jalview.api.StructureSelectionManagerProvider, JalviewObjectI |
171 |
|
{ |
172 |
|
private static final String CITATION; |
|
|
| 83.3% |
Uncovered Elements: 3 (18) |
Complexity: 4 |
Complexity Density: 0.33 |
|
173 |
54 |
static... |
174 |
|
{ |
175 |
54 |
URL bg_logo_url = ChannelProperties.getImageURL( |
176 |
|
"bg_logo." + String.valueOf(SplashScreen.logoSize)); |
177 |
54 |
URL uod_logo_url = ChannelProperties.getImageURL( |
178 |
|
"uod_banner." + String.valueOf(SplashScreen.logoSize)); |
179 |
54 |
boolean logo = (bg_logo_url != null || uod_logo_url != null); |
180 |
54 |
StringBuilder sb = new StringBuilder(); |
181 |
54 |
sb.append( |
182 |
|
"<br><br>Jalview is free software released under GPLv3.<br><br>Development is managed by The Barton Group, University of Dundee, Scotland, UK."); |
183 |
54 |
if (logo) |
184 |
|
{ |
185 |
54 |
sb.append("<br>"); |
186 |
|
} |
187 |
54 |
sb.append(bg_logo_url == null ? "" |
188 |
|
: "<img alt=\"Barton Group logo\" src=\"" |
189 |
|
+ bg_logo_url.toString() + "\">"); |
190 |
54 |
sb.append(uod_logo_url == null ? "" |
191 |
|
: " <img alt=\"University of Dundee shield\" src=\"" |
192 |
|
+ uod_logo_url.toString() + "\">"); |
193 |
54 |
sb.append( |
194 |
|
"<br><br>For help, see <a href=\"https://www.jalview.org/help/faq\">www.jalview.org/faq</a> and join <a href=\"https://discourse.jalview.org\">discourse.jalview.org</a>"); |
195 |
54 |
sb.append("<br><br>If you use Jalview, please cite:" |
196 |
|
+ "<br>Waterhouse, A.M., Procter, J.B., Martin, D.M.A, Clamp, M. and Barton, G. J. (2009)" |
197 |
|
+ "<br>Jalview Version 2 - a multiple sequence alignment editor and analysis workbench" |
198 |
|
+ "<br>Bioinformatics <a href=\"https://doi.org/10.1093/bioinformatics/btp033\">doi: 10.1093/bioinformatics/btp033</a>"); |
199 |
54 |
CITATION = sb.toString(); |
200 |
|
} |
201 |
|
|
202 |
|
private static final String DEFAULT_AUTHORS = "The Jalview Authors (See AUTHORS file for current list)"; |
203 |
|
|
204 |
|
private static int DEFAULT_MIN_WIDTH = 300; |
205 |
|
|
206 |
|
private static int DEFAULT_MIN_HEIGHT = 250; |
207 |
|
|
208 |
|
private static int ALIGN_FRAME_DEFAULT_MIN_WIDTH = 600; |
209 |
|
|
210 |
|
private static int ALIGN_FRAME_DEFAULT_MIN_HEIGHT = 70; |
211 |
|
|
212 |
|
private static final String EXPERIMENTAL_FEATURES = "EXPERIMENTAL_FEATURES"; |
213 |
|
|
214 |
|
public static final String CONFIRM_KEYBOARD_QUIT = "CONFIRM_KEYBOARD_QUIT"; |
215 |
|
|
216 |
|
public static HashMap<String, FileWriter> savingFiles = new HashMap<String, FileWriter>(); |
217 |
|
|
218 |
|
private static int DRAG_MODE = JDesktopPane.OUTLINE_DRAG_MODE; |
219 |
|
|
|
|
| 85.7% |
Uncovered Elements: 1 (7) |
Complexity: 3 |
Complexity Density: 1 |
|
220 |
150 |
public static void setLiveDragMode(boolean b)... |
221 |
|
{ |
222 |
150 |
DRAG_MODE = b ? JDesktopPane.LIVE_DRAG_MODE |
223 |
|
: JDesktopPane.OUTLINE_DRAG_MODE; |
224 |
150 |
if (desktop != null) |
225 |
130 |
desktop.setDragMode(DRAG_MODE); |
226 |
|
} |
227 |
|
|
228 |
|
private JalviewChangeSupport changeSupport = new JalviewChangeSupport(); |
229 |
|
|
230 |
|
public static boolean nosplash = false; |
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
private BlogReader jvnews = null; |
236 |
|
|
237 |
|
private File projectFile; |
238 |
|
|
239 |
|
|
240 |
|
@param |
241 |
|
@see |
242 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
243 |
0 |
public void addJalviewPropertyChangeListener(... |
244 |
|
PropertyChangeListener listener) |
245 |
|
{ |
246 |
0 |
changeSupport.addJalviewPropertyChangeListener(listener); |
247 |
|
} |
248 |
|
|
249 |
|
|
250 |
|
@param |
251 |
|
@param |
252 |
|
@see |
253 |
|
|
254 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
255 |
397 |
public void addJalviewPropertyChangeListener(String propertyName,... |
256 |
|
PropertyChangeListener listener) |
257 |
|
{ |
258 |
397 |
changeSupport.addJalviewPropertyChangeListener(propertyName, listener); |
259 |
|
} |
260 |
|
|
261 |
|
|
262 |
|
@param |
263 |
|
@param |
264 |
|
@see |
265 |
|
|
266 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
267 |
260 |
public void removeJalviewPropertyChangeListener(String propertyName,... |
268 |
|
PropertyChangeListener listener) |
269 |
|
{ |
270 |
260 |
changeSupport.removeJalviewPropertyChangeListener(propertyName, |
271 |
|
listener); |
272 |
|
} |
273 |
|
|
274 |
|
|
275 |
|
public static Desktop instance; |
276 |
|
|
277 |
|
public static MyDesktopPane desktop; |
278 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
279 |
2408 |
public static MyDesktopPane getDesktop()... |
280 |
|
{ |
281 |
|
|
282 |
|
|
283 |
2408 |
return desktop; |
284 |
|
} |
285 |
|
|
286 |
|
static int openFrameCount = 0; |
287 |
|
|
288 |
|
static final int xOffset = 30; |
289 |
|
|
290 |
|
static final int yOffset = 30; |
291 |
|
|
292 |
|
public static jalview.ws.jws1.Discoverer discoverer; |
293 |
|
|
294 |
|
public static Object[] jalviewClipboard; |
295 |
|
|
296 |
|
public static boolean internalCopy = false; |
297 |
|
|
298 |
|
static int fileLoadingCount = 0; |
299 |
|
|
|
|
| 20% |
Uncovered Elements: 36 (45) |
Complexity: 19 |
Complexity Density: 0.76 |
|
300 |
|
class MyDesktopManager implements DesktopManager |
301 |
|
{ |
302 |
|
|
303 |
|
private DesktopManager delegate; |
304 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
305 |
75 |
public MyDesktopManager(DesktopManager delegate)... |
306 |
|
{ |
307 |
75 |
this.delegate = delegate; |
308 |
|
} |
309 |
|
|
|
|
| 50% |
Uncovered Elements: 2 (4) |
Complexity: 2 |
Complexity Density: 0.5 |
|
310 |
742 |
@Override... |
311 |
|
public void activateFrame(JInternalFrame f) |
312 |
|
{ |
313 |
742 |
try |
314 |
|
{ |
315 |
742 |
delegate.activateFrame(f); |
316 |
|
} catch (NullPointerException npe) |
317 |
|
{ |
318 |
0 |
Point p = getMousePosition(); |
319 |
0 |
instance.showPasteMenu(p.x, p.y); |
320 |
|
} |
321 |
|
} |
322 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
323 |
0 |
@Override... |
324 |
|
public void beginDraggingFrame(JComponent f) |
325 |
|
{ |
326 |
0 |
delegate.beginDraggingFrame(f); |
327 |
|
} |
328 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
329 |
0 |
@Override... |
330 |
|
public void beginResizingFrame(JComponent f, int direction) |
331 |
|
{ |
332 |
0 |
delegate.beginResizingFrame(f, direction); |
333 |
|
} |
334 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
335 |
431 |
@Override... |
336 |
|
public void closeFrame(JInternalFrame f) |
337 |
|
{ |
338 |
431 |
delegate.closeFrame(f); |
339 |
|
} |
340 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
341 |
721 |
@Override... |
342 |
|
public void deactivateFrame(JInternalFrame f) |
343 |
|
{ |
344 |
721 |
delegate.deactivateFrame(f); |
345 |
|
} |
346 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
347 |
0 |
@Override... |
348 |
|
public void deiconifyFrame(JInternalFrame f) |
349 |
|
{ |
350 |
0 |
delegate.deiconifyFrame(f); |
351 |
|
} |
352 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
353 |
0 |
@Override... |
354 |
|
public void dragFrame(JComponent f, int newX, int newY) |
355 |
|
{ |
356 |
0 |
if (newY < 0) |
357 |
|
{ |
358 |
0 |
newY = 0; |
359 |
|
} |
360 |
0 |
delegate.dragFrame(f, newX, newY); |
361 |
|
} |
362 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
363 |
0 |
@Override... |
364 |
|
public void endDraggingFrame(JComponent f) |
365 |
|
{ |
366 |
0 |
delegate.endDraggingFrame(f); |
367 |
0 |
desktop.repaint(); |
368 |
|
} |
369 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
370 |
0 |
@Override... |
371 |
|
public void endResizingFrame(JComponent f) |
372 |
|
{ |
373 |
0 |
delegate.endResizingFrame(f); |
374 |
0 |
desktop.repaint(); |
375 |
|
} |
376 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
377 |
0 |
@Override... |
378 |
|
public void iconifyFrame(JInternalFrame f) |
379 |
|
{ |
380 |
0 |
delegate.iconifyFrame(f); |
381 |
|
} |
382 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
383 |
0 |
@Override... |
384 |
|
public void maximizeFrame(JInternalFrame f) |
385 |
|
{ |
386 |
0 |
delegate.maximizeFrame(f); |
387 |
|
} |
388 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
389 |
0 |
@Override... |
390 |
|
public void minimizeFrame(JInternalFrame f) |
391 |
|
{ |
392 |
0 |
delegate.minimizeFrame(f); |
393 |
|
} |
394 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
395 |
0 |
@Override... |
396 |
|
public void openFrame(JInternalFrame f) |
397 |
|
{ |
398 |
0 |
delegate.openFrame(f); |
399 |
|
} |
400 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
401 |
0 |
@Override... |
402 |
|
public void resizeFrame(JComponent f, int newX, int newY, int newWidth, |
403 |
|
int newHeight) |
404 |
|
{ |
405 |
0 |
if (newY < 0) |
406 |
|
{ |
407 |
0 |
newY = 0; |
408 |
|
} |
409 |
0 |
delegate.resizeFrame(f, newX, newY, newWidth, newHeight); |
410 |
|
} |
411 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
412 |
0 |
@Override... |
413 |
|
public void setBoundsForFrame(JComponent f, int newX, int newY, |
414 |
|
int newWidth, int newHeight) |
415 |
|
{ |
416 |
0 |
delegate.setBoundsForFrame(f, newX, newY, newWidth, newHeight); |
417 |
|
} |
418 |
|
|
419 |
|
|
420 |
|
|
421 |
|
} |
422 |
|
|
423 |
|
|
424 |
|
|
425 |
|
|
|
|
| 84.7% |
Uncovered Elements: 13 (85) |
Complexity: 13 |
Complexity Density: 0.21 |
|
426 |
75 |
public Desktop()... |
427 |
|
{ |
428 |
75 |
super(); |
429 |
|
|
430 |
|
|
431 |
|
|
432 |
|
|
433 |
|
|
434 |
75 |
instance = this; |
435 |
|
|
436 |
75 |
doConfigureStructurePrefs(); |
437 |
75 |
setTitle(ChannelProperties.getProperty("app_name") + " " |
438 |
|
+ Cache.getProperty("VERSION")); |
439 |
|
|
440 |
|
|
441 |
|
|
442 |
|
|
443 |
|
|
444 |
|
|
445 |
|
|
446 |
|
|
447 |
|
|
448 |
|
|
449 |
|
|
450 |
|
|
451 |
|
|
452 |
|
|
453 |
75 |
if (Platform.isLinux()) |
454 |
|
{ |
455 |
75 |
if (LaunchUtils.getJavaVersion() >= 11) |
456 |
|
{ |
457 |
|
|
458 |
|
|
459 |
|
|
460 |
|
|
461 |
75 |
jalview.bin.Console.errPrintln( |
462 |
|
"Linux platform only! You may have the following warning next: \"WARNING: An illegal reflective access operation has occurred\"\nThis is expected and cannot be avoided, sorry about that."); |
463 |
|
} |
464 |
75 |
final String awtAppClassName = "awtAppClassName"; |
465 |
75 |
try |
466 |
|
{ |
467 |
75 |
Toolkit xToolkit = Toolkit.getDefaultToolkit(); |
468 |
75 |
Field[] declaredFields = xToolkit.getClass().getDeclaredFields(); |
469 |
75 |
Field awtAppClassNameField = null; |
470 |
|
|
471 |
75 |
if (Arrays.stream(declaredFields) |
472 |
|
.anyMatch(f -> f.getName().equals(awtAppClassName))) |
473 |
|
{ |
474 |
75 |
awtAppClassNameField = xToolkit.getClass() |
475 |
|
.getDeclaredField(awtAppClassName); |
476 |
|
} |
477 |
|
|
478 |
75 |
String title = ChannelProperties.getProperty("app_name"); |
479 |
75 |
if (awtAppClassNameField != null) |
480 |
|
{ |
481 |
75 |
awtAppClassNameField.setAccessible(true); |
482 |
75 |
awtAppClassNameField.set(xToolkit, title); |
483 |
|
} |
484 |
|
else |
485 |
|
{ |
486 |
0 |
jalview.bin.Console |
487 |
|
.debug("XToolkit: " + awtAppClassName + " not found"); |
488 |
|
} |
489 |
|
} catch (Exception e) |
490 |
|
{ |
491 |
0 |
jalview.bin.Console.debug("Error setting " + awtAppClassName); |
492 |
0 |
jalview.bin.Console.trace(Cache.getStackTraceString(e)); |
493 |
|
} |
494 |
|
} |
495 |
|
|
496 |
75 |
setIconImages(ChannelProperties.getIconList()); |
497 |
|
|
498 |
|
|
499 |
75 |
this.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); |
500 |
75 |
addWindowListener(new WindowAdapter() |
501 |
|
{ |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
502 |
0 |
@Override... |
503 |
|
public void windowClosing(WindowEvent ev) |
504 |
|
{ |
505 |
0 |
QuitHandler.QResponse ret = desktopQuit(true, true); |
506 |
|
} |
507 |
|
}); |
508 |
|
|
509 |
75 |
boolean selmemusage = Cache.getDefault("SHOW_MEMUSAGE", false); |
510 |
|
|
511 |
75 |
boolean showjconsole = Cache.getArgCacheDefault(Arg.JAVACONSOLE, |
512 |
|
"SHOW_JAVA_CONSOLE", false); |
513 |
|
|
514 |
|
|
515 |
75 |
startDialogQueue(); |
516 |
|
|
517 |
75 |
if (!Platform.isJS()) |
518 |
|
|
519 |
|
|
520 |
|
|
521 |
|
|
522 |
|
|
523 |
|
{ |
524 |
75 |
Desktop.instance.acquireDialogQueue(); |
525 |
|
|
526 |
75 |
jconsole = new Console(this); |
527 |
75 |
jconsole.setHeader(Cache.getVersionDetailsForConsole()); |
528 |
75 |
showConsole(showjconsole); |
529 |
|
|
530 |
75 |
Desktop.instance.releaseDialogQueue(); |
531 |
|
} |
532 |
|
|
533 |
75 |
desktop = new MyDesktopPane(selmemusage); |
534 |
|
|
535 |
75 |
showMemusage.setSelected(selmemusage); |
536 |
75 |
desktop.setBackground(Color.white); |
537 |
|
|
538 |
75 |
getContentPane().setLayout(new BorderLayout()); |
539 |
|
|
540 |
|
|
541 |
|
|
542 |
|
|
543 |
|
|
544 |
|
|
545 |
75 |
if (Platform.isJS()) |
546 |
|
{ |
547 |
0 |
getRootPane().putClientProperty("swingjs.overflow.hidden", "false"); |
548 |
|
} |
549 |
|
|
550 |
75 |
getContentPane().add(desktop, BorderLayout.CENTER); |
551 |
75 |
desktop.setDragMode(DRAG_MODE); |
552 |
|
|
553 |
|
|
554 |
|
|
555 |
75 |
desktop.setDesktopManager(new MyDesktopManager( |
556 |
75 |
Platform.isJS() ? desktop.getDesktopManager() |
557 |
|
: new DefaultDesktopManager())); |
558 |
|
|
559 |
|
|
560 |
|
|
561 |
|
|
562 |
|
|
563 |
|
|
564 |
|
|
565 |
|
|
566 |
75 |
Rectangle dims = getLastKnownDimensions(""); |
567 |
75 |
if (dims != null) |
568 |
|
{ |
569 |
59 |
setBounds(dims); |
570 |
|
} |
571 |
|
else |
572 |
|
{ |
573 |
16 |
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); |
574 |
16 |
int xPos = Math.max(5, (screenSize.width - 900) / 2); |
575 |
16 |
int yPos = Math.max(5, (screenSize.height - 650) / 2); |
576 |
16 |
setBounds(xPos, yPos, 900, 650); |
577 |
|
} |
578 |
|
|
579 |
75 |
if (!Platform.isJS()) |
580 |
|
|
581 |
|
|
582 |
|
|
583 |
|
|
584 |
|
|
585 |
|
{ |
586 |
75 |
showNews.setVisible(false); |
587 |
|
|
588 |
75 |
experimentalFeatures.setSelected(showExperimental()); |
589 |
|
|
590 |
75 |
getIdentifiersOrgData(); |
591 |
|
|
592 |
75 |
checkURLLinks(); |
593 |
|
|
594 |
|
|
595 |
75 |
if (!nosplash) |
596 |
|
{ |
597 |
50 |
SwingUtilities.invokeLater(new Runnable() |
598 |
|
{ |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
599 |
50 |
@Override... |
600 |
|
public void run() |
601 |
|
{ |
602 |
50 |
new SplashScreen(true); |
603 |
|
} |
604 |
|
}); |
605 |
|
} |
606 |
|
|
607 |
|
|
608 |
|
|
609 |
75 |
new Thread(new Runnable() |
610 |
|
{ |
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
611 |
75 |
@Override... |
612 |
|
public void run() |
613 |
|
{ |
614 |
75 |
jalview.bin.Console.debug("Filechooser init thread started."); |
615 |
75 |
String fileFormat = FileLoader.getUseDefaultFileFormat() |
616 |
|
? Cache.getProperty("DEFAULT_FILE_FORMAT") |
617 |
|
: null; |
618 |
75 |
JalviewFileChooser.forRead(Cache.getProperty("LAST_DIRECTORY"), |
619 |
|
fileFormat); |
620 |
75 |
jalview.bin.Console.debug("Filechooser init thread finished."); |
621 |
|
} |
622 |
|
}).start(); |
623 |
|
|
624 |
75 |
changeSupport.addJalviewPropertyChangeListener("services", |
625 |
|
new PropertyChangeListener() |
626 |
|
{ |
627 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
628 |
2120 |
@Override... |
629 |
|
public void propertyChange(PropertyChangeEvent evt) |
630 |
|
{ |
631 |
2120 |
jalview.bin.Console |
632 |
|
.debug("Firing service changed event for " |
633 |
|
+ evt.getNewValue()); |
634 |
2120 |
JalviewServicesChanged(evt); |
635 |
|
} |
636 |
|
}); |
637 |
|
} |
638 |
|
|
639 |
75 |
this.setDropTarget(new java.awt.dnd.DropTarget(desktop, this)); |
640 |
|
|
641 |
75 |
MouseAdapter ma; |
642 |
75 |
this.addMouseListener(ma = new MouseAdapter() |
643 |
|
{ |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
644 |
0 |
@Override... |
645 |
|
public void mousePressed(MouseEvent evt) |
646 |
|
{ |
647 |
0 |
if (evt.isPopupTrigger()) |
648 |
|
{ |
649 |
0 |
showPasteMenu(evt.getX(), evt.getY()); |
650 |
|
} |
651 |
|
} |
652 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
653 |
0 |
@Override... |
654 |
|
public void mouseReleased(MouseEvent evt) |
655 |
|
{ |
656 |
0 |
if (evt.isPopupTrigger()) |
657 |
|
{ |
658 |
0 |
showPasteMenu(evt.getX(), evt.getY()); |
659 |
|
} |
660 |
|
} |
661 |
|
}); |
662 |
75 |
desktop.addMouseListener(ma); |
663 |
|
|
664 |
|
|
665 |
|
|
666 |
75 |
jalview.bin.Console.info((Platform.isJS() ? "JALVIEWJS" : "JALVIEW") |
667 |
|
+ ": CREATED DESKTOP"); |
668 |
|
|
669 |
|
} |
670 |
|
|
671 |
|
|
672 |
|
|
673 |
|
|
674 |
|
|
675 |
|
@return |
676 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
677 |
75 |
public boolean showExperimental()... |
678 |
|
{ |
679 |
75 |
String experimental = Cache.getDefault(EXPERIMENTAL_FEATURES, |
680 |
|
Boolean.FALSE.toString()); |
681 |
75 |
return Boolean.valueOf(experimental).booleanValue(); |
682 |
|
} |
683 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
684 |
75 |
public void doConfigureStructurePrefs()... |
685 |
|
{ |
686 |
|
|
687 |
75 |
StructureSelectionManager ssm = StructureSelectionManager |
688 |
|
.getStructureSelectionManager(this); |
689 |
75 |
StructureSelectionManager.doConfigureStructurePrefs(ssm); |
690 |
|
} |
691 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
692 |
42 |
public void checkForNews()... |
693 |
|
{ |
694 |
42 |
final Desktop me = this; |
695 |
|
|
696 |
42 |
new Thread(new Runnable() |
697 |
|
{ |
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
698 |
42 |
@Override... |
699 |
|
public void run() |
700 |
|
{ |
701 |
42 |
jalview.bin.Console.debug("Starting news thread."); |
702 |
42 |
jvnews = new BlogReader(me); |
703 |
42 |
showNews.setVisible(true); |
704 |
42 |
jalview.bin.Console.debug("Completed news thread."); |
705 |
|
} |
706 |
|
}).start(); |
707 |
|
} |
708 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
709 |
75 |
public void getIdentifiersOrgData()... |
710 |
|
{ |
711 |
75 |
if (Cache.getProperty("NOIDENTIFIERSSERVICE") == null) |
712 |
|
{ |
713 |
75 |
new Thread(new Runnable() |
714 |
|
{ |
|
|
| 75% |
Uncovered Elements: 1 (4) |
Complexity: 2 |
Complexity Density: 0.5 |
|
715 |
75 |
@Override... |
716 |
|
public void run() |
717 |
|
{ |
718 |
75 |
jalview.bin.Console |
719 |
|
.debug("Downloading data from identifiers.org"); |
720 |
75 |
try |
721 |
|
{ |
722 |
75 |
UrlDownloadClient.download(IdOrgSettings.getUrl(), |
723 |
|
IdOrgSettings.getDownloadLocation()); |
724 |
|
} catch (IOException e) |
725 |
|
{ |
726 |
0 |
jalview.bin.Console |
727 |
|
.debug("Exception downloading identifiers.org data" |
728 |
|
+ e.getMessage()); |
729 |
|
} |
730 |
|
} |
731 |
|
}).start(); |
732 |
75 |
; |
733 |
|
} |
734 |
|
} |
735 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
736 |
0 |
@Override... |
737 |
|
protected void showNews_actionPerformed(ActionEvent e) |
738 |
|
{ |
739 |
0 |
showNews(showNews.isSelected()); |
740 |
|
} |
741 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
742 |
0 |
void showNews(boolean visible)... |
743 |
|
{ |
744 |
0 |
jalview.bin.Console.debug((visible ? "Showing" : "Hiding") + " news."); |
745 |
0 |
showNews.setSelected(visible); |
746 |
0 |
if (visible && !jvnews.isVisible()) |
747 |
|
{ |
748 |
0 |
new Thread(new Runnable() |
749 |
|
{ |
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
750 |
0 |
@Override... |
751 |
|
public void run() |
752 |
|
{ |
753 |
0 |
long now = System.currentTimeMillis(); |
754 |
0 |
Desktop.instance.setProgressBar( |
755 |
|
MessageManager.getString("status.refreshing_news"), now); |
756 |
0 |
jvnews.refreshNews(); |
757 |
0 |
Desktop.instance.setProgressBar(null, now); |
758 |
0 |
jvnews.showNews(); |
759 |
|
} |
760 |
|
}).start(); |
761 |
|
} |
762 |
|
} |
763 |
|
|
764 |
|
|
765 |
|
|
766 |
|
|
767 |
|
@param |
768 |
|
|
769 |
|
@return |
770 |
|
|
771 |
|
|
|
|
| 77.4% |
Uncovered Elements: 7 (31) |
Complexity: 8 |
Complexity Density: 0.35 |
|
772 |
150 |
Rectangle getLastKnownDimensions(String windowName)... |
773 |
|
{ |
774 |
|
|
775 |
150 |
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); |
776 |
150 |
String x = Cache.getProperty(windowName + "SCREEN_X"); |
777 |
150 |
String y = Cache.getProperty(windowName + "SCREEN_Y"); |
778 |
150 |
String width = Cache.getProperty(windowName + "SCREEN_WIDTH"); |
779 |
150 |
String height = Cache.getProperty(windowName + "SCREEN_HEIGHT"); |
780 |
150 |
if ((x != null) && (y != null) && (width != null) && (height != null)) |
781 |
|
{ |
782 |
118 |
int ix = Integer.parseInt(x), iy = Integer.parseInt(y), |
783 |
|
iw = Integer.parseInt(width), ih = Integer.parseInt(height); |
784 |
118 |
if (Cache.getProperty("SCREENGEOMETRY_WIDTH") != null) |
785 |
|
{ |
786 |
|
|
787 |
|
|
788 |
|
|
789 |
118 |
double sw = ((1f * screenSize.width) / (1f * Integer |
790 |
|
.parseInt(Cache.getProperty("SCREENGEOMETRY_WIDTH")))); |
791 |
118 |
double sh = ((1f * screenSize.height) / (1f * Integer |
792 |
|
.parseInt(Cache.getProperty("SCREENGEOMETRY_HEIGHT")))); |
793 |
|
|
794 |
118 |
ix = (int) (ix * sw); |
795 |
118 |
iw = (int) (iw * sw); |
796 |
118 |
iy = (int) (iy * sh); |
797 |
118 |
ih = (int) (ih * sh); |
798 |
118 |
if (ix >= screenSize.width) |
799 |
|
{ |
800 |
0 |
jalview.bin.Console.debug( |
801 |
|
"Window geometry location recall error: shifting horizontal to within screenbounds."); |
802 |
0 |
ix = ix % screenSize.width; |
803 |
|
} |
804 |
118 |
if (iy >= screenSize.height) |
805 |
|
{ |
806 |
0 |
jalview.bin.Console.debug( |
807 |
|
"Window geometry location recall error: shifting vertical to within screenbounds."); |
808 |
0 |
iy = iy % screenSize.height; |
809 |
|
} |
810 |
118 |
jalview.bin.Console.debug( |
811 |
|
"Got last known dimensions for " + windowName + ": x:" + ix |
812 |
|
+ " y:" + iy + " width:" + iw + " height:" + ih); |
813 |
|
} |
814 |
|
|
815 |
118 |
return new Rectangle(ix, iy, iw, ih); |
816 |
|
} |
817 |
32 |
return null; |
818 |
|
} |
819 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
820 |
0 |
void showPasteMenu(int x, int y)... |
821 |
|
{ |
822 |
0 |
JPopupMenu popup = new JPopupMenu(); |
823 |
0 |
JMenuItem item = new JMenuItem( |
824 |
|
MessageManager.getString("label.paste_new_window")); |
825 |
0 |
item.addActionListener(new ActionListener() |
826 |
|
{ |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
827 |
0 |
@Override... |
828 |
|
public void actionPerformed(ActionEvent evt) |
829 |
|
{ |
830 |
0 |
paste(); |
831 |
|
} |
832 |
|
}); |
833 |
|
|
834 |
0 |
popup.add(item); |
835 |
0 |
popup.show(this, x, y); |
836 |
|
} |
837 |
|
|
|
|
| 51.7% |
Uncovered Elements: 14 (29) |
Complexity: 6 |
Complexity Density: 0.29 |
|
838 |
1 |
public void paste()... |
839 |
|
{ |
840 |
|
|
841 |
|
|
842 |
|
|
843 |
|
|
844 |
|
|
845 |
|
|
846 |
1 |
if (Desktop.jalviewClipboard != null) |
847 |
|
{ |
848 |
|
|
849 |
|
|
850 |
|
|
851 |
1 |
SequenceI[] newseq = (SequenceI[]) Desktop.jalviewClipboard[0]; |
852 |
|
|
853 |
1 |
SequenceI[] sequences = new SequenceI[newseq.length]; |
854 |
16 |
for (int i = 0; i < newseq.length; i++) |
855 |
|
{ |
856 |
15 |
sequences[i] = new Sequence(newseq[i]); |
857 |
|
} |
858 |
1 |
Alignment alignment = new Alignment(sequences); |
859 |
|
|
860 |
1 |
alignment.setDataset((Alignment) Desktop.jalviewClipboard[1]); |
861 |
1 |
AlignFrame af = new AlignFrame(alignment, AlignFrame.DEFAULT_WIDTH, |
862 |
|
AlignFrame.DEFAULT_HEIGHT); |
863 |
1 |
String newtitle = new String("Copied sequences"); |
864 |
|
|
865 |
1 |
if (Desktop.jalviewClipboard[2] != null) |
866 |
|
{ |
867 |
0 |
HiddenColumns hc = (HiddenColumns) Desktop.jalviewClipboard[2]; |
868 |
0 |
af.viewport.setHiddenColumns(hc); |
869 |
|
} |
870 |
|
|
871 |
1 |
Desktop.addInternalFrame(af, newtitle, AlignFrame.DEFAULT_WIDTH, |
872 |
|
AlignFrame.DEFAULT_HEIGHT); |
873 |
|
|
874 |
|
} |
875 |
|
else |
876 |
|
{ |
877 |
0 |
try |
878 |
|
{ |
879 |
0 |
Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard(); |
880 |
0 |
Transferable contents = c.getContents(this); |
881 |
|
|
882 |
0 |
if (contents != null) |
883 |
|
{ |
884 |
0 |
String file = (String) contents |
885 |
|
.getTransferData(DataFlavor.stringFlavor); |
886 |
|
|
887 |
0 |
FileFormatI format = new IdentifyFile().identify(file, |
888 |
|
DataSourceType.PASTE); |
889 |
|
|
890 |
0 |
new FileLoader().LoadFile(file, DataSourceType.PASTE, format); |
891 |
|
|
892 |
|
} |
893 |
|
} catch (Exception ex) |
894 |
|
{ |
895 |
0 |
jalview.bin.Console.outPrintln( |
896 |
|
"Unable to paste alignment from system clipboard:\n" + ex); |
897 |
|
} |
898 |
|
} |
899 |
|
} |
900 |
|
|
901 |
|
|
902 |
|
|
903 |
|
|
904 |
|
@param |
905 |
|
|
906 |
|
@param |
907 |
|
|
908 |
|
@param |
909 |
|
|
910 |
|
@param |
911 |
|
|
912 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
913 |
430 |
public static synchronized void addInternalFrame(... |
914 |
|
final JInternalFrame frame, String title, int w, int h) |
915 |
|
{ |
916 |
430 |
addInternalFrame(frame, title, true, w, h, true, false); |
917 |
|
} |
918 |
|
|
919 |
|
|
920 |
|
|
921 |
|
|
922 |
|
@param |
923 |
|
|
924 |
|
@param |
925 |
|
|
926 |
|
@param |
927 |
|
|
928 |
|
|
929 |
|
@param |
930 |
|
|
931 |
|
@param |
932 |
|
|
933 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
934 |
0 |
public static synchronized void addInternalFrame(... |
935 |
|
final JInternalFrame frame, String title, boolean makeVisible, |
936 |
|
int w, int h) |
937 |
|
{ |
938 |
0 |
addInternalFrame(frame, title, makeVisible, w, h, true, false); |
939 |
|
} |
940 |
|
|
941 |
|
|
942 |
|
|
943 |
|
|
944 |
|
@param |
945 |
|
|
946 |
|
@param |
947 |
|
|
948 |
|
@param |
949 |
|
|
950 |
|
@param |
951 |
|
|
952 |
|
@param |
953 |
|
|
954 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
955 |
17 |
public static synchronized void addInternalFrame(... |
956 |
|
final JInternalFrame frame, String title, int w, int h, |
957 |
|
boolean resizable) |
958 |
|
{ |
959 |
17 |
addInternalFrame(frame, title, true, w, h, resizable, false); |
960 |
|
} |
961 |
|
|
962 |
|
|
963 |
|
|
964 |
|
|
965 |
|
@param |
966 |
|
|
967 |
|
@param |
968 |
|
|
969 |
|
@param |
970 |
|
|
971 |
|
|
972 |
|
@param |
973 |
|
|
974 |
|
@param |
975 |
|
|
976 |
|
@param |
977 |
|
|
978 |
|
@param |
979 |
|
|
980 |
|
|
|
|
| 94.7% |
Uncovered Elements: 3 (57) |
Complexity: 17 |
Complexity Density: 0.4 |
|
981 |
507 |
public static synchronized void addInternalFrame(... |
982 |
|
final JInternalFrame frame, String title, boolean makeVisible, |
983 |
|
int w, int h, boolean resizable, boolean ignoreMinSize) |
984 |
|
{ |
985 |
|
|
986 |
|
|
987 |
|
|
988 |
|
|
989 |
|
|
990 |
|
|
991 |
507 |
frame.setTitle(title); |
992 |
507 |
if (frame.getWidth() < 1 || frame.getHeight() < 1) |
993 |
|
{ |
994 |
137 |
frame.setSize(w, h); |
995 |
|
} |
996 |
|
|
997 |
|
|
998 |
|
|
999 |
|
|
1000 |
507 |
if (instance == null || (System.getProperty("java.awt.headless") != null |
1001 |
|
&& System.getProperty("java.awt.headless").equals("true"))) |
1002 |
|
{ |
1003 |
52 |
return; |
1004 |
|
} |
1005 |
|
|
1006 |
455 |
openFrameCount++; |
1007 |
|
|
1008 |
455 |
if (!ignoreMinSize) |
1009 |
|
{ |
1010 |
395 |
frame.setMinimumSize( |
1011 |
|
new Dimension(DEFAULT_MIN_WIDTH, DEFAULT_MIN_HEIGHT)); |
1012 |
|
|
1013 |
|
|
1014 |
|
|
1015 |
|
|
1016 |
|
|
1017 |
395 |
if (frame instanceof AlignFrame) |
1018 |
|
{ |
1019 |
295 |
frame.setMinimumSize(new Dimension(ALIGN_FRAME_DEFAULT_MIN_WIDTH, |
1020 |
|
ALIGN_FRAME_DEFAULT_MIN_HEIGHT)); |
1021 |
|
} |
1022 |
|
} |
1023 |
|
|
1024 |
455 |
frame.setVisible(makeVisible); |
1025 |
455 |
frame.setClosable(true); |
1026 |
455 |
frame.setResizable(resizable); |
1027 |
455 |
frame.setMaximizable(resizable); |
1028 |
455 |
frame.setIconifiable(resizable); |
1029 |
455 |
frame.setOpaque(Platform.isJS()); |
1030 |
|
|
1031 |
455 |
if (frame.getX() < 1 && frame.getY() < 1) |
1032 |
|
{ |
1033 |
345 |
frame.setLocation(xOffset * openFrameCount, |
1034 |
|
yOffset * ((openFrameCount - 1) % 10) + yOffset); |
1035 |
|
} |
1036 |
|
|
1037 |
|
|
1038 |
|
|
1039 |
|
|
1040 |
|
|
1041 |
455 |
final JMenuItem menuItem = new JMenuItem(title); |
1042 |
455 |
frame.addInternalFrameListener(new InternalFrameAdapter() |
1043 |
|
{ |
|
|
| 88.9% |
Uncovered Elements: 1 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
1044 |
637 |
@Override... |
1045 |
|
public void internalFrameActivated(InternalFrameEvent evt) |
1046 |
|
{ |
1047 |
637 |
JInternalFrame itf = desktop.getSelectedFrame(); |
1048 |
637 |
if (itf != null) |
1049 |
|
{ |
1050 |
637 |
if (itf instanceof AlignFrame) |
1051 |
|
{ |
1052 |
432 |
Jalview.getInstance().setCurrentAlignFrame((AlignFrame) itf); |
1053 |
|
} |
1054 |
637 |
itf.requestFocus(); |
1055 |
|
} |
1056 |
|
} |
1057 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
1058 |
403 |
@Override... |
1059 |
|
public void internalFrameClosed(InternalFrameEvent evt) |
1060 |
|
{ |
1061 |
403 |
PaintRefresher.RemoveComponent(frame); |
1062 |
|
|
1063 |
|
|
1064 |
|
|
1065 |
|
|
1066 |
403 |
if (openFrameCount > 0) |
1067 |
|
{ |
1068 |
390 |
openFrameCount--; |
1069 |
|
} |
1070 |
|
|
1071 |
|
|
1072 |
|
|
1073 |
|
|
1074 |
403 |
if (menuItem.getActionListeners().length > 0) |
1075 |
|
{ |
1076 |
382 |
menuItem.removeActionListener(menuItem.getActionListeners()[0]); |
1077 |
|
} |
1078 |
403 |
windowMenu.remove(menuItem); |
1079 |
|
} |
1080 |
|
}); |
1081 |
|
|
1082 |
455 |
menuItem.addActionListener(new ActionListener() |
1083 |
|
{ |
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1084 |
0 |
@Override... |
1085 |
|
public void actionPerformed(ActionEvent e) |
1086 |
|
{ |
1087 |
0 |
try |
1088 |
|
{ |
1089 |
0 |
frame.setSelected(true); |
1090 |
0 |
frame.setIcon(false); |
1091 |
|
} catch (java.beans.PropertyVetoException ex) |
1092 |
|
{ |
1093 |
|
|
1094 |
|
} |
1095 |
|
} |
1096 |
|
}); |
1097 |
|
|
1098 |
455 |
setKeyBindings(frame); |
1099 |
|
|
1100 |
|
|
1101 |
|
|
1102 |
455 |
int tries = 3; |
1103 |
455 |
boolean shown = false; |
1104 |
455 |
Exception last = null; |
1105 |
455 |
do |
1106 |
|
{ |
1107 |
456 |
try |
1108 |
|
{ |
1109 |
456 |
desktop.add(frame); |
1110 |
455 |
shown = true; |
1111 |
|
} catch (IllegalArgumentException iaex) |
1112 |
|
{ |
1113 |
1 |
last = iaex; |
1114 |
1 |
tries--; |
1115 |
1 |
jalview.bin.Console.info("Squashed IllegalArgument Exception (" |
1116 |
|
+ tries + " left) for " + frame.getTitle(), iaex); |
1117 |
1 |
try |
1118 |
|
{ |
1119 |
1 |
Thread.sleep(5); |
1120 |
|
} catch (InterruptedException iex) |
1121 |
|
{ |
1122 |
|
} |
1123 |
1 |
; |
1124 |
|
} |
1125 |
456 |
} while (!shown && tries > 0); |
1126 |
455 |
if (!shown) |
1127 |
|
{ |
1128 |
0 |
jalview.bin.Console.error( |
1129 |
|
"Serious Problem whilst showing window " + frame.getTitle(), |
1130 |
|
last); |
1131 |
|
} |
1132 |
|
|
1133 |
455 |
windowMenu.add(menuItem); |
1134 |
|
|
1135 |
455 |
frame.toFront(); |
1136 |
455 |
try |
1137 |
|
{ |
1138 |
455 |
frame.setSelected(true); |
1139 |
455 |
frame.requestFocus(); |
1140 |
|
} catch (java.beans.PropertyVetoException ve) |
1141 |
|
{ |
1142 |
|
} catch (java.lang.ClassCastException cex) |
1143 |
|
{ |
1144 |
0 |
jalview.bin.Console.warn( |
1145 |
|
"Squashed a possible GUI implementation error. If you can recreate this, please look at https://issues.jalview.org/browse/JAL-869", |
1146 |
|
cex); |
1147 |
|
} |
1148 |
|
} |
1149 |
|
|
1150 |
|
|
1151 |
|
|
1152 |
|
|
1153 |
|
|
1154 |
|
@param |
1155 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 1 |
Complexity Density: 0.11 |
|
1156 |
455 |
private static void setKeyBindings(JInternalFrame frame)... |
1157 |
|
{ |
1158 |
455 |
@SuppressWarnings("serial") |
1159 |
|
final Action closeAction = new AbstractAction() |
1160 |
|
{ |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1161 |
0 |
@Override... |
1162 |
|
public void actionPerformed(ActionEvent e) |
1163 |
|
{ |
1164 |
0 |
frame.dispose(); |
1165 |
|
} |
1166 |
|
}; |
1167 |
|
|
1168 |
|
|
1169 |
|
|
1170 |
|
|
1171 |
455 |
KeyStroke ctrlWKey = KeyStroke.getKeyStroke(KeyEvent.VK_W, |
1172 |
|
InputEvent.CTRL_DOWN_MASK); |
1173 |
455 |
KeyStroke cmdWKey = KeyStroke.getKeyStroke(KeyEvent.VK_W, |
1174 |
|
ShortcutKeyMaskExWrapper.getMenuShortcutKeyMaskEx()); |
1175 |
|
|
1176 |
455 |
InputMap inputMap = frame |
1177 |
|
.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW); |
1178 |
455 |
String ctrlW = ctrlWKey.toString(); |
1179 |
455 |
inputMap.put(ctrlWKey, ctrlW); |
1180 |
455 |
inputMap.put(cmdWKey, ctrlW); |
1181 |
|
|
1182 |
455 |
ActionMap actionMap = frame.getActionMap(); |
1183 |
455 |
actionMap.put(ctrlW, closeAction); |
1184 |
|
} |
1185 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1186 |
0 |
@Override... |
1187 |
|
public void lostOwnership(Clipboard clipboard, Transferable contents) |
1188 |
|
{ |
1189 |
0 |
if (!internalCopy) |
1190 |
|
{ |
1191 |
0 |
Desktop.jalviewClipboard = null; |
1192 |
|
} |
1193 |
|
|
1194 |
0 |
internalCopy = false; |
1195 |
|
} |
1196 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
1197 |
0 |
@Override... |
1198 |
|
public void dragEnter(DropTargetDragEvent evt) |
1199 |
|
{ |
1200 |
|
} |
1201 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
1202 |
0 |
@Override... |
1203 |
|
public void dragExit(DropTargetEvent evt) |
1204 |
|
{ |
1205 |
|
} |
1206 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
1207 |
0 |
@Override... |
1208 |
|
public void dragOver(DropTargetDragEvent evt) |
1209 |
|
{ |
1210 |
|
} |
1211 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
1212 |
0 |
@Override... |
1213 |
|
public void dropActionChanged(DropTargetDragEvent evt) |
1214 |
|
{ |
1215 |
|
} |
1216 |
|
|
1217 |
|
|
1218 |
|
|
1219 |
|
@return |
1220 |
|
|
|
|
| 0% |
Uncovered Elements: 24 (24) |
Complexity: 6 |
Complexity Density: 0.38 |
|
1221 |
0 |
public boolean loadDroppedFiles(List<Object> files,... |
1222 |
|
List<DataSourceType> protocols, List<Object> failed, |
1223 |
|
List<Exception> failed_exceptions) |
1224 |
|
{ |
1225 |
0 |
for (int i = 0; i < files.size(); i++) |
1226 |
|
{ |
1227 |
0 |
Object file = files.get(i); |
1228 |
0 |
try |
1229 |
|
{ |
1230 |
|
|
1231 |
0 |
String fileName = file.toString(); |
1232 |
0 |
DataSourceType protocol = (protocols == null) ? DataSourceType.FILE |
1233 |
|
: protocols.get(i); |
1234 |
0 |
FileFormatI format = null; |
1235 |
|
|
1236 |
0 |
if (fileName.endsWith(".jar")) |
1237 |
|
{ |
1238 |
0 |
format = FileFormat.Jalview; |
1239 |
|
} |
1240 |
|
else |
1241 |
|
{ |
1242 |
0 |
format = new IdentifyFile().identify(file, protocol); |
1243 |
|
} |
1244 |
0 |
if (file instanceof File) |
1245 |
|
{ |
1246 |
0 |
Platform.cacheFileData((File) file); |
1247 |
|
} |
1248 |
0 |
new FileLoader().LoadFile(null, file, protocol, format); |
1249 |
|
} catch (Exception x) |
1250 |
|
{ |
1251 |
0 |
failed.add(file); |
1252 |
0 |
failed_exceptions.add(x); |
1253 |
0 |
jalview.bin.Console.warn( |
1254 |
|
"Unexpected Exception when handling " + file.toString(), x); |
1255 |
|
} |
1256 |
|
} |
1257 |
0 |
return failed.size()==0; |
1258 |
|
} |
1259 |
|
|
1260 |
|
|
1261 |
|
|
1262 |
|
|
1263 |
|
|
1264 |
|
@return |
1265 |
|
|
|
|
| 0% |
Uncovered Elements: 96 (96) |
Complexity: 24 |
Complexity Density: 0.38 |
|
1266 |
0 |
public boolean processAndLoadDroppedFiles(List<Object> files,... |
1267 |
|
List<DataSourceType> protocols, List<Object> failed, |
1268 |
|
List<Exception> failed_exceptions) |
1269 |
|
{ |
1270 |
|
|
1271 |
0 |
List<String> filenames = new ArrayList<>(); |
1272 |
0 |
for (int i = 0; i < files.size(); i++) |
1273 |
|
{ |
1274 |
0 |
filenames.add(files.get(i).toString()); |
1275 |
|
} |
1276 |
|
|
1277 |
|
|
1278 |
|
|
1279 |
0 |
Map<String, BaseInfo> baseInfoMap = ArgParserUtils |
1280 |
|
.processFilenames(filenames, false, files); |
1281 |
|
|
1282 |
0 |
Object file = null; |
1283 |
0 |
try |
1284 |
|
{ |
1285 |
|
|
1286 |
0 |
for (int i = 0; i < files.size(); i++) |
1287 |
|
{ |
1288 |
|
|
1289 |
0 |
file = files.get(i); |
1290 |
0 |
String fileName = file.toString(); |
1291 |
0 |
DataSourceType protocol = (protocols == null) ? DataSourceType.FILE |
1292 |
|
: protocols.get(i); |
1293 |
0 |
FileFormatI format = null; |
1294 |
|
|
1295 |
0 |
if (fileName.toLowerCase(Locale.ROOT).endsWith(".jar")) |
1296 |
|
{ |
1297 |
0 |
format = FileFormat.Jalview; |
1298 |
|
} |
1299 |
|
else |
1300 |
|
{ |
1301 |
0 |
format = new IdentifyFile().identify(file, protocol); |
1302 |
|
} |
1303 |
|
|
1304 |
|
|
1305 |
0 |
String ext = FileUtils.getExtension(fileName); |
1306 |
0 |
boolean isFeatures = ArgParserUtils.featuresExtensions |
1307 |
|
.contains(ext); |
1308 |
0 |
boolean isAnnotations = ArgParserUtils.annotationsExtensions |
1309 |
|
.contains(ext); |
1310 |
0 |
boolean isTree = ArgParserUtils.treeExtensions.contains(ext); |
1311 |
0 |
if (isFeatures || isAnnotations || isTree) |
1312 |
|
{ |
1313 |
0 |
String base = FileUtils.getBase(fileName); |
1314 |
0 |
AlignFrame matchingAf = null; |
1315 |
0 |
AlignFrame[] afs = Desktop.instance.getAlignFrames(); |
1316 |
0 |
boolean dontSkip = false; |
1317 |
0 |
for (AlignFrame af : afs) |
1318 |
|
{ |
1319 |
0 |
String afFilename = af.fileName; |
1320 |
0 |
String afTitle = af.getTitle(); |
1321 |
|
|
1322 |
|
|
1323 |
|
|
1324 |
|
|
1325 |
|
|
1326 |
|
|
1327 |
|
|
1328 |
|
|
1329 |
|
|
1330 |
|
|
1331 |
|
|
1332 |
|
|
1333 |
|
|
1334 |
0 |
if (base.equals(FileUtils.getBase(afFilename)) |
1335 |
|
|| base.equals(FileUtils.getBase(afTitle))) |
1336 |
|
{ |
1337 |
0 |
matchingAf = af; |
1338 |
0 |
break; |
1339 |
|
} |
1340 |
|
} |
1341 |
0 |
if (matchingAf != null) |
1342 |
|
{ |
1343 |
0 |
if (isFeatures) |
1344 |
|
{ |
1345 |
0 |
matchingAf.parseFeaturesFile(fileName, |
1346 |
|
AppletFormatAdapter.checkProtocol(fileName)); |
1347 |
|
} |
1348 |
0 |
else if (isAnnotations) |
1349 |
|
{ |
1350 |
0 |
matchingAf.loadJalviewDataFile(fileName, null, null, null); |
1351 |
|
} |
1352 |
0 |
else if (isTree) |
1353 |
|
{ |
1354 |
0 |
try |
1355 |
|
{ |
1356 |
0 |
NewickFile nf = new NewickFile(fileName, |
1357 |
|
AppletFormatAdapter.checkProtocol(fileName)); |
1358 |
0 |
matchingAf.getViewport().setCurrentTree( |
1359 |
|
matchingAf.showNewickTree(nf, fileName).getTree()); |
1360 |
|
} catch (IOException e) |
1361 |
|
{ |
1362 |
0 |
jalview.bin.Console.warn( |
1363 |
|
"Couldn't add potential tree '" + fileName + "'"); |
1364 |
0 |
dontSkip = true; |
1365 |
|
} |
1366 |
|
} |
1367 |
0 |
if (!dontSkip) |
1368 |
|
{ |
1369 |
|
|
1370 |
0 |
continue; |
1371 |
|
} |
1372 |
|
} |
1373 |
|
} |
1374 |
|
|
1375 |
0 |
if (file instanceof File) |
1376 |
|
{ |
1377 |
0 |
Platform.cacheFileData((File) file); |
1378 |
|
} |
1379 |
|
|
1380 |
0 |
AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(fileName, |
1381 |
|
protocol, format); |
1382 |
|
|
1383 |
0 |
if (baseInfoMap.containsKey(fileName) && baseInfoMap.get(fileName) |
1384 |
|
.getAssociatedFilesMap() != null) |
1385 |
|
{ |
1386 |
0 |
BaseInfo bi = baseInfoMap.get(fileName); |
1387 |
0 |
if (bi.getAssociatedFilesMap().containsKey(Arg.FEATURES)) |
1388 |
|
{ |
1389 |
0 |
String featuresfile = bi.getAssociatedFilesMap() |
1390 |
|
.get(Arg.FEATURES); |
1391 |
0 |
af.parseFeaturesFile(featuresfile, |
1392 |
|
AppletFormatAdapter.checkProtocol(featuresfile)); |
1393 |
|
} |
1394 |
0 |
if (bi.getAssociatedFilesMap().containsKey(Arg.ANNOTATIONS)) |
1395 |
|
{ |
1396 |
0 |
String annotationsfile = bi.getAssociatedFilesMap() |
1397 |
|
.get(Arg.ANNOTATIONS); |
1398 |
0 |
af.loadJalviewDataFile(annotationsfile, null, null, null); |
1399 |
|
} |
1400 |
0 |
if (bi.getAssociatedFilesMap().containsKey(Arg.TREE)) |
1401 |
|
{ |
1402 |
0 |
String treefile = bi.getAssociatedFilesMap().get(Arg.TREE); |
1403 |
0 |
try |
1404 |
|
{ |
1405 |
0 |
NewickFile nf = new NewickFile(treefile, |
1406 |
|
AppletFormatAdapter.checkProtocol(treefile)); |
1407 |
0 |
af.getViewport().setCurrentTree( |
1408 |
|
af.showNewickTree(nf, treefile).getTree()); |
1409 |
|
} catch (IOException e) |
1410 |
|
{ |
1411 |
0 |
jalview.bin.Console.warn( |
1412 |
|
"Couldn't add potential tree '" + treefile + "'"); |
1413 |
|
} |
1414 |
|
|
1415 |
|
} |
1416 |
|
|
1417 |
|
} |
1418 |
|
|
1419 |
|
} |
1420 |
|
} catch (Exception ex) |
1421 |
|
{ |
1422 |
|
|
1423 |
0 |
jalview.bin.Console.warn( |
1424 |
|
"Unexpected exception whilst handling drop to Desktop.", ex); |
1425 |
0 |
failed.add(file); |
1426 |
0 |
failed_exceptions.add(ex); |
1427 |
0 |
return false; |
1428 |
|
} |
1429 |
0 |
return failed.size() == 0; |
1430 |
|
} |
1431 |
|
|
|
|
| 0% |
Uncovered Elements: 23 (23) |
Complexity: 5 |
Complexity Density: 0.26 |
|
1432 |
0 |
@Override... |
1433 |
|
public void drop(DropTargetDropEvent evt) |
1434 |
|
{ |
1435 |
0 |
boolean success = true; |
1436 |
|
|
1437 |
|
|
1438 |
0 |
evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE); |
1439 |
0 |
Transferable t = evt.getTransferable(); |
1440 |
0 |
List<Object> files = new ArrayList<>(); |
1441 |
0 |
List<DataSourceType> protocols = new ArrayList<>(); |
1442 |
|
|
1443 |
0 |
try |
1444 |
|
{ |
1445 |
0 |
Desktop.transferFromDropTarget(files, protocols, evt, t); |
1446 |
|
} catch (Exception e) |
1447 |
|
{ |
1448 |
0 |
e.printStackTrace(); |
1449 |
0 |
success = false; |
1450 |
|
} |
1451 |
0 |
try |
1452 |
|
{ |
1453 |
0 |
if (files != null) |
1454 |
|
{ |
1455 |
0 |
List<Object> failed = new ArrayList<Object>(); |
1456 |
0 |
List<Exception> failed_exceptions = new ArrayList<Exception>(); |
1457 |
0 |
if (!showExperimental()) |
1458 |
|
{ |
1459 |
0 |
success = loadDroppedFiles(files, protocols, failed, |
1460 |
|
failed_exceptions); |
1461 |
|
} |
1462 |
|
else |
1463 |
|
{ |
1464 |
0 |
success = processAndLoadDroppedFiles(files, protocols, failed, |
1465 |
|
failed_exceptions); |
1466 |
|
} |
1467 |
|
} |
1468 |
|
} catch (Throwable ex) |
1469 |
|
{ |
1470 |
0 |
jalview.bin.Console.warn( |
1471 |
|
"Unexpected exception whilst handling drop to Desktop.", ex); |
1472 |
0 |
success = false; |
1473 |
|
} |
1474 |
0 |
evt.dropComplete(success); |
1475 |
|
|
1476 |
|
} |
1477 |
|
|
1478 |
|
|
1479 |
|
|
1480 |
|
|
1481 |
|
@param |
1482 |
|
|
1483 |
|
|
|
|
| 0% |
Uncovered Elements: 18 (18) |
Complexity: 4 |
Complexity Density: 0.29 |
|
1484 |
0 |
@Override... |
1485 |
|
public void inputLocalFileMenuItem_actionPerformed(AlignViewport viewport) |
1486 |
|
{ |
1487 |
0 |
String fileFormat = FileLoader.getUseDefaultFileFormat() |
1488 |
|
? Cache.getProperty("DEFAULT_FILE_FORMAT") |
1489 |
|
: null; |
1490 |
0 |
JalviewFileChooser chooser = JalviewFileChooser.forRead( |
1491 |
|
Cache.getProperty("LAST_DIRECTORY"), fileFormat, |
1492 |
|
BackupFiles.getEnabled()); |
1493 |
|
|
1494 |
0 |
chooser.setFileView(new JalviewFileView()); |
1495 |
0 |
chooser.setDialogTitle( |
1496 |
|
MessageManager.getString("label.open_local_file")); |
1497 |
0 |
chooser.setToolTipText(MessageManager.getString("action.open")); |
1498 |
|
|
1499 |
0 |
chooser.setResponseHandler(0, () -> { |
1500 |
0 |
File selectedFile = chooser.getSelectedFile(); |
1501 |
0 |
Cache.setProperty("LAST_DIRECTORY", selectedFile.getParent()); |
1502 |
|
|
1503 |
0 |
FileFormatI format = chooser.getSelectedFormat(); |
1504 |
|
|
1505 |
|
|
1506 |
|
|
1507 |
|
|
1508 |
|
|
1509 |
|
|
1510 |
0 |
if (FileFormats.getInstance().isIdentifiable(format)) |
1511 |
|
{ |
1512 |
0 |
try |
1513 |
|
{ |
1514 |
0 |
format = new IdentifyFile().identify(selectedFile, |
1515 |
|
DataSourceType.FILE); |
1516 |
|
} catch (FileFormatException e) |
1517 |
|
{ |
1518 |
|
|
1519 |
|
} |
1520 |
|
} |
1521 |
|
|
1522 |
0 |
new FileLoader().LoadFile(viewport, selectedFile, DataSourceType.FILE, |
1523 |
|
format); |
1524 |
|
}); |
1525 |
0 |
chooser.showOpenDialog(this); |
1526 |
|
} |
1527 |
|
|
1528 |
|
|
1529 |
|
|
1530 |
|
|
1531 |
|
@param |
1532 |
|
|
|
|
| 0% |
Uncovered Elements: 52 (52) |
Complexity: 10 |
Complexity Density: 0.26 |
|
1533 |
0 |
@Override... |
1534 |
|
public void inputURLMenuItem_actionPerformed(AlignViewport viewport) |
1535 |
|
{ |
1536 |
|
|
1537 |
|
|
1538 |
0 |
JLabel label = new JLabel( |
1539 |
|
MessageManager.getString("label.input_file_url")); |
1540 |
|
|
1541 |
0 |
JPanel panel = new JPanel(new GridLayout(2, 1)); |
1542 |
0 |
panel.add(label); |
1543 |
|
|
1544 |
|
|
1545 |
|
|
1546 |
|
|
1547 |
|
|
1548 |
0 |
JComponent history; |
1549 |
0 |
String urlBase = "https://www."; |
1550 |
0 |
if (Platform.isJS()) |
1551 |
|
{ |
1552 |
0 |
history = new JTextField(urlBase, 35); |
1553 |
|
} |
1554 |
|
else |
1555 |
|
|
1556 |
|
|
1557 |
|
|
1558 |
|
|
1559 |
|
|
1560 |
|
{ |
1561 |
0 |
JComboBox<String> asCombo = new JComboBox<>(); |
1562 |
0 |
asCombo.setPreferredSize(new Dimension(400, 20)); |
1563 |
0 |
asCombo.setEditable(true); |
1564 |
0 |
asCombo.addItem(urlBase); |
1565 |
0 |
String historyItems = Cache.getProperty("RECENT_URL"); |
1566 |
0 |
if (historyItems != null) |
1567 |
|
{ |
1568 |
0 |
for (String token : historyItems.split("\\t")) |
1569 |
|
{ |
1570 |
0 |
asCombo.addItem(token); |
1571 |
|
} |
1572 |
|
} |
1573 |
0 |
history = asCombo; |
1574 |
|
} |
1575 |
0 |
panel.add(history); |
1576 |
|
|
1577 |
0 |
Object[] options = new Object[] { MessageManager.getString("action.ok"), |
1578 |
|
MessageManager.getString("action.cancel") }; |
1579 |
0 |
Runnable action = () -> { |
1580 |
0 |
@SuppressWarnings("unchecked") |
1581 |
0 |
String url = (history instanceof JTextField |
1582 |
|
? ((JTextField) history).getText() |
1583 |
|
: ((JComboBox<String>) history).getEditor().getItem() |
1584 |
|
.toString().trim()); |
1585 |
|
|
1586 |
0 |
if (url.toLowerCase(Locale.ROOT).endsWith(".jar")) |
1587 |
|
{ |
1588 |
0 |
if (viewport != null) |
1589 |
|
{ |
1590 |
0 |
new FileLoader().LoadFile(viewport, url, DataSourceType.URL, |
1591 |
|
FileFormat.Jalview); |
1592 |
|
} |
1593 |
|
else |
1594 |
|
{ |
1595 |
0 |
new FileLoader().LoadFile(url, DataSourceType.URL, |
1596 |
|
FileFormat.Jalview); |
1597 |
|
} |
1598 |
|
} |
1599 |
|
else |
1600 |
|
{ |
1601 |
0 |
FileFormatI format = null; |
1602 |
0 |
try |
1603 |
|
{ |
1604 |
0 |
format = new IdentifyFile().identify(url, DataSourceType.URL); |
1605 |
|
} catch (FileNotFoundException e) |
1606 |
|
{ |
1607 |
0 |
jalview.bin.Console.error("URL '" + url + "' not found", e); |
1608 |
|
} catch (FileFormatException e) |
1609 |
|
{ |
1610 |
0 |
jalview.bin.Console.error( |
1611 |
|
"File at URL '" + url + "' format not recognised", e); |
1612 |
|
} |
1613 |
|
|
1614 |
0 |
if (format == null) |
1615 |
|
{ |
1616 |
0 |
String msg = MessageManager.formatMessage("label.couldnt_locate", |
1617 |
|
url); |
1618 |
0 |
JvOptionPane.showInternalMessageDialog(Desktop.desktop, msg, |
1619 |
|
MessageManager.getString("label.url_not_found"), |
1620 |
|
JvOptionPane.WARNING_MESSAGE); |
1621 |
0 |
return; |
1622 |
|
} |
1623 |
|
|
1624 |
0 |
if (viewport != null) |
1625 |
|
{ |
1626 |
0 |
new FileLoader().LoadFile(viewport, url, DataSourceType.URL, |
1627 |
|
format); |
1628 |
|
} |
1629 |
|
else |
1630 |
|
{ |
1631 |
0 |
new FileLoader().LoadFile(url, DataSourceType.URL, format); |
1632 |
|
} |
1633 |
|
} |
1634 |
|
}; |
1635 |
0 |
String dialogOption = MessageManager |
1636 |
|
.getString("label.input_alignment_from_url"); |
1637 |
0 |
JvOptionPane.newOptionDialog(desktop).setResponseHandler(0, action) |
1638 |
|
.showInternalDialog(panel, dialogOption, |
1639 |
|
JvOptionPane.YES_NO_CANCEL_OPTION, |
1640 |
|
JvOptionPane.PLAIN_MESSAGE, null, options, |
1641 |
|
MessageManager.getString("action.ok")); |
1642 |
|
} |
1643 |
|
|
1644 |
|
|
1645 |
|
|
1646 |
|
|
1647 |
|
@param |
1648 |
|
|
1649 |
|
|
1650 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
1651 |
0 |
@Override... |
1652 |
|
public void inputTextboxMenuItem_actionPerformed( |
1653 |
|
AlignmentViewPanel viewPanel) |
1654 |
|
{ |
1655 |
0 |
CutAndPasteTransfer cap = new CutAndPasteTransfer(); |
1656 |
0 |
cap.setForInput(viewPanel); |
1657 |
0 |
Desktop.addInternalFrame(cap, |
1658 |
|
MessageManager.getString("label.cut_paste_alignmen_file"), true, |
1659 |
|
600, 500); |
1660 |
|
} |
1661 |
|
|
1662 |
|
|
1663 |
|
|
1664 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1665 |
0 |
public void desktopQuit()... |
1666 |
|
{ |
1667 |
0 |
desktopQuit(true, false); |
1668 |
|
} |
1669 |
|
|
1670 |
|
|
1671 |
|
|
1672 |
|
|
1673 |
|
|
1674 |
|
@param |
1675 |
|
|
1676 |
|
@param |
1677 |
|
|
1678 |
|
|
|
|
| 64.9% |
Uncovered Elements: 13 (37) |
Complexity: 9 |
Complexity Density: 0.39 |
|
1679 |
81 |
public void quitTheDesktop(boolean dispose, boolean terminateJvm)... |
1680 |
|
{ |
1681 |
81 |
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); |
1682 |
81 |
Cache.setProperty("SCREENGEOMETRY_WIDTH", screen.width + ""); |
1683 |
81 |
Cache.setProperty("SCREENGEOMETRY_HEIGHT", screen.height + ""); |
1684 |
81 |
storeLastKnownDimensions("", new Rectangle(getBounds().x, getBounds().y, |
1685 |
|
getWidth(), getHeight())); |
1686 |
|
|
1687 |
81 |
if (jconsole != null) |
1688 |
|
{ |
1689 |
81 |
storeLastKnownDimensions("JAVA_CONSOLE_", jconsole.getBounds()); |
1690 |
81 |
jconsole.stopConsole(); |
1691 |
|
} |
1692 |
|
|
1693 |
81 |
if (jvnews != null) |
1694 |
|
{ |
1695 |
69 |
storeLastKnownDimensions("JALVIEW_RSS_WINDOW_", jvnews.getBounds()); |
1696 |
|
} |
1697 |
|
|
1698 |
|
|
1699 |
|
|
1700 |
81 |
closeAll_actionPerformed(null); |
1701 |
|
|
1702 |
81 |
if (dialogExecutor != null) |
1703 |
|
{ |
1704 |
40 |
dialogExecutor.shutdownNow(); |
1705 |
|
} |
1706 |
|
|
1707 |
81 |
if (groovyConsole != null) |
1708 |
|
{ |
1709 |
|
|
1710 |
0 |
groovyConsole.setDirty(false); |
1711 |
|
|
1712 |
|
|
1713 |
0 |
if (((Window) groovyConsole.getFrame()) != null |
1714 |
|
&& ((Window) groovyConsole.getFrame()).isVisible()) |
1715 |
|
{ |
1716 |
|
|
1717 |
0 |
groovyConsole.exit(); |
1718 |
|
} |
1719 |
|
else |
1720 |
|
{ |
1721 |
|
|
1722 |
|
|
1723 |
|
|
1724 |
0 |
groovyConsole = null; |
1725 |
|
} |
1726 |
|
} |
1727 |
|
|
1728 |
81 |
if (terminateJvm) |
1729 |
|
{ |
1730 |
|
|
1731 |
0 |
jalview.bin.Console.debug("Force Quit selected by user"); |
1732 |
0 |
Runtime.getRuntime().halt(0); |
1733 |
|
} |
1734 |
|
|
1735 |
81 |
jalview.bin.Console.debug("Quit selected by user"); |
1736 |
81 |
if (dispose) |
1737 |
|
{ |
1738 |
0 |
instance.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); |
1739 |
|
|
1740 |
|
} |
1741 |
|
} |
1742 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
1743 |
0 |
public QuitHandler.QResponse desktopQuit(boolean ui, boolean disposeFlag)... |
1744 |
|
{ |
1745 |
0 |
final Runnable doDesktopQuit = () -> { |
1746 |
|
|
1747 |
|
|
1748 |
0 |
if (QuitHandler.quitCancelled()) |
1749 |
|
{ |
1750 |
0 |
jalview.bin.Console |
1751 |
|
.debug("Quit was cancelled - Desktop aborting quit"); |
1752 |
0 |
return; |
1753 |
|
} |
1754 |
|
|
1755 |
|
|
1756 |
0 |
quitTheDesktop(disposeFlag, |
1757 |
|
QuitHandler.gotQuitResponse() == QResponse.FORCE_QUIT); |
1758 |
|
|
1759 |
0 |
instance.quit(); |
1760 |
|
}; |
1761 |
|
|
1762 |
0 |
return QuitHandler.getQuitResponse(ui, doDesktopQuit, doDesktopQuit, |
1763 |
|
QuitHandler.defaultCancelQuit); |
1764 |
|
} |
1765 |
|
|
1766 |
|
|
1767 |
|
|
1768 |
|
|
1769 |
|
|
1770 |
|
|
1771 |
|
|
1772 |
|
|
1773 |
|
|
1774 |
|
|
1775 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1776 |
0 |
@Override... |
1777 |
|
public void quit() |
1778 |
|
{ |
1779 |
|
|
1780 |
|
|
1781 |
|
|
1782 |
0 |
Jalview.exit("Desktop exiting.", ExitCode.OK); |
1783 |
|
} |
1784 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
1785 |
231 |
private void storeLastKnownDimensions(String string, Rectangle jc)... |
1786 |
|
{ |
1787 |
231 |
jalview.bin.Console.debug("Storing last known dimensions for " + string |
1788 |
|
+ ": x:" + jc.x + " y:" + jc.y + " width:" + jc.width |
1789 |
|
+ " height:" + jc.height); |
1790 |
|
|
1791 |
231 |
Cache.setProperty(string + "SCREEN_X", jc.x + ""); |
1792 |
231 |
Cache.setProperty(string + "SCREEN_Y", jc.y + ""); |
1793 |
231 |
Cache.setProperty(string + "SCREEN_WIDTH", jc.width + ""); |
1794 |
231 |
Cache.setProperty(string + "SCREEN_HEIGHT", jc.height + ""); |
1795 |
|
} |
1796 |
|
|
1797 |
|
|
1798 |
|
|
1799 |
|
|
1800 |
|
@param |
1801 |
|
|
1802 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1803 |
0 |
@Override... |
1804 |
|
public void aboutMenuItem_actionPerformed(ActionEvent e) |
1805 |
|
{ |
1806 |
0 |
new Thread(new Runnable() |
1807 |
|
{ |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1808 |
0 |
@Override... |
1809 |
|
public void run() |
1810 |
|
{ |
1811 |
0 |
new SplashScreen(false); |
1812 |
|
} |
1813 |
|
}).start(); |
1814 |
|
} |
1815 |
|
|
1816 |
|
|
1817 |
|
|
1818 |
|
|
1819 |
|
|
1820 |
|
|
1821 |
|
@return |
1822 |
|
|
|
|
| 88% |
Uncovered Elements: 3 (25) |
Complexity: 5 |
Complexity Density: 0.29 |
|
1823 |
552 |
public String getAboutMessage()... |
1824 |
|
{ |
1825 |
552 |
StringBuilder message = new StringBuilder(1024); |
1826 |
552 |
message.append("<div style=\"font-family: sans-serif;\">") |
1827 |
|
.append("<h1><strong>Version: ") |
1828 |
|
.append(Cache.getProperty("VERSION")).append("</strong></h1>") |
1829 |
|
.append("<strong>Built: <em>") |
1830 |
|
.append(Cache.getDefault("BUILD_DATE", "unknown")) |
1831 |
|
.append("</em> from ").append(Cache.getBuildDetailsForSplash()) |
1832 |
|
.append("</strong>"); |
1833 |
|
|
1834 |
552 |
String latestVersion = Cache.getDefault("LATEST_VERSION", "Checking"); |
1835 |
551 |
if (latestVersion.equals("Checking")) |
1836 |
|
{ |
1837 |
|
|
1838 |
|
|
1839 |
|
} |
1840 |
310 |
else if (!latestVersion.equals(Cache.getProperty("VERSION"))) |
1841 |
|
{ |
1842 |
310 |
boolean red = false; |
1843 |
310 |
if (Cache.getProperty("VERSION").toLowerCase(Locale.ROOT) |
1844 |
|
.indexOf("automated build") == -1) |
1845 |
|
{ |
1846 |
310 |
red = true; |
1847 |
|
|
1848 |
|
|
1849 |
310 |
message.append("<div style=\"color: #FF0000;font-style: bold;\">"); |
1850 |
|
} |
1851 |
|
|
1852 |
310 |
message.append("<br>!! Version ") |
1853 |
|
.append(Cache.getDefault("LATEST_VERSION", "..Checking..")) |
1854 |
|
.append(" is available for download from ") |
1855 |
|
.append(Cache.getDefault("www.jalview.org", |
1856 |
|
"https://www.jalview.org")) |
1857 |
|
.append(" !!"); |
1858 |
310 |
if (red) |
1859 |
|
{ |
1860 |
310 |
message.append("</div>"); |
1861 |
|
} |
1862 |
|
} |
1863 |
552 |
message.append("<br>Authors: "); |
1864 |
551 |
message.append(Cache.getDefault("AUTHORFNAMES", DEFAULT_AUTHORS)); |
1865 |
551 |
message.append(CITATION); |
1866 |
|
|
1867 |
552 |
message.append("</div>"); |
1868 |
|
|
1869 |
551 |
return message.toString(); |
1870 |
|
} |
1871 |
|
|
1872 |
|
|
1873 |
|
|
1874 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 3 |
Complexity Density: 0.6 |
|
1875 |
0 |
@Override... |
1876 |
|
public void documentationMenuItem_actionPerformed() |
1877 |
|
{ |
1878 |
0 |
try |
1879 |
|
{ |
1880 |
0 |
if (Platform.isJS()) |
1881 |
|
{ |
1882 |
0 |
BrowserLauncher.openURL("https://www.jalview.org/help.html"); |
1883 |
|
} |
1884 |
|
else |
1885 |
|
|
1886 |
|
|
1887 |
|
|
1888 |
|
|
1889 |
|
|
1890 |
|
{ |
1891 |
0 |
Help.showHelpWindow(); |
1892 |
|
} |
1893 |
|
} catch (Exception ex) |
1894 |
|
{ |
1895 |
0 |
jalview.bin.Console |
1896 |
|
.errPrintln("Error opening help: " + ex.getMessage()); |
1897 |
|
} |
1898 |
|
} |
1899 |
|
|
|
|
| 92.3% |
Uncovered Elements: 1 (13) |
Complexity: 4 |
Complexity Density: 0.44 |
|
1900 |
233 |
@Override... |
1901 |
|
public void closeAll_actionPerformed(ActionEvent e) |
1902 |
|
{ |
1903 |
|
|
1904 |
233 |
JInternalFrame[] frames = desktop.getAllFrames(); |
1905 |
468 |
for (int i = 0; i < frames.length; i++) |
1906 |
|
{ |
1907 |
235 |
try |
1908 |
|
{ |
1909 |
235 |
frames[i].setClosed(true); |
1910 |
|
} catch (java.beans.PropertyVetoException ex) |
1911 |
|
{ |
1912 |
|
} |
1913 |
|
} |
1914 |
233 |
Jalview.getInstance().setCurrentAlignFrame(null); |
1915 |
233 |
jalview.bin.Console.info("ALL CLOSED"); |
1916 |
|
|
1917 |
|
|
1918 |
|
|
1919 |
|
|
1920 |
|
|
1921 |
233 |
StructureSelectionManager ssm = StructureSelectionManager |
1922 |
|
.getStructureSelectionManager(this); |
1923 |
233 |
if (ssm != null) |
1924 |
|
{ |
1925 |
233 |
ssm.resetAll(); |
1926 |
|
} |
1927 |
|
} |
1928 |
|
|
|
|
| 61.5% |
Uncovered Elements: 5 (13) |
Complexity: 5 |
Complexity Density: 0.71 |
|
1929 |
7 |
public int structureViewersStillRunningCount()... |
1930 |
|
{ |
1931 |
7 |
int count = 0; |
1932 |
7 |
JInternalFrame[] frames = desktop.getAllFrames(); |
1933 |
14 |
for (int i = 0; i < frames.length; i++) |
1934 |
|
{ |
1935 |
7 |
if (frames[i] != null |
1936 |
|
&& frames[i] instanceof JalviewStructureDisplayI) |
1937 |
|
{ |
1938 |
0 |
if (((JalviewStructureDisplayI) frames[i]).stillRunning()) |
1939 |
0 |
count++; |
1940 |
|
} |
1941 |
|
} |
1942 |
7 |
return count; |
1943 |
|
} |
1944 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1945 |
0 |
@Override... |
1946 |
|
public void raiseRelated_actionPerformed(ActionEvent e) |
1947 |
|
{ |
1948 |
0 |
reorderAssociatedWindows(false, false); |
1949 |
|
} |
1950 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1951 |
0 |
@Override... |
1952 |
|
public void minimizeAssociated_actionPerformed(ActionEvent e) |
1953 |
|
{ |
1954 |
0 |
reorderAssociatedWindows(true, false); |
1955 |
|
} |
1956 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1957 |
0 |
void closeAssociatedWindows()... |
1958 |
|
{ |
1959 |
0 |
reorderAssociatedWindows(false, true); |
1960 |
|
} |
1961 |
|
|
1962 |
|
|
1963 |
|
|
1964 |
|
|
1965 |
|
|
1966 |
|
|
1967 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
1968 |
0 |
@Override... |
1969 |
|
protected void garbageCollect_actionPerformed(ActionEvent e) |
1970 |
|
{ |
1971 |
|
|
1972 |
0 |
jalview.bin.Console.debug("Collecting garbage..."); |
1973 |
0 |
System.gc(); |
1974 |
0 |
jalview.bin.Console.debug("Finished garbage collection."); |
1975 |
|
} |
1976 |
|
|
1977 |
|
|
1978 |
|
|
1979 |
|
|
1980 |
|
@see |
1981 |
|
|
1982 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1983 |
0 |
@Override... |
1984 |
|
protected void showMemusage_actionPerformed(ActionEvent e) |
1985 |
|
{ |
1986 |
0 |
desktop.showMemoryUsage(showMemusage.isSelected()); |
1987 |
|
} |
1988 |
|
|
1989 |
|
|
1990 |
|
|
1991 |
|
|
1992 |
|
@see |
1993 |
|
|
1994 |
|
|
1995 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1996 |
0 |
@Override... |
1997 |
|
protected void showConsole_actionPerformed(ActionEvent e) |
1998 |
|
{ |
1999 |
0 |
showConsole(showConsole.isSelected()); |
2000 |
|
} |
2001 |
|
|
2002 |
|
Console jconsole = null; |
2003 |
|
|
2004 |
|
|
2005 |
|
|
2006 |
|
|
2007 |
|
@param |
2008 |
|
|
|
|
| 83.3% |
Uncovered Elements: 1 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
2009 |
75 |
void showConsole(boolean selected)... |
2010 |
|
{ |
2011 |
|
|
2012 |
75 |
if (jconsole != null) |
2013 |
|
{ |
2014 |
75 |
showConsole.setSelected(selected); |
2015 |
75 |
Cache.setProperty("SHOW_JAVA_CONSOLE", |
2016 |
|
Boolean.valueOf(selected).toString()); |
2017 |
75 |
jconsole.setVisible(selected); |
2018 |
|
} |
2019 |
|
} |
2020 |
|
|
|
|
| 0% |
Uncovered Elements: 62 (62) |
Complexity: 18 |
Complexity Density: 0.56 |
|
2021 |
0 |
void reorderAssociatedWindows(boolean minimize, boolean close)... |
2022 |
|
{ |
2023 |
0 |
JInternalFrame[] frames = desktop.getAllFrames(); |
2024 |
0 |
if (frames == null || frames.length < 1) |
2025 |
|
{ |
2026 |
0 |
return; |
2027 |
|
} |
2028 |
|
|
2029 |
0 |
AlignmentViewport source = null, target = null; |
2030 |
0 |
if (frames[0] instanceof AlignFrame) |
2031 |
|
{ |
2032 |
0 |
source = ((AlignFrame) frames[0]).getCurrentView(); |
2033 |
|
} |
2034 |
0 |
else if (frames[0] instanceof TreePanel) |
2035 |
|
{ |
2036 |
0 |
source = ((TreePanel) frames[0]).getViewPort(); |
2037 |
|
} |
2038 |
0 |
else if (frames[0] instanceof PCAPanel) |
2039 |
|
{ |
2040 |
0 |
source = ((PCAPanel) frames[0]).av; |
2041 |
|
} |
2042 |
0 |
else if (frames[0].getContentPane() instanceof PairwiseAlignPanel) |
2043 |
|
{ |
2044 |
0 |
source = ((PairwiseAlignPanel) frames[0].getContentPane()).av; |
2045 |
|
} |
2046 |
|
|
2047 |
0 |
if (source != null) |
2048 |
|
{ |
2049 |
0 |
for (int i = 0; i < frames.length; i++) |
2050 |
|
{ |
2051 |
0 |
target = null; |
2052 |
0 |
if (frames[i] == null) |
2053 |
|
{ |
2054 |
0 |
continue; |
2055 |
|
} |
2056 |
0 |
if (frames[i] instanceof AlignFrame) |
2057 |
|
{ |
2058 |
0 |
target = ((AlignFrame) frames[i]).getCurrentView(); |
2059 |
|
} |
2060 |
0 |
else if (frames[i] instanceof TreePanel) |
2061 |
|
{ |
2062 |
0 |
target = ((TreePanel) frames[i]).getViewPort(); |
2063 |
|
} |
2064 |
0 |
else if (frames[i] instanceof PCAPanel) |
2065 |
|
{ |
2066 |
0 |
target = ((PCAPanel) frames[i]).av; |
2067 |
|
} |
2068 |
0 |
else if (frames[i].getContentPane() instanceof PairwiseAlignPanel) |
2069 |
|
{ |
2070 |
0 |
target = ((PairwiseAlignPanel) frames[i].getContentPane()).av; |
2071 |
|
} |
2072 |
|
|
2073 |
0 |
if (source == target) |
2074 |
|
{ |
2075 |
0 |
try |
2076 |
|
{ |
2077 |
0 |
if (close) |
2078 |
|
{ |
2079 |
0 |
frames[i].setClosed(true); |
2080 |
|
} |
2081 |
|
else |
2082 |
|
{ |
2083 |
0 |
frames[i].setIcon(minimize); |
2084 |
0 |
if (!minimize) |
2085 |
|
{ |
2086 |
0 |
frames[i].toFront(); |
2087 |
|
} |
2088 |
|
} |
2089 |
|
|
2090 |
|
} catch (java.beans.PropertyVetoException ex) |
2091 |
|
{ |
2092 |
|
} |
2093 |
|
} |
2094 |
|
} |
2095 |
|
} |
2096 |
|
} |
2097 |
|
|
2098 |
|
|
2099 |
|
|
2100 |
|
|
2101 |
|
@param |
2102 |
|
|
2103 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2104 |
0 |
@Override... |
2105 |
|
protected void preferences_actionPerformed(ActionEvent e) |
2106 |
|
{ |
2107 |
0 |
Preferences.openPreferences(); |
2108 |
|
} |
2109 |
|
|
2110 |
|
|
2111 |
|
|
2112 |
|
|
2113 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2114 |
0 |
@Override... |
2115 |
|
public void saveState_actionPerformed() |
2116 |
|
{ |
2117 |
0 |
saveState_actionPerformed(false); |
2118 |
|
} |
2119 |
|
|
|
|
| 45.5% |
Uncovered Elements: 12 (22) |
Complexity: 5 |
Complexity Density: 0.31 |
|
2120 |
2 |
public void saveState_actionPerformed(boolean saveAs)... |
2121 |
|
{ |
2122 |
2 |
java.io.File projectFile = getProjectFile(); |
2123 |
|
|
2124 |
2 |
boolean autoSave = projectFile != null && !saveAs |
2125 |
|
&& BackupFiles.getEnabled(); |
2126 |
|
|
2127 |
|
|
2128 |
|
|
2129 |
|
|
2130 |
|
|
2131 |
|
|
2132 |
2 |
boolean approveSave = false; |
2133 |
2 |
if (!autoSave) |
2134 |
|
{ |
2135 |
0 |
JalviewFileChooser chooser = new JalviewFileChooser("jvp", |
2136 |
|
"Jalview Project"); |
2137 |
|
|
2138 |
0 |
chooser.setFileView(new JalviewFileView()); |
2139 |
0 |
chooser.setDialogTitle(MessageManager.getString("label.save_state")); |
2140 |
|
|
2141 |
0 |
int value = chooser.showSaveDialog(this); |
2142 |
|
|
2143 |
0 |
if (value == JalviewFileChooser.APPROVE_OPTION) |
2144 |
|
{ |
2145 |
0 |
projectFile = chooser.getSelectedFile(); |
2146 |
0 |
setProjectFile(projectFile); |
2147 |
0 |
approveSave = true; |
2148 |
|
} |
2149 |
|
} |
2150 |
|
|
2151 |
2 |
if (approveSave || autoSave) |
2152 |
|
{ |
2153 |
2 |
final Desktop me = this; |
2154 |
2 |
final java.io.File chosenFile = projectFile; |
2155 |
2 |
new Thread(new Runnable() |
2156 |
|
{ |
|
|
| 68.4% |
Uncovered Elements: 6 (19) |
Complexity: 6 |
Complexity Density: 0.46 |
|
2157 |
2 |
@Override... |
2158 |
|
public void run() |
2159 |
|
{ |
2160 |
|
|
2161 |
2 |
setProgressBar(MessageManager.formatMessage( |
2162 |
|
"label.saving_jalview_project", new Object[] |
2163 |
|
{ chosenFile.getName() }), chosenFile.hashCode()); |
2164 |
2 |
Cache.setProperty("LAST_DIRECTORY", chosenFile.getParent()); |
2165 |
|
|
2166 |
|
|
2167 |
2 |
try |
2168 |
|
{ |
2169 |
2 |
boolean doBackup = BackupFiles.getEnabled(); |
2170 |
2 |
BackupFiles backupfiles = doBackup ? new BackupFiles(chosenFile) |
2171 |
|
: null; |
2172 |
|
|
2173 |
2 |
new Jalview2XML().saveState( |
2174 |
2 |
doBackup ? backupfiles.getTempFile() : chosenFile); |
2175 |
|
|
2176 |
2 |
if (doBackup) |
2177 |
|
{ |
2178 |
2 |
backupfiles.setWriteSuccess(true); |
2179 |
2 |
backupfiles.rollBackupsAndRenameTempFile(); |
2180 |
|
} |
2181 |
|
} catch (OutOfMemoryError oom) |
2182 |
|
{ |
2183 |
0 |
new OOMWarning("Whilst saving current state to " |
2184 |
|
+ chosenFile.getName(), oom); |
2185 |
|
} catch (Exception ex) |
2186 |
|
{ |
2187 |
0 |
jalview.bin.Console.error("Problems whilst trying to save to " |
2188 |
|
+ chosenFile.getName(), ex); |
2189 |
0 |
JvOptionPane.showMessageDialog(me, |
2190 |
|
MessageManager.formatMessage( |
2191 |
|
"label.error_whilst_saving_current_state_to", |
2192 |
|
new Object[] |
2193 |
|
{ chosenFile.getName() }), |
2194 |
|
MessageManager.getString("label.couldnt_save_project"), |
2195 |
|
JvOptionPane.WARNING_MESSAGE); |
2196 |
|
} |
2197 |
2 |
setProgressBar(null, chosenFile.hashCode()); |
2198 |
|
} |
2199 |
|
}).start(); |
2200 |
|
} |
2201 |
|
} |
2202 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2203 |
0 |
@Override... |
2204 |
|
public void saveAsState_actionPerformed(ActionEvent e) |
2205 |
|
{ |
2206 |
0 |
saveState_actionPerformed(true); |
2207 |
|
} |
2208 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2209 |
7 |
protected void setProjectFile(File choice)... |
2210 |
|
{ |
2211 |
7 |
this.projectFile = choice; |
2212 |
|
} |
2213 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2214 |
2 |
public File getProjectFile()... |
2215 |
|
{ |
2216 |
2 |
return this.projectFile; |
2217 |
|
} |
2218 |
|
|
2219 |
|
|
2220 |
|
|
2221 |
|
|
2222 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 1 |
Complexity Density: 0.08 |
|
2223 |
0 |
@Override... |
2224 |
|
public void loadState_actionPerformed() |
2225 |
|
{ |
2226 |
0 |
final String[] suffix = new String[] { "jvp", "jar" }; |
2227 |
0 |
final String[] desc = new String[] { "Jalview Project", |
2228 |
|
"Jalview Project (old)" }; |
2229 |
0 |
JalviewFileChooser chooser = new JalviewFileChooser( |
2230 |
|
Cache.getProperty("LAST_DIRECTORY"), suffix, desc, |
2231 |
|
"Jalview Project", true, BackupFiles.getEnabled()); |
2232 |
|
|
2233 |
|
|
2234 |
|
|
2235 |
0 |
chooser.setFileView(new JalviewFileView()); |
2236 |
0 |
chooser.setDialogTitle(MessageManager.getString("label.restore_state")); |
2237 |
0 |
chooser.setResponseHandler(0, () -> { |
2238 |
0 |
File selectedFile = chooser.getSelectedFile(); |
2239 |
0 |
setProjectFile(selectedFile); |
2240 |
0 |
String choice = selectedFile.getAbsolutePath(); |
2241 |
0 |
Cache.setProperty("LAST_DIRECTORY", selectedFile.getParent()); |
2242 |
0 |
new Thread(new Runnable() |
2243 |
|
{ |
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 3 |
Complexity Density: 0.6 |
|
2244 |
0 |
@Override... |
2245 |
|
public void run() |
2246 |
|
{ |
2247 |
0 |
try |
2248 |
|
{ |
2249 |
0 |
new Jalview2XML().loadJalviewAlign(selectedFile); |
2250 |
|
} catch (OutOfMemoryError oom) |
2251 |
|
{ |
2252 |
0 |
new OOMWarning("Whilst loading project from " + choice, oom); |
2253 |
|
} catch (Exception ex) |
2254 |
|
{ |
2255 |
0 |
jalview.bin.Console.error( |
2256 |
|
"Problems whilst loading project from " + choice, ex); |
2257 |
0 |
JvOptionPane.showMessageDialog(Desktop.desktop, |
2258 |
|
MessageManager.formatMessage( |
2259 |
|
"label.error_whilst_loading_project_from", |
2260 |
|
new Object[] |
2261 |
|
{ choice }), |
2262 |
|
MessageManager.getString("label.couldnt_load_project"), |
2263 |
|
JvOptionPane.WARNING_MESSAGE); |
2264 |
|
} |
2265 |
|
} |
2266 |
|
}, "Project Loader").start(); |
2267 |
|
}); |
2268 |
|
|
2269 |
0 |
chooser.showOpenDialog(this); |
2270 |
|
} |
2271 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2272 |
0 |
@Override... |
2273 |
|
public void inputSequence_actionPerformed(ActionEvent e) |
2274 |
|
{ |
2275 |
0 |
new SequenceFetcher(this); |
2276 |
|
} |
2277 |
|
|
2278 |
|
JPanel progressPanel; |
2279 |
|
|
2280 |
|
ArrayList<JPanel> fileLoadingPanels = new ArrayList<>(); |
2281 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2282 |
293 |
public void startLoading(final Object fileName)... |
2283 |
|
{ |
2284 |
293 |
if (fileLoadingCount == 0) |
2285 |
|
{ |
2286 |
293 |
fileLoadingPanels.add(addProgressPanel(MessageManager |
2287 |
|
.formatMessage("label.loading_file", new Object[] |
2288 |
|
{ fileName }))); |
2289 |
|
} |
2290 |
293 |
fileLoadingCount++; |
2291 |
|
} |
2292 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (16) |
Complexity: 2 |
Complexity Density: 0.14 |
|
2293 |
414 |
private JPanel addProgressPanel(String string)... |
2294 |
|
{ |
2295 |
414 |
if (progressPanel == null) |
2296 |
|
{ |
2297 |
292 |
progressPanel = new JPanel(new GridLayout(1, 1)); |
2298 |
292 |
totalProgressCount = 0; |
2299 |
292 |
instance.getContentPane().add(progressPanel, BorderLayout.SOUTH); |
2300 |
|
} |
2301 |
414 |
JPanel thisprogress = new JPanel(new BorderLayout(10, 5)); |
2302 |
414 |
JProgressBar progressBar = new JProgressBar(); |
2303 |
414 |
progressBar.setIndeterminate(true); |
2304 |
|
|
2305 |
414 |
thisprogress.add(new JLabel(string), BorderLayout.WEST); |
2306 |
|
|
2307 |
414 |
thisprogress.add(progressBar, BorderLayout.CENTER); |
2308 |
414 |
progressPanel.add(thisprogress); |
2309 |
414 |
((GridLayout) progressPanel.getLayout()).setRows( |
2310 |
|
((GridLayout) progressPanel.getLayout()).getRows() + 1); |
2311 |
414 |
++totalProgressCount; |
2312 |
414 |
instance.validate(); |
2313 |
413 |
return thisprogress; |
2314 |
|
} |
2315 |
|
|
2316 |
|
int totalProgressCount = 0; |
2317 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (13) |
Complexity: 3 |
Complexity Density: 0.33 |
|
2318 |
404 |
private void removeProgressPanel(JPanel progbar)... |
2319 |
|
{ |
2320 |
404 |
if (progressPanel != null) |
2321 |
|
{ |
2322 |
393 |
synchronized (progressPanel) |
2323 |
|
{ |
2324 |
393 |
progressPanel.remove(progbar); |
2325 |
393 |
GridLayout gl = (GridLayout) progressPanel.getLayout(); |
2326 |
393 |
gl.setRows(gl.getRows() - 1); |
2327 |
393 |
if (--totalProgressCount < 1) |
2328 |
|
{ |
2329 |
270 |
this.getContentPane().remove(progressPanel); |
2330 |
270 |
progressPanel = null; |
2331 |
|
} |
2332 |
|
} |
2333 |
|
} |
2334 |
404 |
validate(); |
2335 |
|
} |
2336 |
|
|
|
|
| 90.9% |
Uncovered Elements: 1 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
2337 |
319 |
public void stopLoading()... |
2338 |
|
{ |
2339 |
319 |
fileLoadingCount--; |
2340 |
319 |
if (fileLoadingCount < 1) |
2341 |
|
{ |
2342 |
608 |
while (fileLoadingPanels.size() > 0) |
2343 |
|
{ |
2344 |
289 |
removeProgressPanel(fileLoadingPanels.remove(0)); |
2345 |
|
} |
2346 |
319 |
fileLoadingPanels.clear(); |
2347 |
319 |
fileLoadingCount = 0; |
2348 |
|
} |
2349 |
319 |
validate(); |
2350 |
|
} |
2351 |
|
|
|
|
| 75% |
Uncovered Elements: 1 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
2352 |
10 |
public static int getViewCount(String alignmentId)... |
2353 |
|
{ |
2354 |
10 |
AlignmentViewport[] aps = getViewports(alignmentId); |
2355 |
10 |
return (aps == null) ? 0 : aps.length; |
2356 |
|
} |
2357 |
|
|
2358 |
|
|
2359 |
|
|
2360 |
|
@param |
2361 |
|
|
2362 |
|
@return |
2363 |
|
|
|
|
| 90.9% |
Uncovered Elements: 2 (22) |
Complexity: 6 |
Complexity Density: 0.43 |
|
2364 |
89 |
public static AlignmentPanel[] getAlignmentPanels(String alignmentId)... |
2365 |
|
{ |
2366 |
89 |
if (Desktop.desktop == null) |
2367 |
|
{ |
2368 |
|
|
2369 |
|
|
2370 |
0 |
return null; |
2371 |
|
} |
2372 |
89 |
List<AlignmentPanel> aps = new ArrayList<>(); |
2373 |
89 |
AlignFrame[] frames = Desktop.getDesktopAlignFrames(); |
2374 |
89 |
if (frames == null) |
2375 |
|
{ |
2376 |
21 |
return null; |
2377 |
|
} |
2378 |
68 |
for (AlignFrame af : frames) |
2379 |
|
{ |
2380 |
178 |
for (AlignmentPanel ap : af.alignPanels) |
2381 |
|
{ |
2382 |
228 |
if (alignmentId == null |
2383 |
|
|| alignmentId.equals(ap.av.getSequenceSetId())) |
2384 |
|
{ |
2385 |
138 |
aps.add(ap); |
2386 |
|
} |
2387 |
|
} |
2388 |
|
} |
2389 |
68 |
if (aps.size() == 0) |
2390 |
|
{ |
2391 |
11 |
return null; |
2392 |
|
} |
2393 |
57 |
AlignmentPanel[] vap = aps.toArray(new AlignmentPanel[aps.size()]); |
2394 |
57 |
return vap; |
2395 |
|
} |
2396 |
|
|
2397 |
|
|
2398 |
|
|
2399 |
|
|
2400 |
|
@param |
2401 |
|
|
2402 |
|
|
2403 |
|
@return |
2404 |
|
|
|
|
| 73.9% |
Uncovered Elements: 6 (23) |
Complexity: 8 |
Complexity Density: 0.62 |
|
2405 |
10 |
public static AlignmentViewport[] getViewports(String sequenceSetId)... |
2406 |
|
{ |
2407 |
10 |
List<AlignmentViewport> viewp = new ArrayList<>(); |
2408 |
10 |
if (desktop != null) |
2409 |
|
{ |
2410 |
10 |
AlignFrame[] frames = Desktop.getDesktopAlignFrames(); |
2411 |
|
|
2412 |
10 |
for (AlignFrame afr : frames) |
2413 |
|
{ |
2414 |
11 |
if (sequenceSetId == null || afr.getViewport().getSequenceSetId() |
2415 |
|
.equals(sequenceSetId)) |
2416 |
|
{ |
2417 |
10 |
if (afr.alignPanels != null) |
2418 |
|
{ |
2419 |
10 |
for (AlignmentPanel ap : afr.alignPanels) |
2420 |
|
{ |
2421 |
11 |
if (sequenceSetId == null |
2422 |
|
|| sequenceSetId.equals(ap.av.getSequenceSetId())) |
2423 |
|
{ |
2424 |
11 |
viewp.add(ap.av); |
2425 |
|
} |
2426 |
|
} |
2427 |
|
} |
2428 |
|
else |
2429 |
|
{ |
2430 |
0 |
viewp.add(afr.getViewport()); |
2431 |
|
} |
2432 |
|
} |
2433 |
|
} |
2434 |
10 |
if (viewp.size() > 0) |
2435 |
|
{ |
2436 |
10 |
return viewp.toArray(new AlignmentViewport[viewp.size()]); |
2437 |
|
} |
2438 |
|
} |
2439 |
0 |
return null; |
2440 |
|
} |
2441 |
|
|
2442 |
|
|
2443 |
|
|
2444 |
|
|
2445 |
|
@param |
2446 |
|
|
|
|
| 77.8% |
Uncovered Elements: 8 (36) |
Complexity: 13 |
Complexity Density: 0.59 |
|
2447 |
1 |
public static void explodeViews(AlignFrame af)... |
2448 |
|
{ |
2449 |
1 |
int size = af.alignPanels.size(); |
2450 |
1 |
if (size < 2) |
2451 |
|
{ |
2452 |
0 |
return; |
2453 |
|
} |
2454 |
|
|
2455 |
|
|
2456 |
1 |
FeatureSettings viewFeatureSettings = (af.featureSettings != null |
2457 |
|
&& af.featureSettings.isOpen()) ? af.featureSettings : null; |
2458 |
1 |
Rectangle fsBounds = af.getFeatureSettingsGeometry(); |
2459 |
6 |
for (int i = 0; i < size; i++) |
2460 |
|
{ |
2461 |
5 |
AlignmentPanel ap = af.alignPanels.get(i); |
2462 |
|
|
2463 |
5 |
AlignFrame newaf = new AlignFrame(ap); |
2464 |
|
|
2465 |
|
|
2466 |
5 |
if (ap == af.alignPanel) |
2467 |
|
{ |
2468 |
1 |
if (viewFeatureSettings != null && viewFeatureSettings.fr.ap == ap) |
2469 |
|
{ |
2470 |
0 |
newaf.featureSettings = viewFeatureSettings; |
2471 |
|
} |
2472 |
1 |
newaf.setFeatureSettingsGeometry(fsBounds); |
2473 |
|
} |
2474 |
|
|
2475 |
|
|
2476 |
|
|
2477 |
|
|
2478 |
|
|
2479 |
5 |
Rectangle geometry = ap.av.getExplodedGeometry(); |
2480 |
5 |
if (geometry != null) |
2481 |
|
{ |
2482 |
5 |
newaf.setBounds(geometry); |
2483 |
|
} |
2484 |
|
|
2485 |
5 |
ap.av.setGatherViewsHere(false); |
2486 |
|
|
2487 |
5 |
addInternalFrame(newaf, af.getTitle(), AlignFrame.DEFAULT_WIDTH, |
2488 |
|
AlignFrame.DEFAULT_HEIGHT); |
2489 |
|
|
2490 |
|
|
2491 |
|
|
2492 |
5 |
if (ap == af.alignPanel && newaf.featureSettings != null |
2493 |
|
&& newaf.featureSettings.isOpen() |
2494 |
|
&& af.alignPanel.getAlignViewport().isShowSequenceFeatures()) |
2495 |
|
{ |
2496 |
0 |
newaf.showFeatureSettingsUI(); |
2497 |
|
} |
2498 |
|
} |
2499 |
|
|
2500 |
1 |
af.featureSettings = null; |
2501 |
1 |
af.alignPanels.clear(); |
2502 |
1 |
af.closeMenuItem_actionPerformed(true); |
2503 |
|
|
2504 |
|
} |
2505 |
|
|
2506 |
|
|
2507 |
|
|
2508 |
|
|
2509 |
|
|
2510 |
|
|
2511 |
|
|
2512 |
|
@param |
2513 |
|
|
|
|
| 78% |
Uncovered Elements: 9 (41) |
Complexity: 12 |
Complexity Density: 0.48 |
|
2514 |
14 |
public void gatherViews(AlignFrame source)... |
2515 |
|
{ |
2516 |
14 |
source.viewport.setGatherViewsHere(true); |
2517 |
14 |
source.viewport.setExplodedGeometry(source.getBounds()); |
2518 |
14 |
JInternalFrame[] frames = desktop.getAllFrames(); |
2519 |
14 |
String viewId = source.viewport.getSequenceSetId(); |
2520 |
120 |
for (int t = 0; t < frames.length; t++) |
2521 |
|
{ |
2522 |
106 |
if (frames[t] instanceof AlignFrame && frames[t] != source) |
2523 |
|
{ |
2524 |
53 |
AlignFrame af = (AlignFrame) frames[t]; |
2525 |
53 |
boolean gatherThis = false; |
2526 |
118 |
for (int a = 0; a < af.alignPanels.size(); a++) |
2527 |
|
{ |
2528 |
65 |
AlignmentPanel ap = af.alignPanels.get(a); |
2529 |
65 |
if (viewId.equals(ap.av.getSequenceSetId())) |
2530 |
|
{ |
2531 |
39 |
gatherThis = true; |
2532 |
39 |
ap.av.setGatherViewsHere(false); |
2533 |
39 |
ap.av.setExplodedGeometry(af.getBounds()); |
2534 |
39 |
source.addAlignmentPanel(ap, false); |
2535 |
|
} |
2536 |
|
} |
2537 |
|
|
2538 |
53 |
if (gatherThis) |
2539 |
|
{ |
2540 |
39 |
if (af.featureSettings != null && af.featureSettings.isOpen()) |
2541 |
|
{ |
2542 |
0 |
if (source.featureSettings == null) |
2543 |
|
{ |
2544 |
|
|
2545 |
0 |
source.featureSettings = af.featureSettings; |
2546 |
0 |
source.setFeatureSettingsGeometry( |
2547 |
|
af.getFeatureSettingsGeometry()); |
2548 |
|
} |
2549 |
|
else |
2550 |
|
{ |
2551 |
|
|
2552 |
0 |
af.featureSettings.close(); |
2553 |
|
} |
2554 |
|
} |
2555 |
39 |
af.alignPanels.clear(); |
2556 |
39 |
af.closeMenuItem_actionPerformed(true); |
2557 |
|
} |
2558 |
|
} |
2559 |
|
} |
2560 |
|
|
2561 |
|
|
2562 |
14 |
if (source.featureSettings != null && source.featureSettings.isOpen()) |
2563 |
|
{ |
2564 |
0 |
source.showFeatureSettingsUI(); |
2565 |
|
} |
2566 |
|
|
2567 |
|
} |
2568 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2569 |
38 |
public JInternalFrame[] getAllFrames()... |
2570 |
|
{ |
2571 |
38 |
return desktop.getAllFrames(); |
2572 |
|
} |
2573 |
|
|
2574 |
|
|
2575 |
|
|
2576 |
|
|
2577 |
|
|
2578 |
|
@param |
2579 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
2580 |
36 |
public void checkForQuestionnaire(String url)... |
2581 |
|
{ |
2582 |
36 |
UserQuestionnaireCheck jvq = new UserQuestionnaireCheck(url); |
2583 |
|
|
2584 |
36 |
new Thread(jvq).start(); |
2585 |
|
} |
2586 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2587 |
75 |
public void checkURLLinks()... |
2588 |
|
{ |
2589 |
|
|
2590 |
75 |
addDialogThread(new Runnable() |
2591 |
|
{ |
|
|
| 40.5% |
Uncovered Elements: 22 (37) |
Complexity: 7 |
Complexity Density: 0.26 |
|
2592 |
74 |
@Override... |
2593 |
|
public void run() |
2594 |
|
{ |
2595 |
74 |
if (Cache.getDefault("CHECKURLLINKS", true)) |
2596 |
|
{ |
2597 |
|
|
2598 |
|
|
2599 |
74 |
List<String> links = Preferences.sequenceUrlLinks |
2600 |
|
.getLinksForMenu(); |
2601 |
|
|
2602 |
|
|
2603 |
|
|
2604 |
74 |
ListIterator<String> li = links.listIterator(); |
2605 |
74 |
boolean check = false; |
2606 |
74 |
List<JLabel> urls = new ArrayList<>(); |
2607 |
217 |
while (li.hasNext()) |
2608 |
|
{ |
2609 |
143 |
String link = li.next(); |
2610 |
143 |
if (link.contains(jalview.util.UrlConstants.SEQUENCE_ID) |
2611 |
|
&& !UrlConstants.isDefaultString(link)) |
2612 |
|
{ |
2613 |
0 |
check = true; |
2614 |
0 |
int barPos = link.indexOf("|"); |
2615 |
0 |
String urlMsg = barPos == -1 ? link |
2616 |
|
: link.substring(0, barPos) + ": " |
2617 |
|
+ link.substring(barPos + 1); |
2618 |
0 |
urls.add(new JLabel(urlMsg)); |
2619 |
|
} |
2620 |
|
} |
2621 |
74 |
if (!check) |
2622 |
|
{ |
2623 |
74 |
return; |
2624 |
|
} |
2625 |
|
|
2626 |
|
|
2627 |
|
|
2628 |
0 |
JPanel msgPanel = new JPanel(); |
2629 |
0 |
msgPanel.setLayout(new BoxLayout(msgPanel, BoxLayout.PAGE_AXIS)); |
2630 |
0 |
msgPanel.add(Box.createVerticalGlue()); |
2631 |
0 |
JLabel msg = new JLabel(MessageManager |
2632 |
|
.getString("label.SEQUENCE_ID_for_DB_ACCESSION1")); |
2633 |
0 |
JLabel msg2 = new JLabel(MessageManager |
2634 |
|
.getString("label.SEQUENCE_ID_for_DB_ACCESSION2")); |
2635 |
0 |
msgPanel.add(msg); |
2636 |
0 |
for (JLabel url : urls) |
2637 |
|
{ |
2638 |
0 |
msgPanel.add(url); |
2639 |
|
} |
2640 |
0 |
msgPanel.add(msg2); |
2641 |
|
|
2642 |
0 |
final JCheckBox jcb = new JCheckBox( |
2643 |
|
MessageManager.getString("label.do_not_display_again")); |
2644 |
0 |
jcb.addActionListener(new ActionListener() |
2645 |
|
{ |
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
2646 |
0 |
@Override... |
2647 |
|
public void actionPerformed(ActionEvent e) |
2648 |
|
{ |
2649 |
|
|
2650 |
0 |
boolean showWarningAgain = !jcb.isSelected(); |
2651 |
0 |
Cache.setProperty("CHECKURLLINKS", |
2652 |
|
Boolean.valueOf(showWarningAgain).toString()); |
2653 |
|
} |
2654 |
|
}); |
2655 |
0 |
msgPanel.add(jcb); |
2656 |
|
|
2657 |
0 |
JvOptionPane.showMessageDialog(Desktop.desktop, msgPanel, |
2658 |
|
MessageManager |
2659 |
|
.getString("label.SEQUENCE_ID_no_longer_used"), |
2660 |
|
JvOptionPane.WARNING_MESSAGE); |
2661 |
|
} |
2662 |
|
} |
2663 |
|
}); |
2664 |
|
} |
2665 |
|
|
2666 |
|
|
2667 |
|
|
2668 |
|
|
2669 |
|
|
2670 |
|
|
2671 |
|
@author |
2672 |
|
|
|
|
| 31% |
Uncovered Elements: 29 (42) |
Complexity: 13 |
Complexity Density: 0.48 |
|
2673 |
|
public class MyDesktopPane extends JDesktopPane implements Runnable |
2674 |
|
{ |
2675 |
|
private static final float ONE_MB = 1048576f; |
2676 |
|
|
2677 |
|
boolean showMemoryUsage = false; |
2678 |
|
|
2679 |
|
Runtime runtime; |
2680 |
|
|
2681 |
|
java.text.NumberFormat df; |
2682 |
|
|
2683 |
|
float maxMemory, allocatedMemory, freeMemory, totalFreeMemory, |
2684 |
|
percentUsage; |
2685 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2686 |
75 |
public MyDesktopPane(boolean showMemoryUsage)... |
2687 |
|
{ |
2688 |
75 |
showMemoryUsage(showMemoryUsage); |
2689 |
|
} |
2690 |
|
|
|
|
| 57.1% |
Uncovered Elements: 3 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
2691 |
75 |
public void showMemoryUsage(boolean showMemory)... |
2692 |
|
{ |
2693 |
75 |
this.showMemoryUsage = showMemory; |
2694 |
75 |
if (showMemory) |
2695 |
|
{ |
2696 |
0 |
Thread worker = new Thread(this); |
2697 |
0 |
worker.start(); |
2698 |
|
} |
2699 |
75 |
repaint(); |
2700 |
|
} |
2701 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2702 |
582 |
public boolean isShowMemoryUsage()... |
2703 |
|
{ |
2704 |
582 |
return showMemoryUsage; |
2705 |
|
} |
2706 |
|
|
|
|
| 0% |
Uncovered Elements: 15 (15) |
Complexity: 3 |
Complexity Density: 0.23 |
|
2707 |
0 |
@Override... |
2708 |
|
public void run() |
2709 |
|
{ |
2710 |
0 |
df = java.text.NumberFormat.getNumberInstance(); |
2711 |
0 |
df.setMaximumFractionDigits(2); |
2712 |
0 |
runtime = Runtime.getRuntime(); |
2713 |
|
|
2714 |
0 |
while (showMemoryUsage) |
2715 |
|
{ |
2716 |
0 |
try |
2717 |
|
{ |
2718 |
0 |
maxMemory = runtime.maxMemory() / ONE_MB; |
2719 |
0 |
allocatedMemory = runtime.totalMemory() / ONE_MB; |
2720 |
0 |
freeMemory = runtime.freeMemory() / ONE_MB; |
2721 |
0 |
totalFreeMemory = freeMemory + (maxMemory - allocatedMemory); |
2722 |
|
|
2723 |
0 |
percentUsage = (totalFreeMemory / maxMemory) * 100; |
2724 |
|
|
2725 |
|
|
2726 |
|
{ |
2727 |
|
|
2728 |
|
|
2729 |
|
|
2730 |
|
} |
2731 |
0 |
repaint(); |
2732 |
|
|
2733 |
0 |
Thread.sleep(3000); |
2734 |
|
} catch (Exception ex) |
2735 |
|
{ |
2736 |
0 |
ex.printStackTrace(); |
2737 |
|
} |
2738 |
|
} |
2739 |
|
} |
2740 |
|
|
|
|
| 23.1% |
Uncovered Elements: 10 (13) |
Complexity: 6 |
Complexity Density: 0.86 |
|
2741 |
2408 |
@Override... |
2742 |
|
public void paintComponent(Graphics g) |
2743 |
|
{ |
2744 |
2408 |
if (showMemoryUsage && g != null && df != null) |
2745 |
|
{ |
2746 |
0 |
if (percentUsage < 20) |
2747 |
|
{ |
2748 |
0 |
g.setColor(Color.red); |
2749 |
|
} |
2750 |
0 |
FontMetrics fm = g.getFontMetrics(); |
2751 |
0 |
if (fm != null) |
2752 |
|
{ |
2753 |
0 |
g.drawString(MessageManager.formatMessage("label.memory_stats", |
2754 |
|
new Object[] |
2755 |
|
{ df.format(totalFreeMemory), df.format(maxMemory), |
2756 |
|
df.format(percentUsage) }), |
2757 |
|
10, getHeight() - fm.getHeight()); |
2758 |
|
} |
2759 |
|
} |
2760 |
|
|
2761 |
|
|
2762 |
2408 |
Desktop.debugScaleMessage(Desktop.getDesktop().getGraphics()); |
2763 |
|
} |
2764 |
|
} |
2765 |
|
|
2766 |
|
|
2767 |
|
|
2768 |
|
|
2769 |
|
@return |
2770 |
|
|
|
|
| 82.9% |
Uncovered Elements: 6 (35) |
Complexity: 9 |
Complexity Density: 0.47 |
|
2771 |
305 |
@Override... |
2772 |
|
public AlignFrame[] getAlignFrames() |
2773 |
|
{ |
2774 |
305 |
if (desktop == null) |
2775 |
|
{ |
2776 |
0 |
return null; |
2777 |
|
} |
2778 |
|
|
2779 |
305 |
JInternalFrame[] frames = Desktop.desktop.getAllFrames(); |
2780 |
|
|
2781 |
305 |
if (frames == null) |
2782 |
|
{ |
2783 |
0 |
return null; |
2784 |
|
} |
2785 |
305 |
List<AlignFrame> avp = new ArrayList<>(); |
2786 |
|
|
2787 |
1005 |
for (int i = frames.length - 1; i > -1; i--) |
2788 |
|
{ |
2789 |
700 |
if (frames[i] instanceof AlignFrame) |
2790 |
|
{ |
2791 |
419 |
avp.add((AlignFrame) frames[i]); |
2792 |
|
} |
2793 |
281 |
else if (frames[i] instanceof SplitFrame) |
2794 |
|
{ |
2795 |
|
|
2796 |
|
|
2797 |
|
|
2798 |
48 |
GSplitFrame sf = (GSplitFrame) frames[i]; |
2799 |
48 |
if (sf.getTopFrame() instanceof AlignFrame) |
2800 |
|
{ |
2801 |
48 |
avp.add((AlignFrame) sf.getTopFrame()); |
2802 |
|
} |
2803 |
48 |
if (sf.getBottomFrame() instanceof AlignFrame) |
2804 |
|
{ |
2805 |
48 |
avp.add((AlignFrame) sf.getBottomFrame()); |
2806 |
|
} |
2807 |
|
} |
2808 |
|
} |
2809 |
305 |
if (avp.size() == 0) |
2810 |
|
{ |
2811 |
50 |
return null; |
2812 |
|
} |
2813 |
255 |
AlignFrame afs[] = avp.toArray(new AlignFrame[avp.size()]); |
2814 |
255 |
return afs; |
2815 |
|
} |
2816 |
|
|
2817 |
|
|
2818 |
|
|
2819 |
|
|
|
|
| 55.6% |
Uncovered Elements: 4 (9) |
Complexity: 4 |
Complexity Density: 0.8 |
|
2820 |
305 |
public static AlignFrame[] getDesktopAlignFrames()... |
2821 |
|
{ |
2822 |
305 |
if (Jalview.isHeadlessMode()) |
2823 |
|
{ |
2824 |
|
|
2825 |
0 |
return Jalview.getInstance().getAlignFrames(); |
2826 |
|
} |
2827 |
|
|
2828 |
305 |
if (instance != null && desktop != null) |
2829 |
|
{ |
2830 |
305 |
return instance.getAlignFrames(); |
2831 |
|
} |
2832 |
|
|
2833 |
0 |
return null; |
2834 |
|
} |
2835 |
|
|
2836 |
|
|
2837 |
|
|
2838 |
|
|
2839 |
|
@return |
2840 |
|
|
|
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 5 |
Complexity Density: 0.42 |
|
2841 |
0 |
public GStructureViewer[] getJmols()... |
2842 |
|
{ |
2843 |
0 |
JInternalFrame[] frames = Desktop.desktop.getAllFrames(); |
2844 |
|
|
2845 |
0 |
if (frames == null) |
2846 |
|
{ |
2847 |
0 |
return null; |
2848 |
|
} |
2849 |
0 |
List<GStructureViewer> avp = new ArrayList<>(); |
2850 |
|
|
2851 |
0 |
for (int i = frames.length - 1; i > -1; i--) |
2852 |
|
{ |
2853 |
0 |
if (frames[i] instanceof AppJmol) |
2854 |
|
{ |
2855 |
0 |
GStructureViewer af = (GStructureViewer) frames[i]; |
2856 |
0 |
avp.add(af); |
2857 |
|
} |
2858 |
|
} |
2859 |
0 |
if (avp.size() == 0) |
2860 |
|
{ |
2861 |
0 |
return null; |
2862 |
|
} |
2863 |
0 |
GStructureViewer afs[] = avp.toArray(new GStructureViewer[avp.size()]); |
2864 |
0 |
return afs; |
2865 |
|
} |
2866 |
|
|
2867 |
|
|
2868 |
|
|
2869 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 0.5 |
|
2870 |
0 |
@Override... |
2871 |
|
public void groovyShell_actionPerformed() |
2872 |
|
{ |
2873 |
0 |
try |
2874 |
|
{ |
2875 |
0 |
openGroovyConsole(); |
2876 |
|
} catch (Exception ex) |
2877 |
|
{ |
2878 |
0 |
jalview.bin.Console.error("Groovy Console creation failed.", ex); |
2879 |
0 |
JvOptionPane.showInternalMessageDialog(Desktop.desktop, |
2880 |
|
|
2881 |
|
MessageManager.getString("label.couldnt_create_groovy_shell"), |
2882 |
|
MessageManager.getString("label.groovy_support_failed"), |
2883 |
|
JvOptionPane.ERROR_MESSAGE); |
2884 |
|
} |
2885 |
|
} |
2886 |
|
|
2887 |
|
|
2888 |
|
|
2889 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 2 |
Complexity Density: 0.2 |
|
2890 |
0 |
void openGroovyConsole()... |
2891 |
|
{ |
2892 |
0 |
if (groovyConsole == null) |
2893 |
|
{ |
2894 |
0 |
JalviewObjectI j = new JalviewObject(this); |
2895 |
0 |
groovyConsole = new groovy.console.ui.Console(); |
2896 |
0 |
groovyConsole.setVariable(JalviewObjectI.jalviewObjectName, j); |
2897 |
0 |
groovyConsole.setVariable(JalviewObjectI.currentAlFrameName, |
2898 |
|
getCurrentAlignFrame()); |
2899 |
0 |
groovyConsole.run(); |
2900 |
|
|
2901 |
|
|
2902 |
|
|
2903 |
|
|
2904 |
|
|
2905 |
|
|
2906 |
|
|
2907 |
0 |
Window window = (Window) groovyConsole.getFrame(); |
2908 |
0 |
window.addWindowListener(new WindowAdapter() |
2909 |
|
{ |
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
2910 |
0 |
@Override... |
2911 |
|
public void windowClosed(WindowEvent e) |
2912 |
|
{ |
2913 |
|
|
2914 |
|
|
2915 |
|
|
2916 |
0 |
addQuitHandler(); |
2917 |
0 |
enableExecuteGroovy(false); |
2918 |
|
} |
2919 |
|
}); |
2920 |
|
} |
2921 |
|
|
2922 |
|
|
2923 |
|
|
2924 |
|
|
2925 |
0 |
((Window) groovyConsole.getFrame()).setVisible(true); |
2926 |
|
|
2927 |
|
|
2928 |
|
|
2929 |
|
|
2930 |
|
|
2931 |
0 |
enableExecuteGroovy(true); |
2932 |
|
} |
2933 |
|
|
2934 |
|
|
2935 |
|
|
2936 |
|
|
2937 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
2938 |
0 |
protected void addQuitHandler()... |
2939 |
|
{ |
2940 |
0 |
getRootPane() |
2941 |
|
.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put( |
2942 |
|
KeyStroke |
2943 |
|
.getKeyStroke(KeyEvent.VK_Q, |
2944 |
|
jalview.util.ShortcutKeyMaskExWrapper |
2945 |
|
.getMenuShortcutKeyMaskEx()), |
2946 |
|
"Quit"); |
2947 |
0 |
getRootPane().getActionMap().put("Quit", new AbstractAction() |
2948 |
|
{ |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2949 |
0 |
@Override... |
2950 |
|
public void actionPerformed(ActionEvent e) |
2951 |
|
{ |
2952 |
0 |
desktopQuit(); |
2953 |
|
} |
2954 |
|
}); |
2955 |
|
} |
2956 |
|
|
2957 |
|
|
2958 |
|
|
2959 |
|
|
2960 |
|
@param |
2961 |
|
|
2962 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
2963 |
0 |
public void enableExecuteGroovy(boolean enabled)... |
2964 |
|
{ |
2965 |
|
|
2966 |
|
|
2967 |
|
|
2968 |
|
|
2969 |
0 |
groovyShell.setEnabled(!enabled); |
2970 |
|
|
2971 |
0 |
AlignFrame[] alignFrames = getDesktopAlignFrames(); |
2972 |
0 |
if (alignFrames != null) |
2973 |
|
{ |
2974 |
0 |
for (AlignFrame af : alignFrames) |
2975 |
|
{ |
2976 |
0 |
af.setGroovyEnabled(enabled); |
2977 |
|
} |
2978 |
|
} |
2979 |
|
} |
2980 |
|
|
2981 |
|
|
2982 |
|
|
2983 |
|
|
2984 |
|
|
2985 |
|
private Hashtable<Long, JPanel> progressBars; |
2986 |
|
|
2987 |
|
private Hashtable<Long, IProgressIndicatorHandler> progressBarHandlers; |
2988 |
|
|
2989 |
|
private Hashtable<Long, String> progressBarMessages; |
2990 |
|
|
2991 |
|
|
2992 |
|
|
2993 |
|
|
2994 |
|
@see |
2995 |
|
|
|
|
| 90.5% |
Uncovered Elements: 2 (21) |
Complexity: 5 |
Complexity Density: 0.38 |
|
2996 |
236 |
@Override... |
2997 |
|
public void setProgressBar(String message, long id) |
2998 |
|
{ |
2999 |
236 |
if (progressBars == null) |
3000 |
|
{ |
3001 |
46 |
progressBars = new Hashtable<>(); |
3002 |
46 |
progressBarHandlers = new Hashtable<>(); |
3003 |
46 |
progressBarMessages = new Hashtable<>(); |
3004 |
|
} |
3005 |
|
|
3006 |
236 |
if (progressBars.get(Long.valueOf(id)) != null) |
3007 |
|
{ |
3008 |
115 |
JPanel panel = progressBars.remove(Long.valueOf(id)); |
3009 |
115 |
if (progressBarHandlers.contains(Long.valueOf(id))) |
3010 |
|
{ |
3011 |
0 |
progressBarHandlers.remove(Long.valueOf(id)); |
3012 |
|
} |
3013 |
115 |
removeProgressPanel(panel); |
3014 |
|
} |
3015 |
|
else |
3016 |
|
{ |
3017 |
121 |
progressBars.put(Long.valueOf(id), addProgressPanel(message)); |
3018 |
120 |
if (message!=null) { |
3019 |
118 |
progressBarMessages.put(id, message); |
3020 |
|
} else { |
3021 |
2 |
progressBarMessages.remove(id); |
3022 |
|
} |
3023 |
|
} |
3024 |
|
} |
3025 |
|
|
|
|
| 0% |
Uncovered Elements: 14 (14) |
Complexity: 4 |
Complexity Density: 0.5 |
|
3026 |
0 |
@Override... |
3027 |
|
public JProgressBar getProgressBar(long id) |
3028 |
|
{ |
3029 |
0 |
if (progressBars == null) |
3030 |
0 |
return null; |
3031 |
|
|
3032 |
0 |
if (progressBars.get(Long.valueOf(id)) == null) |
3033 |
0 |
return null; |
3034 |
|
|
3035 |
0 |
for (Component c : progressBars.get(Long.valueOf(id)).getComponents()) |
3036 |
|
{ |
3037 |
0 |
if (c.getClass() == JProgressBar.class) |
3038 |
0 |
return (JProgressBar) c; |
3039 |
|
} |
3040 |
0 |
return null; |
3041 |
|
} |
3042 |
|
|
3043 |
|
|
3044 |
|
|
3045 |
|
|
3046 |
|
@see |
3047 |
|
|
3048 |
|
|
|
|
| 0% |
Uncovered Elements: 13 (13) |
Complexity: 4 |
Complexity Density: 0.44 |
|
3049 |
0 |
@Override... |
3050 |
|
public void registerHandler(final long id, |
3051 |
|
final IProgressIndicatorHandler handler) |
3052 |
|
{ |
3053 |
0 |
if (progressBarHandlers == null |
3054 |
|
|| !progressBars.containsKey(Long.valueOf(id))) |
3055 |
|
{ |
3056 |
0 |
throw new Error(MessageManager.getString( |
3057 |
|
"error.call_setprogressbar_before_registering_handler")); |
3058 |
|
} |
3059 |
0 |
progressBarHandlers.put(Long.valueOf(id), handler); |
3060 |
0 |
final JPanel progressPanel = progressBars.get(Long.valueOf(id)); |
3061 |
0 |
if (handler.canCancel()) |
3062 |
|
{ |
3063 |
0 |
JButton cancel = new JButton( |
3064 |
|
MessageManager.getString("action.cancel")); |
3065 |
0 |
final IProgressIndicator us = this; |
3066 |
0 |
cancel.addActionListener(new ActionListener() |
3067 |
|
{ |
3068 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
3069 |
0 |
@Override... |
3070 |
|
public void actionPerformed(ActionEvent e) |
3071 |
|
{ |
3072 |
0 |
handler.cancelActivity(id); |
3073 |
0 |
us.setProgressBar(MessageManager |
3074 |
|
.formatMessage("label.cancelled_params", new Object[] |
3075 |
|
{ ((JLabel) progressPanel.getComponent(0)).getText() }), |
3076 |
|
id); |
3077 |
|
} |
3078 |
|
}); |
3079 |
0 |
progressPanel.add(cancel, BorderLayout.EAST); |
3080 |
|
} |
3081 |
|
} |
3082 |
|
|
3083 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3084 |
0 |
@Override... |
3085 |
|
public String getMessage(long id) |
3086 |
|
{ |
3087 |
0 |
return progressBarMessages.get(id); |
3088 |
|
} |
3089 |
|
|
3090 |
|
|
3091 |
|
|
3092 |
|
@param |
3093 |
|
@param |
3094 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 4 |
Complexity Density: 0.5 |
|
3095 |
0 |
@Override... |
3096 |
|
public void setProgressBarMessage(long id,String message) |
3097 |
|
{ |
3098 |
0 |
Container progBar = progressBars.get(id); |
3099 |
0 |
if (progBar == null || progBar.getComponentCount() == 0) |
3100 |
|
{ |
3101 |
0 |
return; |
3102 |
|
} |
3103 |
0 |
for (Component component : progBar.getComponents()) |
3104 |
|
{ |
3105 |
0 |
if (component.getClass().equals(JLabel.class)) |
3106 |
|
{ |
3107 |
0 |
((JLabel) component).setText(message);; |
3108 |
0 |
progBar.revalidate(); |
3109 |
|
} |
3110 |
|
} |
3111 |
|
} |
3112 |
|
|
3113 |
|
|
3114 |
|
|
3115 |
|
@return |
3116 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
3117 |
10 |
@Override... |
3118 |
|
public boolean operationInProgress() |
3119 |
|
{ |
3120 |
10 |
if (progressBars != null && progressBars.size() > 0) |
3121 |
|
{ |
3122 |
0 |
return true; |
3123 |
|
} |
3124 |
10 |
return false; |
3125 |
|
} |
3126 |
|
|
3127 |
|
|
3128 |
|
|
3129 |
|
|
3130 |
|
|
3131 |
|
|
3132 |
|
@param |
3133 |
|
@return |
3134 |
|
|
|
|
| 66.7% |
Uncovered Elements: 4 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
3135 |
1 |
public static AlignFrame getAlignFrameFor(AlignViewportI viewport)... |
3136 |
|
{ |
3137 |
1 |
if (desktop != null) |
3138 |
|
{ |
3139 |
1 |
AlignmentPanel[] aps = getAlignmentPanels( |
3140 |
|
viewport.getSequenceSetId()); |
3141 |
1 |
for (int panel = 0; aps != null && panel < aps.length; panel++) |
3142 |
|
{ |
3143 |
1 |
if (aps[panel] != null && aps[panel].av == viewport) |
3144 |
|
{ |
3145 |
1 |
return aps[panel].alignFrame; |
3146 |
|
} |
3147 |
|
} |
3148 |
|
} |
3149 |
0 |
return null; |
3150 |
|
} |
3151 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3152 |
0 |
public VamsasApplication getVamsasApplication()... |
3153 |
|
{ |
3154 |
|
|
3155 |
0 |
return null; |
3156 |
|
|
3157 |
|
} |
3158 |
|
|
3159 |
|
|
3160 |
|
|
3161 |
|
|
3162 |
|
private boolean inBatchMode = false; |
3163 |
|
|
3164 |
|
|
3165 |
|
|
3166 |
|
|
3167 |
|
@return |
3168 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3169 |
27 |
public boolean isInBatchMode()... |
3170 |
|
{ |
3171 |
27 |
return inBatchMode; |
3172 |
|
} |
3173 |
|
|
3174 |
|
|
3175 |
|
|
3176 |
|
|
3177 |
|
@param |
3178 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3179 |
145 |
public void setInBatchMode(boolean inBatchMode)... |
3180 |
|
{ |
3181 |
145 |
this.inBatchMode = inBatchMode; |
3182 |
|
} |
3183 |
|
|
3184 |
|
|
3185 |
|
|
3186 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3187 |
65 |
public void startServiceDiscovery()... |
3188 |
|
{ |
3189 |
65 |
startServiceDiscovery(false); |
3190 |
|
} |
3191 |
|
|
3192 |
|
|
3193 |
|
|
3194 |
|
|
3195 |
|
@param |
3196 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3197 |
65 |
public void startServiceDiscovery(boolean blocking)... |
3198 |
|
{ |
3199 |
65 |
startServiceDiscovery(blocking, false); |
3200 |
|
} |
3201 |
|
|
3202 |
|
|
3203 |
|
|
3204 |
|
|
3205 |
|
@param |
3206 |
|
|
3207 |
|
@param |
3208 |
|
|
3209 |
|
|
3210 |
|
|
|
|
| 65.2% |
Uncovered Elements: 8 (23) |
Complexity: 7 |
Complexity Density: 0.47 |
|
3211 |
65 |
public void startServiceDiscovery(boolean blocking,... |
3212 |
|
boolean ignore_SHOW_JWS2_SERVICES_preference) |
3213 |
|
{ |
3214 |
65 |
boolean alive = true; |
3215 |
65 |
Thread t0 = null, t1 = null, t2 = null; |
3216 |
|
|
3217 |
65 |
if (true) |
3218 |
|
{ |
3219 |
|
|
3220 |
65 |
if (discoverer == null) |
3221 |
|
{ |
3222 |
6 |
discoverer = new jalview.ws.jws1.Discoverer(); |
3223 |
|
|
3224 |
6 |
discoverer.addPropertyChangeListener(changeSupport); |
3225 |
|
} |
3226 |
|
|
3227 |
|
|
3228 |
65 |
(t0 = new Thread(discoverer)).start(); |
3229 |
|
} |
3230 |
|
|
3231 |
65 |
if (ignore_SHOW_JWS2_SERVICES_preference |
3232 |
|
|| Cache.getDefault("SHOW_JWS2_SERVICES", true)) |
3233 |
|
{ |
3234 |
65 |
t2 = jalview.ws.jws2.Jws2Discoverer.getDiscoverer() |
3235 |
|
.startDiscoverer(changeSupport); |
3236 |
|
} |
3237 |
65 |
Thread t3 = null; |
3238 |
|
{ |
3239 |
|
|
3240 |
|
} |
3241 |
65 |
if (blocking) |
3242 |
|
{ |
3243 |
0 |
while (alive) |
3244 |
|
{ |
3245 |
0 |
try |
3246 |
|
{ |
3247 |
0 |
Thread.sleep(15); |
3248 |
|
} catch (Exception e) |
3249 |
|
{ |
3250 |
|
} |
3251 |
0 |
alive = (t1 != null && t1.isAlive()) || (t2 != null && t2.isAlive()) |
3252 |
|
|| (t3 != null && t3.isAlive()) |
3253 |
|
|| (t0 != null && t0.isAlive()); |
3254 |
|
} |
3255 |
|
} |
3256 |
|
} |
3257 |
|
|
3258 |
|
|
3259 |
|
|
3260 |
|
|
3261 |
|
@param |
3262 |
|
|
|
|
| 33.3% |
Uncovered Elements: 10 (15) |
Complexity: 6 |
Complexity Density: 0.86 |
|
3263 |
2120 |
protected void JalviewServicesChanged(PropertyChangeEvent evt)... |
3264 |
|
{ |
3265 |
2120 |
if (evt.getNewValue() == null || evt.getNewValue() instanceof Vector) |
3266 |
|
{ |
3267 |
2120 |
final String ermsg = jalview.ws.jws2.Jws2Discoverer.getDiscoverer() |
3268 |
|
.getErrorMessages(); |
3269 |
2120 |
if (ermsg != null) |
3270 |
|
{ |
3271 |
0 |
if (Cache.getDefault("SHOW_WSDISCOVERY_ERRORS", true)) |
3272 |
|
{ |
3273 |
0 |
if (serviceChangedDialog == null) |
3274 |
|
{ |
3275 |
|
|
3276 |
0 |
addDialogThread(serviceChangedDialog = new Runnable() |
3277 |
|
{ |
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
3278 |
0 |
@Override... |
3279 |
|
public void run() |
3280 |
|
{ |
3281 |
|
|
3282 |
|
|
3283 |
|
|
3284 |
|
|
3285 |
|
|
3286 |
|
|
3287 |
|
|
3288 |
|
|
3289 |
|
|
3290 |
|
|
3291 |
|
|
3292 |
|
|
3293 |
|
|
3294 |
|
|
3295 |
|
|
3296 |
|
|
3297 |
|
|
3298 |
|
|
3299 |
|
|
3300 |
|
|
3301 |
0 |
JvOptionPane.showConfirmDialog(Desktop.desktop, |
3302 |
|
new JLabel("<html><table width=\"450\"><tr><td>" |
3303 |
|
+ ermsg + "</td></tr></table>" |
3304 |
|
+ "<p>It may be that you have invalid JABA URLs<br/>in your web service preferences," |
3305 |
|
+ "<br>or as a command-line argument, or mis-configured HTTP proxy settings.</p>" |
3306 |
|
+ "<p>Check the <em>Connections</em> and <em>Web services</em> tab<br/>of the" |
3307 |
|
+ " Tools->Preferences dialog box to change them.</p></html>"), |
3308 |
|
"Web Service Configuration Problem", |
3309 |
|
JvOptionPane.DEFAULT_OPTION, |
3310 |
|
JvOptionPane.ERROR_MESSAGE); |
3311 |
0 |
serviceChangedDialog = null; |
3312 |
|
|
3313 |
|
} |
3314 |
|
}); |
3315 |
|
} |
3316 |
|
} |
3317 |
|
else |
3318 |
|
{ |
3319 |
0 |
jalview.bin.Console.error( |
3320 |
|
"Errors reported by JABA discovery service. Check web services preferences.\n" |
3321 |
|
+ ermsg); |
3322 |
|
} |
3323 |
|
} |
3324 |
|
} |
3325 |
|
} |
3326 |
|
|
3327 |
|
private Runnable serviceChangedDialog = null; |
3328 |
|
|
3329 |
|
|
3330 |
|
|
3331 |
|
|
3332 |
|
|
3333 |
|
|
3334 |
|
@param |
3335 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
3336 |
0 |
public static void showUrl(final String url)... |
3337 |
|
{ |
3338 |
0 |
if (url != null && !url.trim().equals("")) |
3339 |
|
{ |
3340 |
0 |
jalview.bin.Console.info("Opening URL: " + url); |
3341 |
0 |
showUrl(url, Desktop.instance); |
3342 |
|
} |
3343 |
|
else |
3344 |
|
{ |
3345 |
0 |
jalview.bin.Console.warn("Ignoring attempt to show an empty URL."); |
3346 |
|
} |
3347 |
|
|
3348 |
|
} |
3349 |
|
|
3350 |
|
|
3351 |
|
|
3352 |
|
|
3353 |
|
@param |
3354 |
|
@param |
3355 |
|
|
3356 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3357 |
0 |
public static void showUrl(final String url,... |
3358 |
|
final IProgressIndicator progress) |
3359 |
|
{ |
3360 |
0 |
new Thread(new Runnable() |
3361 |
|
{ |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 4 |
Complexity Density: 0.5 |
|
3362 |
0 |
@Override... |
3363 |
|
public void run() |
3364 |
|
{ |
3365 |
0 |
try |
3366 |
|
{ |
3367 |
0 |
if (progress != null) |
3368 |
|
{ |
3369 |
0 |
progress.setProgressBar(MessageManager |
3370 |
|
.formatMessage("status.opening_params", new Object[] |
3371 |
|
{ url }), this.hashCode()); |
3372 |
|
} |
3373 |
0 |
jalview.util.BrowserLauncher.openURL(url); |
3374 |
|
} catch (Exception ex) |
3375 |
|
{ |
3376 |
0 |
JvOptionPane.showInternalMessageDialog(Desktop.desktop, |
3377 |
|
MessageManager |
3378 |
|
.getString("label.web_browser_not_found_unix"), |
3379 |
|
MessageManager.getString("label.web_browser_not_found"), |
3380 |
|
JvOptionPane.WARNING_MESSAGE); |
3381 |
|
|
3382 |
0 |
ex.printStackTrace(); |
3383 |
|
} |
3384 |
0 |
if (progress != null) |
3385 |
|
{ |
3386 |
0 |
progress.setProgressBar(null, this.hashCode()); |
3387 |
|
} |
3388 |
|
} |
3389 |
|
}).start(); |
3390 |
|
} |
3391 |
|
|
3392 |
|
public static WsParamSetManager wsparamManager = null; |
3393 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
3394 |
750 |
public static ParamManager getUserParameterStore()... |
3395 |
|
{ |
3396 |
750 |
if (wsparamManager == null) |
3397 |
|
{ |
3398 |
6 |
wsparamManager = new WsParamSetManager(); |
3399 |
|
} |
3400 |
750 |
return wsparamManager; |
3401 |
|
} |
3402 |
|
|
3403 |
|
|
3404 |
|
|
3405 |
|
|
3406 |
|
@param |
3407 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 4 |
Complexity Density: 0.57 |
|
3408 |
0 |
public static void hyperlinkUpdate(HyperlinkEvent e)... |
3409 |
|
{ |
3410 |
0 |
if (e.getEventType() == EventType.ACTIVATED) |
3411 |
|
{ |
3412 |
0 |
String url = null; |
3413 |
0 |
try |
3414 |
|
{ |
3415 |
0 |
url = e.getURL().toString(); |
3416 |
0 |
Desktop.showUrl(url); |
3417 |
|
} catch (Exception x) |
3418 |
|
{ |
3419 |
0 |
if (url != null) |
3420 |
|
{ |
3421 |
0 |
jalview.bin.Console |
3422 |
|
.error("Couldn't handle string " + url + " as a URL."); |
3423 |
|
} |
3424 |
|
|
3425 |
|
} |
3426 |
|
|
3427 |
|
} |
3428 |
|
} |
3429 |
|
|
3430 |
|
|
3431 |
|
|
3432 |
|
|
3433 |
|
ExecutorService dialogExecutor = Executors.newFixedThreadPool(3); |
3434 |
|
|
3435 |
|
|
3436 |
|
|
3437 |
|
|
3438 |
|
private volatile boolean dialogPause = true; |
3439 |
|
|
3440 |
|
|
3441 |
|
|
3442 |
|
|
3443 |
|
private Semaphore block = new Semaphore(0); |
3444 |
|
|
3445 |
|
private static groovy.console.ui.Console groovyConsole; |
3446 |
|
|
3447 |
|
|
3448 |
|
|
3449 |
|
|
3450 |
|
@param |
3451 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3452 |
144 |
public void addDialogThread(final Runnable prompter)... |
3453 |
|
{ |
3454 |
144 |
dialogExecutor.submit(new Runnable() |
3455 |
|
{ |
|
|
| 81.8% |
Uncovered Elements: 2 (11) |
Complexity: 4 |
Complexity Density: 0.57 |
|
3456 |
144 |
@Override... |
3457 |
|
public void run() |
3458 |
|
{ |
3459 |
144 |
if (dialogPause) |
3460 |
|
{ |
3461 |
53 |
acquireDialogQueue(); |
3462 |
|
} |
3463 |
134 |
if (instance == null) |
3464 |
|
{ |
3465 |
0 |
return; |
3466 |
|
} |
3467 |
134 |
try |
3468 |
|
{ |
3469 |
134 |
SwingUtilities.invokeAndWait(prompter); |
3470 |
|
} catch (Exception q) |
3471 |
|
{ |
3472 |
11 |
jalview.bin.Console.warn("Unexpected Exception in dialog thread.", |
3473 |
|
q); |
3474 |
|
} |
3475 |
|
} |
3476 |
|
}); |
3477 |
|
} |
3478 |
|
|
3479 |
|
private boolean dialogQueueStarted = false; |
3480 |
|
|
|
|
| 66.7% |
Uncovered Elements: 2 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
3481 |
75 |
public void startDialogQueue()... |
3482 |
|
{ |
3483 |
75 |
if (dialogQueueStarted) |
3484 |
|
{ |
3485 |
0 |
return; |
3486 |
|
} |
3487 |
|
|
3488 |
|
|
3489 |
75 |
releaseDialogQueue(); |
3490 |
75 |
dialogQueueStarted = true; |
3491 |
|
} |
3492 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 0.5 |
|
3493 |
178 |
public void acquireDialogQueue()... |
3494 |
|
{ |
3495 |
178 |
try |
3496 |
|
{ |
3497 |
178 |
block.acquire(); |
3498 |
136 |
dialogPause = true; |
3499 |
|
} catch (InterruptedException e) |
3500 |
|
{ |
3501 |
32 |
jalview.bin.Console.debug("Interruption when acquiring DialogueQueue", |
3502 |
|
e); |
3503 |
|
} |
3504 |
|
} |
3505 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
3506 |
199 |
public void releaseDialogQueue()... |
3507 |
|
{ |
3508 |
199 |
if (!dialogPause) |
3509 |
|
{ |
3510 |
31 |
return; |
3511 |
|
} |
3512 |
168 |
block.release(); |
3513 |
168 |
dialogPause = false; |
3514 |
|
} |
3515 |
|
|
3516 |
|
|
3517 |
|
|
3518 |
|
|
3519 |
|
|
3520 |
|
|
3521 |
|
|
3522 |
|
|
3523 |
|
|
3524 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 2 |
Complexity Density: 0.2 |
|
3525 |
0 |
@Override... |
3526 |
|
protected void snapShotWindow_actionPerformed(ActionEvent e) |
3527 |
|
{ |
3528 |
|
|
3529 |
0 |
invalidate(); |
3530 |
|
|
3531 |
0 |
int width = getWidth(); |
3532 |
0 |
int height = getHeight(); |
3533 |
0 |
File of = new File( |
3534 |
|
"Jalview_snapshot_" + System.currentTimeMillis() + ".eps"); |
3535 |
0 |
ImageWriterI writer = new ImageWriterI() |
3536 |
|
{ |
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
3537 |
0 |
@Override... |
3538 |
|
public void exportImage(Graphics g) throws Exception |
3539 |
|
{ |
3540 |
0 |
paintAll(g); |
3541 |
0 |
jalview.bin.Console.info("Successfully written snapshot to file " |
3542 |
|
+ of.getAbsolutePath()); |
3543 |
|
} |
3544 |
|
}; |
3545 |
0 |
String title = "View of desktop"; |
3546 |
0 |
ImageExporter exporter = new ImageExporter(writer, null, TYPE.EPS, |
3547 |
|
title); |
3548 |
0 |
try |
3549 |
|
{ |
3550 |
0 |
exporter.doExport(of, this, width, height, title); |
3551 |
|
} catch (ImageOutputException ioex) |
3552 |
|
{ |
3553 |
0 |
jalview.bin.Console.error( |
3554 |
|
"Unexpected error whilst writing Jalview desktop snapshot as EPS", |
3555 |
|
ioex); |
3556 |
|
} |
3557 |
|
} |
3558 |
|
|
3559 |
|
|
3560 |
|
|
3561 |
|
|
3562 |
|
|
3563 |
|
|
3564 |
|
|
3565 |
|
|
3566 |
|
@param |
3567 |
|
|
|
|
| 0% |
Uncovered Elements: 41 (41) |
Complexity: 6 |
Complexity Density: 0.19 |
|
3568 |
0 |
public void explodeViews(SplitFrame sf)... |
3569 |
|
{ |
3570 |
0 |
AlignFrame oldTopFrame = (AlignFrame) sf.getTopFrame(); |
3571 |
0 |
AlignFrame oldBottomFrame = (AlignFrame) sf.getBottomFrame(); |
3572 |
0 |
List<? extends AlignmentViewPanel> topPanels = oldTopFrame |
3573 |
|
.getAlignPanels(); |
3574 |
0 |
List<? extends AlignmentViewPanel> bottomPanels = oldBottomFrame |
3575 |
|
.getAlignPanels(); |
3576 |
0 |
int viewCount = topPanels.size(); |
3577 |
0 |
if (viewCount < 2) |
3578 |
|
{ |
3579 |
0 |
return; |
3580 |
|
} |
3581 |
|
|
3582 |
|
|
3583 |
|
|
3584 |
|
|
3585 |
|
|
3586 |
0 |
for (int i = viewCount - 1; i >= 0; i--) |
3587 |
|
{ |
3588 |
|
|
3589 |
|
|
3590 |
|
|
3591 |
|
|
3592 |
|
|
3593 |
|
|
3594 |
|
|
3595 |
|
|
3596 |
0 |
AlignmentPanel topPanel = (AlignmentPanel) topPanels.get(i); |
3597 |
0 |
AlignFrame newTopFrame = new AlignFrame(topPanel); |
3598 |
0 |
newTopFrame.setSize(oldTopFrame.getSize()); |
3599 |
0 |
newTopFrame.setVisible(true); |
3600 |
0 |
Rectangle geometry = ((AlignViewport) topPanel.getAlignViewport()) |
3601 |
|
.getExplodedGeometry(); |
3602 |
0 |
if (geometry != null) |
3603 |
|
{ |
3604 |
0 |
newTopFrame.setSize(geometry.getSize()); |
3605 |
|
} |
3606 |
|
|
3607 |
0 |
AlignmentPanel bottomPanel = (AlignmentPanel) bottomPanels.get(i); |
3608 |
0 |
AlignFrame newBottomFrame = new AlignFrame(bottomPanel); |
3609 |
0 |
newBottomFrame.setSize(oldBottomFrame.getSize()); |
3610 |
0 |
newBottomFrame.setVisible(true); |
3611 |
0 |
geometry = ((AlignViewport) bottomPanel.getAlignViewport()) |
3612 |
|
.getExplodedGeometry(); |
3613 |
0 |
if (geometry != null) |
3614 |
|
{ |
3615 |
0 |
newBottomFrame.setSize(geometry.getSize()); |
3616 |
|
} |
3617 |
|
|
3618 |
0 |
topPanel.av.setGatherViewsHere(false); |
3619 |
0 |
bottomPanel.av.setGatherViewsHere(false); |
3620 |
0 |
JInternalFrame splitFrame = new SplitFrame(newTopFrame, |
3621 |
|
newBottomFrame); |
3622 |
0 |
if (geometry != null) |
3623 |
|
{ |
3624 |
0 |
splitFrame.setLocation(geometry.getLocation()); |
3625 |
|
} |
3626 |
0 |
Desktop.addInternalFrame(splitFrame, sf.getTitle(), -1, -1); |
3627 |
|
} |
3628 |
|
|
3629 |
|
|
3630 |
|
|
3631 |
|
|
3632 |
|
|
3633 |
0 |
topPanels.clear(); |
3634 |
0 |
bottomPanels.clear(); |
3635 |
0 |
sf.close(); |
3636 |
|
} |
3637 |
|
|
3638 |
|
|
3639 |
|
|
3640 |
|
|
3641 |
|
|
3642 |
|
|
3643 |
|
@param |
3644 |
|
|
|
|
| 0% |
Uncovered Elements: 39 (39) |
Complexity: 7 |
Complexity Density: 0.23 |
|
3645 |
0 |
public void gatherViews(GSplitFrame source)... |
3646 |
|
{ |
3647 |
|
|
3648 |
|
|
3649 |
|
|
3650 |
|
|
3651 |
|
|
3652 |
0 |
AlignFrame myTopFrame = (AlignFrame) source.getTopFrame(); |
3653 |
0 |
AlignFrame myBottomFrame = (AlignFrame) source.getBottomFrame(); |
3654 |
0 |
myTopFrame.viewport.setExplodedGeometry(new Rectangle(source.getX(), |
3655 |
|
source.getY(), myTopFrame.getWidth(), myTopFrame.getHeight())); |
3656 |
0 |
myBottomFrame.viewport |
3657 |
|
.setExplodedGeometry(new Rectangle(source.getX(), source.getY(), |
3658 |
|
myBottomFrame.getWidth(), myBottomFrame.getHeight())); |
3659 |
0 |
myTopFrame.viewport.setGatherViewsHere(true); |
3660 |
0 |
myBottomFrame.viewport.setGatherViewsHere(true); |
3661 |
0 |
String topViewId = myTopFrame.viewport.getSequenceSetId(); |
3662 |
0 |
String bottomViewId = myBottomFrame.viewport.getSequenceSetId(); |
3663 |
|
|
3664 |
0 |
JInternalFrame[] frames = desktop.getAllFrames(); |
3665 |
0 |
for (JInternalFrame frame : frames) |
3666 |
|
{ |
3667 |
0 |
if (frame instanceof SplitFrame && frame != source) |
3668 |
|
{ |
3669 |
0 |
SplitFrame sf = (SplitFrame) frame; |
3670 |
0 |
AlignFrame topFrame = (AlignFrame) sf.getTopFrame(); |
3671 |
0 |
AlignFrame bottomFrame = (AlignFrame) sf.getBottomFrame(); |
3672 |
0 |
boolean gatherThis = false; |
3673 |
0 |
for (int a = 0; a < topFrame.alignPanels.size(); a++) |
3674 |
|
{ |
3675 |
0 |
AlignmentPanel topPanel = topFrame.alignPanels.get(a); |
3676 |
0 |
AlignmentPanel bottomPanel = bottomFrame.alignPanels.get(a); |
3677 |
0 |
if (topViewId.equals(topPanel.av.getSequenceSetId()) |
3678 |
|
&& bottomViewId.equals(bottomPanel.av.getSequenceSetId())) |
3679 |
|
{ |
3680 |
0 |
gatherThis = true; |
3681 |
0 |
topPanel.av.setGatherViewsHere(false); |
3682 |
0 |
bottomPanel.av.setGatherViewsHere(false); |
3683 |
0 |
topPanel.av.setExplodedGeometry( |
3684 |
|
new Rectangle(sf.getLocation(), topFrame.getSize())); |
3685 |
0 |
bottomPanel.av.setExplodedGeometry( |
3686 |
|
new Rectangle(sf.getLocation(), bottomFrame.getSize())); |
3687 |
0 |
myTopFrame.addAlignmentPanel(topPanel, false); |
3688 |
0 |
myBottomFrame.addAlignmentPanel(bottomPanel, false); |
3689 |
|
} |
3690 |
|
} |
3691 |
|
|
3692 |
0 |
if (gatherThis) |
3693 |
|
{ |
3694 |
0 |
topFrame.getAlignPanels().clear(); |
3695 |
0 |
bottomFrame.getAlignPanels().clear(); |
3696 |
0 |
sf.close(); |
3697 |
|
} |
3698 |
|
} |
3699 |
|
} |
3700 |
|
|
3701 |
|
|
3702 |
|
|
3703 |
|
|
3704 |
0 |
myTopFrame.setDisplayedView(myTopFrame.alignPanel); |
3705 |
|
} |
3706 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3707 |
672 |
public static groovy.console.ui.Console getGroovyConsole()... |
3708 |
|
{ |
3709 |
672 |
return groovyConsole; |
3710 |
|
} |
3711 |
|
|
3712 |
|
|
3713 |
|
|
3714 |
|
|
3715 |
|
|
3716 |
|
|
3717 |
|
@param |
3718 |
|
|
3719 |
|
@param |
3720 |
|
|
3721 |
|
@param |
3722 |
|
|
3723 |
|
@param |
3724 |
|
|
3725 |
|
@throws |
3726 |
|
|
|
|
| 0% |
Uncovered Elements: 115 (115) |
Complexity: 31 |
Complexity Density: 0.42 |
|
3727 |
0 |
public static void transferFromDropTarget(List<Object> files,... |
3728 |
|
List<DataSourceType> protocols, DropTargetDropEvent evt, |
3729 |
|
Transferable t) throws Exception |
3730 |
|
{ |
3731 |
|
|
3732 |
0 |
DataFlavor uriListFlavor = new DataFlavor( |
3733 |
|
"text/uri-list;class=java.lang.String"), urlFlavour = null; |
3734 |
0 |
try |
3735 |
|
{ |
3736 |
0 |
urlFlavour = new DataFlavor( |
3737 |
|
"application/x-java-url; class=java.net.URL"); |
3738 |
|
} catch (ClassNotFoundException cfe) |
3739 |
|
{ |
3740 |
0 |
jalview.bin.Console.debug("Couldn't instantiate the URL dataflavor.", |
3741 |
|
cfe); |
3742 |
|
} |
3743 |
|
|
3744 |
0 |
if (urlFlavour != null && t.isDataFlavorSupported(urlFlavour)) |
3745 |
|
{ |
3746 |
|
|
3747 |
0 |
try |
3748 |
|
{ |
3749 |
0 |
java.net.URL url = (URL) t.getTransferData(urlFlavour); |
3750 |
|
|
3751 |
|
|
3752 |
0 |
if (url != null) |
3753 |
|
{ |
3754 |
0 |
protocols.add(DataSourceType.URL); |
3755 |
0 |
files.add(url.toString()); |
3756 |
0 |
jalview.bin.Console.debug("Drop handled as URL dataflavor " |
3757 |
|
+ files.get(files.size() - 1)); |
3758 |
0 |
return; |
3759 |
|
} |
3760 |
|
else |
3761 |
|
{ |
3762 |
0 |
if (Platform.isAMacAndNotJS()) |
3763 |
|
{ |
3764 |
0 |
jalview.bin.Console.errPrintln( |
3765 |
|
"Please ignore plist error - occurs due to problem with java 8 on OSX"); |
3766 |
|
} |
3767 |
|
} |
3768 |
|
} catch (Throwable ex) |
3769 |
|
{ |
3770 |
0 |
jalview.bin.Console.debug("URL drop handler failed.", ex); |
3771 |
|
} |
3772 |
|
} |
3773 |
0 |
if (t.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) |
3774 |
|
{ |
3775 |
|
|
3776 |
0 |
jalview.bin.Console.debug("Drop handled as javaFileListFlavor"); |
3777 |
0 |
for (Object file : (List) t |
3778 |
|
.getTransferData(DataFlavor.javaFileListFlavor)) |
3779 |
|
{ |
3780 |
0 |
files.add(file); |
3781 |
0 |
protocols.add(DataSourceType.FILE); |
3782 |
|
} |
3783 |
|
} |
3784 |
|
else |
3785 |
|
{ |
3786 |
|
|
3787 |
0 |
boolean added = false; |
3788 |
0 |
String data = null; |
3789 |
0 |
if (t.isDataFlavorSupported(uriListFlavor)) |
3790 |
|
{ |
3791 |
0 |
jalview.bin.Console.debug("Drop handled as uriListFlavor"); |
3792 |
|
|
3793 |
0 |
data = (String) t.getTransferData(uriListFlavor); |
3794 |
|
} |
3795 |
0 |
if (data == null) |
3796 |
|
{ |
3797 |
|
|
3798 |
0 |
jalview.bin.Console |
3799 |
|
.debug("standard URIListFlavor failed. Trying text"); |
3800 |
|
|
3801 |
0 |
DataFlavor textDf = new DataFlavor( |
3802 |
|
"text/plain;class=java.lang.String"); |
3803 |
0 |
if (t.isDataFlavorSupported(textDf)) |
3804 |
|
{ |
3805 |
0 |
data = (String) t.getTransferData(textDf); |
3806 |
|
} |
3807 |
|
|
3808 |
0 |
jalview.bin.Console.debug("Plain text drop content returned " |
3809 |
0 |
+ (data == null ? "Null - failed" : data)); |
3810 |
|
|
3811 |
|
} |
3812 |
0 |
if (data != null) |
3813 |
|
{ |
3814 |
0 |
while (protocols.size() < files.size()) |
3815 |
|
{ |
3816 |
0 |
jalview.bin.Console.debug("Adding missing FILE protocol for " |
3817 |
|
+ files.get(protocols.size())); |
3818 |
0 |
protocols.add(DataSourceType.FILE); |
3819 |
|
} |
3820 |
0 |
for (java.util.StringTokenizer st = new java.util.StringTokenizer( |
3821 |
0 |
data, "\r\n"); st.hasMoreTokens();) |
3822 |
|
{ |
3823 |
0 |
added = true; |
3824 |
0 |
String s = st.nextToken(); |
3825 |
0 |
if (s.startsWith("#")) |
3826 |
|
{ |
3827 |
|
|
3828 |
0 |
continue; |
3829 |
|
} |
3830 |
0 |
java.net.URI uri = new java.net.URI(s); |
3831 |
0 |
if (uri.getScheme().toLowerCase(Locale.ROOT).startsWith("http")) |
3832 |
|
{ |
3833 |
0 |
protocols.add(DataSourceType.URL); |
3834 |
0 |
files.add(uri.toString()); |
3835 |
|
} |
3836 |
|
else |
3837 |
|
{ |
3838 |
|
|
3839 |
0 |
java.io.File file = new java.io.File(uri); |
3840 |
0 |
protocols.add(DataSourceType.FILE); |
3841 |
0 |
files.add(file.toString()); |
3842 |
|
} |
3843 |
|
} |
3844 |
|
} |
3845 |
|
|
3846 |
0 |
if (jalview.bin.Console.isDebugEnabled()) |
3847 |
|
{ |
3848 |
0 |
if (data == null || !added) |
3849 |
|
{ |
3850 |
|
|
3851 |
0 |
if (t.getTransferDataFlavors() != null |
3852 |
|
&& t.getTransferDataFlavors().length > 0) |
3853 |
|
{ |
3854 |
0 |
jalview.bin.Console.debug( |
3855 |
|
"Couldn't resolve drop data. Here are the supported flavors:"); |
3856 |
0 |
for (DataFlavor fl : t.getTransferDataFlavors()) |
3857 |
|
{ |
3858 |
0 |
jalview.bin.Console.debug( |
3859 |
|
"Supported transfer dataflavor: " + fl.toString()); |
3860 |
0 |
Object df = t.getTransferData(fl); |
3861 |
0 |
if (df != null) |
3862 |
|
{ |
3863 |
0 |
jalview.bin.Console.debug("Retrieves: " + df); |
3864 |
|
} |
3865 |
|
else |
3866 |
|
{ |
3867 |
0 |
jalview.bin.Console.debug("Retrieved nothing"); |
3868 |
|
} |
3869 |
|
} |
3870 |
|
} |
3871 |
|
else |
3872 |
|
{ |
3873 |
0 |
jalview.bin.Console |
3874 |
|
.debug("Couldn't resolve dataflavor for drop: " |
3875 |
|
+ t.toString()); |
3876 |
|
} |
3877 |
|
} |
3878 |
|
} |
3879 |
|
} |
3880 |
0 |
if (Platform.isWindowsAndNotJS()) |
3881 |
|
{ |
3882 |
0 |
jalview.bin.Console |
3883 |
|
.debug("Scanning dropped content for Windows Link Files"); |
3884 |
|
|
3885 |
|
|
3886 |
0 |
for (int f = 0; f < files.size(); f++) |
3887 |
|
{ |
3888 |
0 |
String source = files.get(f).toString().toLowerCase(Locale.ROOT); |
3889 |
0 |
if (protocols.get(f).equals(DataSourceType.FILE) |
3890 |
|
&& (source.endsWith(".lnk") || source.endsWith(".url") |
3891 |
|
|| source.endsWith(".site"))) |
3892 |
|
{ |
3893 |
0 |
try |
3894 |
|
{ |
3895 |
0 |
Object obj = files.get(f); |
3896 |
0 |
File lf = (obj instanceof File ? (File) obj |
3897 |
|
: new File((String) obj)); |
3898 |
|
|
3899 |
0 |
jalview.bin.Console.debug("Found potential link file: " + lf); |
3900 |
0 |
WindowsShortcut wscfile = new WindowsShortcut(lf); |
3901 |
0 |
String fullname = wscfile.getRealFilename(); |
3902 |
0 |
protocols.set(f, FormatAdapter.checkProtocol(fullname)); |
3903 |
0 |
files.set(f, fullname); |
3904 |
0 |
jalview.bin.Console.debug("Parsed real filename " + fullname |
3905 |
|
+ " to extract protocol: " + protocols.get(f)); |
3906 |
|
} catch (Exception ex) |
3907 |
|
{ |
3908 |
0 |
jalview.bin.Console.error( |
3909 |
|
"Couldn't parse " + files.get(f) + " as a link file.", |
3910 |
|
ex); |
3911 |
|
} |
3912 |
|
} |
3913 |
|
} |
3914 |
|
} |
3915 |
|
} |
3916 |
|
|
3917 |
|
|
3918 |
|
|
3919 |
|
|
3920 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3921 |
0 |
@Override... |
3922 |
|
protected void showExperimental_actionPerformed(boolean selected) |
3923 |
|
{ |
3924 |
0 |
Cache.setProperty(EXPERIMENTAL_FEATURES, Boolean.toString(selected)); |
3925 |
|
} |
3926 |
|
|
3927 |
|
|
3928 |
|
|
3929 |
|
|
3930 |
|
|
3931 |
|
|
3932 |
|
|
3933 |
|
@param |
3934 |
|
|
3935 |
|
@param |
3936 |
|
|
3937 |
|
@return |
3938 |
|
|
|
|
| 85.7% |
Uncovered Elements: 2 (14) |
Complexity: 6 |
Complexity Density: 0.75 |
|
3939 |
19 |
public List<StructureViewerBase> getStructureViewers(... |
3940 |
|
AlignmentPanel apanel, |
3941 |
|
Class<? extends StructureViewerBase> structureViewerClass) |
3942 |
|
{ |
3943 |
19 |
List<StructureViewerBase> result = new ArrayList<>(); |
3944 |
19 |
JInternalFrame[] frames = Desktop.instance.getAllFrames(); |
3945 |
|
|
3946 |
19 |
for (JInternalFrame frame : frames) |
3947 |
|
{ |
3948 |
46 |
if (frame instanceof StructureViewerBase) |
3949 |
|
{ |
3950 |
17 |
if (structureViewerClass == null |
3951 |
|
|| structureViewerClass.isInstance(frame)) |
3952 |
|
{ |
3953 |
17 |
if (apanel == null |
3954 |
|
|| ((StructureViewerBase) frame).isLinkedWith(apanel)) |
3955 |
|
{ |
3956 |
17 |
result.add((StructureViewerBase) frame); |
3957 |
|
} |
3958 |
|
} |
3959 |
|
} |
3960 |
|
} |
3961 |
19 |
return result; |
3962 |
|
} |
3963 |
|
|
3964 |
|
public static final String debugScaleMessage = "Desktop graphics transform scale="; |
3965 |
|
|
3966 |
|
private static boolean debugScaleMessageDone = false; |
3967 |
|
|
|
|
| 82.4% |
Uncovered Elements: 3 (17) |
Complexity: 4 |
Complexity Density: 0.31 |
|
3968 |
2408 |
public static void debugScaleMessage(Graphics g)... |
3969 |
|
{ |
3970 |
2408 |
if (debugScaleMessageDone) |
3971 |
|
{ |
3972 |
2398 |
return; |
3973 |
|
} |
3974 |
|
|
3975 |
10 |
try |
3976 |
|
{ |
3977 |
10 |
Graphics2D gg = (Graphics2D) g; |
3978 |
10 |
if (gg != null) |
3979 |
|
{ |
3980 |
10 |
AffineTransform t = gg.getTransform(); |
3981 |
10 |
double scaleX = t.getScaleX(); |
3982 |
10 |
double scaleY = t.getScaleY(); |
3983 |
10 |
jalview.bin.Console.debug(debugScaleMessage + scaleX + " (X)"); |
3984 |
10 |
jalview.bin.Console.debug(debugScaleMessage + scaleY + " (Y)"); |
3985 |
10 |
debugScaleMessageDone = true; |
3986 |
|
} |
3987 |
|
else |
3988 |
|
{ |
3989 |
0 |
jalview.bin.Console.debug("Desktop graphics null"); |
3990 |
|
} |
3991 |
|
} catch (Exception e) |
3992 |
|
{ |
3993 |
0 |
jalview.bin.Console.debug(Cache.getStackTraceString(e)); |
3994 |
|
} |
3995 |
|
} |
3996 |
|
|
3997 |
|
|
3998 |
|
|
3999 |
|
|
4000 |
|
|
4001 |
|
|
|
|
| 77.8% |
Uncovered Elements: 2 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
4002 |
81 |
public static void closeDesktop()... |
4003 |
|
{ |
4004 |
81 |
if (Desktop.instance != null) |
4005 |
|
{ |
4006 |
81 |
Desktop us = Desktop.instance; |
4007 |
81 |
Desktop.instance.quitTheDesktop(false, false); |
4008 |
|
|
4009 |
81 |
if (us != null) |
4010 |
|
{ |
4011 |
81 |
new Thread(new Runnable() |
4012 |
|
{ |
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
4013 |
81 |
@Override... |
4014 |
|
public void run() |
4015 |
|
{ |
4016 |
81 |
ExecutorService dex = us.dialogExecutor; |
4017 |
81 |
if (dex != null) |
4018 |
|
{ |
4019 |
38 |
dex.shutdownNow(); |
4020 |
38 |
us.dialogExecutor = null; |
4021 |
38 |
us.block.drainPermits(); |
4022 |
|
} |
4023 |
81 |
us.dispose(); |
4024 |
|
} |
4025 |
|
}).start(); |
4026 |
|
} |
4027 |
|
} |
4028 |
|
} |
4029 |
|
|
4030 |
|
|
4031 |
|
|
4032 |
|
|
4033 |
|
|
4034 |
|
@return |
4035 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
4036 |
18 |
public boolean operationsAreInProgress()... |
4037 |
|
{ |
4038 |
18 |
JInternalFrame[] frames = getAllFrames(); |
4039 |
18 |
for (JInternalFrame frame : frames) |
4040 |
|
{ |
4041 |
41 |
if (frame instanceof IProgressIndicator) |
4042 |
|
{ |
4043 |
18 |
if (((IProgressIndicator) frame).operationInProgress()) |
4044 |
|
{ |
4045 |
8 |
return true; |
4046 |
|
} |
4047 |
|
} |
4048 |
|
} |
4049 |
10 |
return operationInProgress(); |
4050 |
|
} |
4051 |
|
|
4052 |
|
|
4053 |
|
|
4054 |
|
|
4055 |
|
|
4056 |
|
|
4057 |
|
private static Map<AlignFrame, JInternalFrame> alignFrameModalMap = new HashMap<>(); |
4058 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4059 |
0 |
protected static void addModal(AlignFrame af, JInternalFrame jif)... |
4060 |
|
{ |
4061 |
0 |
alignFrameModalMap.put(af, jif); |
4062 |
|
} |
4063 |
|
|
|
|
| 25% |
Uncovered Elements: 9 (12) |
Complexity: 4 |
Complexity Density: 0.5 |
|
4064 |
386 |
protected static void closeModal(AlignFrame af)... |
4065 |
|
{ |
4066 |
386 |
if (!alignFrameModalMap.containsKey(af)) |
4067 |
|
{ |
4068 |
386 |
return; |
4069 |
|
} |
4070 |
0 |
JInternalFrame jif = alignFrameModalMap.get(af); |
4071 |
0 |
if (jif != null) |
4072 |
|
{ |
4073 |
0 |
try |
4074 |
|
{ |
4075 |
0 |
jif.setClosed(true); |
4076 |
|
} catch (PropertyVetoException e) |
4077 |
|
{ |
4078 |
0 |
e.printStackTrace(); |
4079 |
|
} |
4080 |
|
} |
4081 |
0 |
alignFrameModalMap.remove(af); |
4082 |
|
} |
4083 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4084 |
0 |
public void nonBlockingDialog(String title, String message, String button,... |
4085 |
|
int type, boolean scrollable, boolean modal) |
4086 |
|
{ |
4087 |
0 |
nonBlockingDialog(title, message, null, button, type, scrollable, false, |
4088 |
|
modal, -1); |
4089 |
|
} |
4090 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4091 |
1 |
public void nonBlockingDialog(String title, String message,... |
4092 |
|
String boxtext, String button, int type, boolean scrollable, |
4093 |
|
boolean html, boolean modal, int timeout) |
4094 |
|
{ |
4095 |
1 |
nonBlockingDialog(32, 2, title, message, boxtext, button, type, |
4096 |
|
scrollable, html, modal, timeout); |
4097 |
|
} |
4098 |
|
|
|
|
| 67.4% |
Uncovered Elements: 15 (46) |
Complexity: 7 |
Complexity Density: 0.21 |
|
4099 |
1 |
public void nonBlockingDialog(int width, int height, String title,... |
4100 |
|
String message, String boxtext, String button, int type, |
4101 |
|
boolean scrollable, boolean html, boolean modal, int timeout) |
4102 |
|
{ |
4103 |
1 |
if (type < 0) |
4104 |
|
{ |
4105 |
0 |
type = JvOptionPane.WARNING_MESSAGE; |
4106 |
|
} |
4107 |
1 |
JLabel jl = new JLabel(message); |
4108 |
|
|
4109 |
1 |
JTextComponent jtc = null; |
4110 |
1 |
if (html) |
4111 |
|
{ |
4112 |
1 |
JTextPane jtp = new JTextPane(); |
4113 |
1 |
jtp.setContentType("text/html"); |
4114 |
1 |
jtp.setEditable(false); |
4115 |
1 |
jtp.setAutoscrolls(true); |
4116 |
1 |
jtp.setText(boxtext); |
4117 |
|
|
4118 |
1 |
jtc = jtp; |
4119 |
|
} |
4120 |
|
else |
4121 |
|
{ |
4122 |
0 |
JTextArea jta = new JTextArea(height, width); |
4123 |
|
|
4124 |
0 |
jta.setEditable(false); |
4125 |
0 |
jta.setWrapStyleWord(true); |
4126 |
0 |
jta.setAutoscrolls(true); |
4127 |
0 |
jta.setText(boxtext); |
4128 |
|
|
4129 |
0 |
jtc = jta; |
4130 |
|
} |
4131 |
|
|
4132 |
1 |
JScrollPane jsp = scrollable |
4133 |
|
? new JScrollPane(jtc, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, |
4134 |
|
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED) |
4135 |
|
: null; |
4136 |
|
|
4137 |
1 |
JvOptionPane jvp = JvOptionPane.newOptionDialog(this); |
4138 |
|
|
4139 |
1 |
JPanel jp = new JPanel(); |
4140 |
1 |
jp.setLayout(new BoxLayout(jp, BoxLayout.Y_AXIS)); |
4141 |
|
|
4142 |
1 |
if (message != null) |
4143 |
|
{ |
4144 |
1 |
jl.setAlignmentX(Component.LEFT_ALIGNMENT); |
4145 |
1 |
jp.add(jl); |
4146 |
|
} |
4147 |
1 |
if (boxtext != null) |
4148 |
|
{ |
4149 |
1 |
if (scrollable) |
4150 |
|
{ |
4151 |
0 |
jsp.setAlignmentX(Component.LEFT_ALIGNMENT); |
4152 |
0 |
jp.add(jsp); |
4153 |
|
} |
4154 |
|
else |
4155 |
|
{ |
4156 |
1 |
jtc.setAlignmentX(Component.LEFT_ALIGNMENT); |
4157 |
1 |
jp.add(jtc); |
4158 |
|
} |
4159 |
|
} |
4160 |
|
|
4161 |
1 |
jvp.setResponseHandler(JOptionPane.YES_OPTION, () -> { |
4162 |
|
}); |
4163 |
1 |
jvp.setTimeout(timeout); |
4164 |
1 |
JButton jb = new JButton(button); |
4165 |
1 |
jvp.showDialogOnTopAsync(this, jp, title, JOptionPane.YES_OPTION, type, |
4166 |
|
null, new Object[] |
4167 |
|
{ button }, button, modal, new JButton[] { jb }, false); |
4168 |
|
} |
4169 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4170 |
0 |
@Override... |
4171 |
|
public AlignFrame getCurrentAlignFrame() |
4172 |
|
{ |
4173 |
0 |
return Jalview.getInstance().getCurrentAlignFrame(); |
4174 |
|
} |
4175 |
|
} |