2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
21 package jalview.appletgui;
23 import java.awt.BorderLayout;
24 import java.awt.Color;
25 import java.awt.FlowLayout;
27 import java.awt.Frame;
28 import java.awt.HeadlessException;
29 import java.awt.Label;
31 import java.awt.MenuBar;
32 import java.awt.Panel;
33 import java.awt.PopupMenu;
34 import java.awt.event.MouseEvent;
35 import java.awt.event.MouseListener;
36 import java.util.HashMap;
40 * This class implements a pattern for embedding toolbars as a panel with popups
41 * for situations where the system menu bar is either invisible or
42 * inappropriate. It was derived from the code for embedding the jalview applet
43 * alignFrame as a component on the web-page, which requires the local
44 * alignFrame menu to be attached to that panel rather than placed on the parent
45 * (which isn't allowed anyhow). TODO: try to modify the embeddedMenu display so
46 * it looks like a real toolbar menu TODO: modify click/mouse handler for
47 * embeddedMenu so it behaves more like a real pulldown menu toolbar
49 * @author Jim Procter and Andrew Waterhouse
52 public class EmbmenuFrame extends Frame implements MouseListener
54 protected static final Font FONT_ARIAL_PLAIN_11 = new Font(
55 "Arial", Font.PLAIN, 11);
57 public static final Font DEFAULT_MENU_FONT = FONT_ARIAL_PLAIN_11;
60 * map from labels to popup menus for the embedded menubar
62 protected Map<Label, PopupMenu> embeddedPopup = new HashMap<Label, PopupMenu>();
65 * the embedded menu is built on this and should be added to the frame at the
66 * appropriate position.
69 protected Panel embeddedMenu;
71 public EmbmenuFrame() throws HeadlessException
76 public EmbmenuFrame(String title) throws HeadlessException
82 * Check if the applet is running on a platform that requires the Frame
83 * menuBar to be embedded, and if so, embeds it.
86 * the panel that is to be reduced to make space for the embedded
88 * @return true if menuBar was embedded and tobeAdjusted's height modified
90 protected boolean embedMenuIfNeeded(Panel tobeAdjusted)
92 MenuBar topMenuBar = getMenuBar();
93 if (topMenuBar == null)
97 // DEBUG Hint: can test embedded menus by inserting true here.
98 if (new jalview.util.Platform().isAMac())
100 // Build the embedded menu panel, allowing override with system font
101 embeddedMenu = makeEmbeddedPopupMenu(topMenuBar, true, false);
103 // add the components to the Panel area.
104 add(embeddedMenu, BorderLayout.NORTH);
105 tobeAdjusted.setSize(getSize().width,
106 getSize().height - embeddedMenu.getHeight());
113 * Create or add elements to the embedded menu from menuBar. This removes all
114 * menu from menuBar and it is up to the caller to remove the now useless
115 * menuBar from the Frame if it is already attached.
118 * @param overrideFonts
120 * true means existing menu will be emptied before adding new
124 protected Panel makeEmbeddedPopupMenu(MenuBar menuBar,
125 boolean overrideFonts, boolean append)
129 embeddedPopup.clear(); // TODO: check if j1.1
130 if (embeddedMenu != null)
132 embeddedMenu.removeAll();
135 embeddedMenu = makeEmbeddedPopupMenu(menuBar, DEFAULT_MENU_FONT,
136 overrideFonts, new Panel(), this);
141 * Generic method to move elements from menubar onto embeddedMenu using the
142 * existing or the supplied font, and adds binding from panel to attached
143 * menus in embeddedPopup This removes all menu from menuBar and it is up to
144 * the caller to remove the now useless menuBar from the Frame if it is
150 * @param overrideFonts
151 * @param embeddedMenu
152 * if null, a new panel will be created and returned
153 * @param clickHandler
154 * - usually the instance of EmbmenuFrame that holds references to
155 * embeddedPopup and embeddedMenu
156 * @return the panel instance for convenience.
158 protected Panel makeEmbeddedPopupMenu(MenuBar menuBar, Font font,
159 boolean overrideFonts,
161 MouseListener clickHandler)
165 Font mbf = menuBar.getFont();
171 if (embeddedMenu == null)
173 embeddedMenu = new Panel();
175 FlowLayout flowLayout1 = new FlowLayout();
176 embeddedMenu.setBackground(Color.lightGray);
177 embeddedMenu.setLayout(flowLayout1);
179 for (int mbi = 0, nMbi = menuBar.getMenuCount(); mbi < nMbi; mbi++)
181 Menu mi = menuBar.getMenu(mbi);
182 Label elab = new Label(mi.getLabel());
184 // add the menu entries
185 PopupMenu popup = new PopupMenu();
186 int m, mSize = mi.getItemCount();
187 for (m = 0; m < mSize; m++)
189 popup.add(mi.getItem(m));
193 embeddedPopup.put(elab, popup);
194 embeddedMenu.add(elab);
195 elab.addMouseListener(clickHandler);
197 flowLayout1.setAlignment(FlowLayout.LEFT);
198 flowLayout1.setHgap(2);
199 flowLayout1.setVgap(0);
203 public void mousePressed(MouseEvent evt)
205 PopupMenu popup = null;
206 Label source = (Label) evt.getSource();
207 popup = getPopupMenu(source);
210 embeddedMenu.add(popup);
211 popup.show(embeddedMenu, source.getBounds().x, source.getBounds().y
212 + source.getBounds().getSize().height);
217 * get the menu for source from the hash.
220 * what was clicked on.
222 PopupMenu getPopupMenu(Label source)
224 return embeddedPopup.get(source);
227 public void mouseClicked(MouseEvent evt)
231 public void mouseReleased(MouseEvent evt)
235 public void mouseEntered(MouseEvent evt)
239 public void mouseExited(MouseEvent evt)
244 * called to clear the GUI resources taken up for embedding and remove any
245 * self references so we can be garbage collected.
247 public void destroyMenus()
249 if (embeddedPopup != null)
251 for (Label lb : embeddedPopup.keySet())
253 lb.removeMouseListener(this);
255 embeddedPopup.clear();
257 if (embeddedMenu != null)
259 embeddedMenu.removeAll();
264 * calls destroyMenus()
266 public void finalize() throws Throwable
269 embeddedPopup = null;