JAL-1988 Check for setHandler capability to avoid About and Preferences menu options...
[jalview.git] / src / jalview / jbgui / APQHandlers.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.jbgui;
22
23 import javax.swing.JFrame;
24 import javax.swing.JOptionPane;
25
26 import com.formdev.flatlaf.extras.FlatDesktop;
27 import com.formdev.flatlaf.extras.FlatDesktop.Action;
28
29 import jalview.util.MessageManager;
30 import jalview.util.Platform;
31
32 public class APQHandlers
33 {
34   public static boolean setAbout = false;
35
36   public static boolean setPreferences = false;
37
38   public static boolean setQuit = false;
39
40   public static boolean setAPQHandlers(GDesktop desktop)
41   {
42     if (Platform.isJS())
43     {
44       return false;
45     }
46     if (FlatDesktop.isSupported(Action.APP_ABOUT))
47     {
48       FlatDesktop.setAboutHandler(() -> {
49         desktop.aboutMenuItem_actionPerformed(null);
50       });
51       setAbout = true;
52     }
53     if (FlatDesktop.isSupported(Action.APP_PREFERENCES))
54     {
55       FlatDesktop.setPreferencesHandler(() -> {
56         desktop.preferences_actionPerformed(null);
57       });
58       setPreferences = true;
59     }
60     if (FlatDesktop.isSupported(Action.APP_QUIT_HANDLER))
61     {
62       FlatDesktop.setQuitHandler(response -> {
63         boolean confirmQuit = jalview.bin.Cache.getDefault(
64                 jalview.gui.Desktop.CONFIRM_KEYBOARD_QUIT, true);
65         boolean canQuit = !confirmQuit;
66         int n;
67         if (confirmQuit)
68         {
69           // ensure Jalview window is brought to front for Quit confirmation
70           // window to be
71           // visible
72
73           // this method of raising the Jalview window is broken in java
74           // jalviewDesktop.setVisible(true);
75           // jalviewDesktop.toFront();
76
77           // a better hack which works instead
78           JFrame dialogParent = new JFrame();
79           dialogParent.setAlwaysOnTop(true);
80
81           n = JOptionPane.showConfirmDialog(dialogParent,
82                   MessageManager.getString("label.quit_jalview"),
83                   MessageManager.getString("action.quit"),
84                   JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE,
85                   null);
86
87           dialogParent.setAlwaysOnTop(false);
88           dialogParent.dispose();
89         }
90         else
91         {
92           n = JOptionPane.OK_OPTION;
93         }
94         canQuit = (n == JOptionPane.OK_OPTION);
95         if (canQuit)
96         {
97           response.performQuit();
98         }
99         else
100         {
101           response.cancelQuit();
102         }
103       });
104       setQuit = true;
105     }
106     // if we got to here, no exceptions occurred when we set the handlers.
107     return setAbout || setPreferences || setQuit;
108   }
109
110 }