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 jalview.util.MessageManager;
25 import java.awt.BorderLayout;
26 import java.awt.Color;
28 import java.awt.GridLayout;
29 import java.awt.Rectangle;
30 import java.awt.event.ActionListener;
31 import java.util.Objects;
33 import javax.swing.AbstractButton;
34 import javax.swing.JButton;
35 import javax.swing.JComponent;
36 import javax.swing.JLabel;
37 import javax.swing.JMenu;
38 import javax.swing.JMenuItem;
39 import javax.swing.JPanel;
40 import javax.swing.JScrollBar;
41 import javax.swing.SwingConstants;
44 * useful functions for building Swing GUIs
49 public final class JvSwingUtils
52 * wrap a bare html safe string to around 60 characters per line using a CSS
53 * style class specifying word-wrap and break-word
56 * if true, add <html> wrapper tags
61 public static String wrapTooltip(boolean enclose, String ttext)
63 Objects.requireNonNull(ttext, "Tootip text to format must not be null!");
65 boolean maxLengthExceeded = false;
67 if (ttext.contains("<br>"))
69 String[] htmllines = ttext.split("<br>");
70 for (String line : htmllines)
72 maxLengthExceeded = line.length() > 60;
73 if (maxLengthExceeded)
81 maxLengthExceeded = ttext.length() > 60;
84 if (!maxLengthExceeded)
86 return enclose ? "<html>" + ttext + "</html>" : ttext;
89 return (enclose ? "<html>" : "")
90 + "<style> p.ttip {width: 350; text-align: justify; word-wrap: break-word;}</style><p class=\"ttip\">"
91 + ttext + "</p>" + ((enclose ? "</html>" : ""));
95 public static JButton makeButton(String label, String tooltip,
96 ActionListener action)
98 JButton button = new JButton();
99 button.setText(label);
100 // TODO: get the base font metrics for the Jalview gui from somewhere
101 button.setFont(new java.awt.Font("Verdana", Font.PLAIN, 10));
102 button.setForeground(Color.black);
103 button.setHorizontalAlignment(SwingConstants.CENTER);
104 button.setToolTipText(tooltip);
105 button.addActionListener(action);
110 * find or add a submenu with the given title in the given menu
114 * @return the new or existing submenu
116 public static JMenu findOrCreateMenu(JMenu menu, String submenu)
118 JMenu submenuinstance = null;
119 for (int i = 0, iSize = menu.getMenuComponentCount(); i < iSize; i++)
121 if (menu.getMenuComponent(i) instanceof JMenu
122 && ((JMenu) menu.getMenuComponent(i)).getText().equals(
125 submenuinstance = (JMenu) menu.getMenuComponent(i);
128 if (submenuinstance == null)
130 submenuinstance = new JMenu(submenu);
131 menu.add(submenuinstance);
133 return submenuinstance;
143 * @return the GUI element created that was added to the layout so it's
144 * attributes can be changed.
146 public static JPanel addtoLayout(JPanel panel, String tooltip,
147 JComponent label, JComponent valBox)
149 JPanel laypanel = new JPanel(new GridLayout(1, 2));
150 JPanel labPanel = new JPanel(new BorderLayout());
151 JPanel valPanel = new JPanel();
152 labPanel.setBounds(new Rectangle(7, 7, 158, 23));
153 valPanel.setBounds(new Rectangle(172, 7, 270, 23));
154 labPanel.add(label, BorderLayout.WEST);
155 valPanel.add(valBox);
156 laypanel.add(labPanel);
157 laypanel.add(valPanel);
158 valPanel.setToolTipText(tooltip);
159 labPanel.setToolTipText(tooltip);
160 valBox.setToolTipText(tooltip);
166 public static void mgAddtoLayout(JPanel cpanel, String tooltip,
167 JLabel jLabel, JComponent name)
169 mgAddtoLayout(cpanel, tooltip, jLabel, name, null);
172 public static void mgAddtoLayout(JPanel cpanel, String tooltip,
173 JLabel jLabel, JComponent name, String params)
182 cpanel.add(name, params);
184 name.setToolTipText(tooltip);
185 jLabel.setToolTipText(tooltip);
189 * standard font for labels and check boxes in dialog boxes
194 public static Font getLabelFont()
196 return getLabelFont(false, false);
199 public static Font getLabelFont(boolean bold, boolean italic)
201 return new java.awt.Font("Verdana", (!bold && !italic) ? Font.PLAIN
202 : (bold ? Font.BOLD : 0) + (italic ? Font.ITALIC : 0), 11);
206 * standard font for editable text areas
210 public static Font getTextAreaFont()
212 return getLabelFont(false, false);
216 * clean up a swing menu. Removes any empty submenus without selection
221 public static void cleanMenu(JMenu webService)
223 for (int i = 0; i < webService.getItemCount();)
225 JMenuItem item = webService.getItem(i);
226 if (item instanceof JMenu && ((JMenu) item).getItemCount() == 0)
228 webService.remove(i);
238 * Returns the proportion of its range that a scrollbar's position represents,
239 * as a value between 0 and 1. For example if the whole range is from 0 to
240 * 200, then a position of 40 gives proportion = 0.2.
242 * @see http://www.javalobby.org/java/forums/t33050.html#91885334
247 public static float getScrollBarProportion(JScrollBar scroll)
250 * The extent (scroll handle width) deduction gives the true operating range
251 * of possible positions.
253 int possibleRange = scroll.getMaximum() - scroll.getMinimum()
254 - scroll.getModel().getExtent();
255 float valueInRange = scroll.getValue()
256 - (scroll.getModel().getExtent() / 2f);
257 float proportion = valueInRange / possibleRange;
262 * Returns the scroll bar position in its range that would match the given
263 * proportion (between 0 and 1) of the whole. For example if the whole range
264 * is from 0 to 200, then a proportion of 0.25 gives position 50.
270 public static int getScrollValueForProportion(JScrollBar scrollbar,
274 * The extent (scroll handle width) deduction gives the true operating range
275 * of possible positions.
277 float fraction = proportion
278 * (scrollbar.getMaximum() - scrollbar.getMinimum() - scrollbar
279 .getModel().getExtent())
280 + (scrollbar.getModel().getExtent() / 2f);
281 return Math.min(Math.round(fraction), scrollbar.getMaximum());
284 public static void jvInitComponent(AbstractButton comp, String i18nString)
286 setColorAndFont(comp);
287 if (i18nString != null && !i18nString.isEmpty())
289 comp.setText(MessageManager.getString(i18nString));
293 public static void jvInitComponent(JComponent comp)
295 setColorAndFont(comp);
298 private static void setColorAndFont(JComponent comp)
300 comp.setBackground(Color.white);
301 comp.setFont(JvSwingUtils.getLabelFont());