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.
23 import java.awt.BorderLayout;
24 import java.awt.Color;
25 import java.awt.Component;
27 import java.awt.GridLayout;
28 import java.awt.Rectangle;
29 import java.awt.event.ActionListener;
30 import java.awt.event.MouseAdapter;
31 import java.awt.event.MouseEvent;
32 import java.util.List;
33 import java.util.Objects;
35 import javax.swing.AbstractButton;
36 import javax.swing.BorderFactory;
37 import javax.swing.JButton;
38 import javax.swing.JComboBox;
39 import javax.swing.JComponent;
40 import javax.swing.JLabel;
41 import javax.swing.JMenu;
42 import javax.swing.JMenuItem;
43 import javax.swing.JPanel;
44 import javax.swing.JScrollBar;
45 import javax.swing.SwingConstants;
46 import javax.swing.border.Border;
47 import javax.swing.border.TitledBorder;
49 import jalview.util.MessageManager;
52 * useful functions for building Swing GUIs
57 public final class JvSwingUtils
60 * wrap a bare html safe string to around 60 characters per line using a CSS
61 * style class specifying word-wrap and break-word
64 * if true, add <html> wrapper tags
69 public static String wrapTooltip(boolean enclose, String ttext)
71 Objects.requireNonNull(ttext,
72 "Tootip text to format must not be null!");
74 boolean maxLengthExceeded = false;
76 if (ttext.contains("<br>"))
78 String[] htmllines = ttext.split("<br>");
79 for (String line : htmllines)
81 maxLengthExceeded = line.length() > 60;
82 if (maxLengthExceeded)
90 maxLengthExceeded = ttext.length() > 60;
93 if (!maxLengthExceeded)
95 return enclose ? "<html>" + ttext + "</html>" : ttext;
98 return (enclose ? "<html>" : "")
100 + "<style> div.ttip {width:350px;white-space:pre-wrap;padding:2px;overflow-wrap:break-word;}</style><div class=\"ttip\">"
101 // + "<style> p.ttip {width:350px;margin:-14px 0px -14px
102 // 0px;padding:2px;overflow-wrap:break-word;}"
103 // + "</style><p class=\"ttip\">"
106 + ((enclose ? "</html>" : ""));
109 public static JButton makeButton(String label, String tooltip,
110 ActionListener action)
112 JButton button = new JButton();
113 button.setText(label);
114 // TODO: get the base font metrics for the Jalview gui from somewhere
115 button.setFont(new java.awt.Font("Verdana", Font.PLAIN, 10));
116 button.setForeground(Color.black);
117 button.setHorizontalAlignment(SwingConstants.CENTER);
118 button.setToolTipText(tooltip);
119 button.addActionListener(action);
124 * find or add a submenu with the given title in the given menu
128 * @return the new or existing submenu
130 public static JMenu findOrCreateMenu(JMenu menu, String submenu)
132 JMenu submenuinstance = null;
133 for (int i = 0, iSize = menu.getMenuComponentCount(); i < iSize; i++)
135 if (menu.getMenuComponent(i) instanceof JMenu
136 && ((JMenu) menu.getMenuComponent(i)).getText()
139 submenuinstance = (JMenu) menu.getMenuComponent(i);
142 if (submenuinstance == null)
144 submenuinstance = new JMenu(submenu);
145 menu.add(submenuinstance);
147 return submenuinstance;
157 * @return the GUI element created that was added to the layout so it's
158 * attributes can be changed.
160 public static JPanel addtoLayout(JPanel panel, String tooltip,
161 JComponent label, JComponent valBox)
163 JPanel laypanel = new JPanel(new GridLayout(1, 2));
164 JPanel labPanel = new JPanel(new BorderLayout());
165 JPanel valPanel = new JPanel();
166 labPanel.setBounds(new Rectangle(7, 7, 158, 23));
167 valPanel.setBounds(new Rectangle(172, 7, 270, 23));
168 labPanel.add(label, BorderLayout.WEST);
169 valPanel.add(valBox);
170 laypanel.add(labPanel);
171 laypanel.add(valPanel);
172 valPanel.setToolTipText(tooltip);
173 labPanel.setToolTipText(tooltip);
174 valBox.setToolTipText(tooltip);
180 public static void mgAddtoLayout(JPanel cpanel, String tooltip,
181 JLabel jLabel, JComponent name)
183 mgAddtoLayout(cpanel, tooltip, jLabel, name, null);
186 public static void mgAddtoLayout(JPanel cpanel, String tooltip,
187 JLabel jLabel, JComponent name, String params)
196 cpanel.add(name, params);
198 name.setToolTipText(tooltip);
199 jLabel.setToolTipText(tooltip);
203 * standard font for labels and check boxes in dialog boxes
208 public static Font getLabelFont()
210 return getLabelFont(false, false);
213 public static Font getLabelFont(boolean bold, boolean italic)
215 return new java.awt.Font("Verdana",
216 (!bold && !italic) ? Font.PLAIN
217 : (bold ? Font.BOLD : 0) + (italic ? Font.ITALIC : 0),
222 * standard font for editable text areas
226 public static Font getTextAreaFont()
228 return getLabelFont(false, false);
232 * clean up a swing menu. Removes any empty submenus without selection
237 public static void cleanMenu(JMenu webService)
239 for (int i = 0; i < webService.getItemCount();)
241 JMenuItem item = webService.getItem(i);
242 if (item instanceof JMenu && ((JMenu) item).getItemCount() == 0)
244 webService.remove(i);
254 * Returns the proportion of its range that a scrollbar's position represents,
255 * as a value between 0 and 1. For example if the whole range is from 0 to
256 * 200, then a position of 40 gives proportion = 0.2.
258 * @see http://www.javalobby.org/java/forums/t33050.html#91885334
263 public static float getScrollBarProportion(JScrollBar scroll)
266 * The extent (scroll handle width) deduction gives the true operating range
267 * of possible positions.
269 int possibleRange = scroll.getMaximum() - scroll.getMinimum()
270 - scroll.getModel().getExtent();
271 float valueInRange = scroll.getValue()
272 - (scroll.getModel().getExtent() / 2f);
273 float proportion = valueInRange / possibleRange;
278 * Returns the scroll bar position in its range that would match the given
279 * proportion (between 0 and 1) of the whole. For example if the whole range
280 * is from 0 to 200, then a proportion of 0.25 gives position 50.
286 public static int getScrollValueForProportion(JScrollBar scrollbar,
290 * The extent (scroll handle width) deduction gives the true operating range
291 * of possible positions.
293 float fraction = proportion
294 * (scrollbar.getMaximum() - scrollbar.getMinimum()
295 - scrollbar.getModel().getExtent())
296 + (scrollbar.getModel().getExtent() / 2f);
297 return Math.min(Math.round(fraction), scrollbar.getMaximum());
300 public static void jvInitComponent(AbstractButton comp, String i18nString)
302 setColorAndFont(comp);
303 if (i18nString != null && !i18nString.isEmpty())
305 comp.setText(MessageManager.getString(i18nString));
309 public static void jvInitComponent(JComponent comp)
311 setColorAndFont(comp);
314 private static void setColorAndFont(JComponent comp)
316 comp.setBackground(Color.white);
317 comp.setFont(JvSwingUtils.getLabelFont());
321 * A helper method to build a drop-down choice of values, with tooltips for
327 public static JComboBox<Object> buildComboWithTooltips(
328 List<Object> entries, List<String> tooltips)
330 JComboBox<Object> combo = new JComboBox<>();
331 final ComboBoxTooltipRenderer renderer = new ComboBoxTooltipRenderer();
332 combo.setRenderer(renderer);
333 for (Object attName : entries)
335 combo.addItem(attName);
337 renderer.setTooltips(tooltips);
338 final MouseAdapter mouseListener = new MouseAdapter()
341 public void mouseEntered(MouseEvent e)
343 int j = combo.getSelectedIndex();
346 combo.setToolTipText(tooltips.get(j));
351 public void mouseExited(MouseEvent e)
353 combo.setToolTipText(null);
356 for (Component c : combo.getComponents())
358 c.addMouseListener(mouseListener);
364 * Adds a titled border to the component in the default font and position (top
365 * left), optionally witht italic text
371 public static TitledBorder createTitledBorder(JComponent comp,
372 String title, boolean italic)
374 Font font = comp.getFont();
377 font = new Font(font.getName(), Font.ITALIC, font.getSize());
379 Border border = BorderFactory.createTitledBorder("");
380 TitledBorder titledBorder = BorderFactory.createTitledBorder(border,
381 title, TitledBorder.LEADING, TitledBorder.DEFAULT_POSITION,
383 comp.setBorder(titledBorder);