Merge branch 'improvement/JAL-1988+JAL-3416_Java8_macOS_APQHandlers_and_FlatLaF_optio...
[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 visible
71
72           // this method of raising the Jalview window is broken in java
73           // jalviewDesktop.setVisible(true);
74           // jalviewDesktop.toFront();
75
76           // a better hack which works instead
77           JFrame dialogParent = new JFrame();
78           dialogParent.setAlwaysOnTop(true);
79
80           n = JOptionPane.showConfirmDialog(dialogParent,
81                   MessageManager.getString("label.quit_jalview"),
82                   MessageManager.getString("action.quit"),
83                   JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE,
84                   null);
85
86           dialogParent.setAlwaysOnTop(false);
87           dialogParent.dispose();
88         }
89         else
90         {
91           n = JOptionPane.OK_OPTION;
92         }
93         canQuit = (n == JOptionPane.OK_OPTION);
94         if (canQuit)
95         {
96           response.performQuit();
97         }
98         else
99         {
100           response.cancelQuit();
101         }
102       });
103       setQuit = true;
104     }
105     // if we got to here, no exceptions occurred when we set the handlers.
106     return setAbout || setPreferences || setQuit;
107   }
108
109 }