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.jbgui;
23 import jalview.util.Platform;
25 import java.awt.Component;
26 import java.awt.MouseInfo;
27 import java.awt.Point;
28 import java.awt.Rectangle;
30 import javax.swing.JInternalFrame;
31 import javax.swing.JSplitPane;
32 import javax.swing.plaf.basic.BasicInternalFrameUI;
34 public class GSplitFrame extends JInternalFrame
36 protected static final int DIVIDER_SIZE = 5;
38 private static final long serialVersionUID = 1L;
40 private GAlignFrame topFrame;
42 private GAlignFrame bottomFrame;
44 private JSplitPane splitPane;
47 * proportional position of split divider; saving this allows it to be
48 * restored after hiding one half and resizing
50 private double dividerRatio;
58 public GSplitFrame(GAlignFrame top, GAlignFrame bottom)
61 this.bottomFrame = bottom;
69 * Create and add the split pane containing the top and bottom components.
71 protected void addSplitPane()
73 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topFrame,
75 splitPane.setVisible(true);
78 * set divider split at 50:50, or restore saved split if loading from
81 int topFrameHeight = topFrame.getHeight();
82 splitPane.setDividerSize(DIVIDER_SIZE);
83 if (topFrameHeight == 0)
85 setRelativeDividerLocation(0.5d); // as a proportion
89 int dividerPosition = topFrameHeight + DIVIDER_SIZE / 2;
90 splitPane.setDividerLocation(dividerPosition); // absolute position
92 splitPane.setResizeWeight(0.5d);
97 * Try to hide the title bars as a waste of precious space.
100 * ://stackoverflow.com/questions/7218971/java-method-works-on-windows
101 * -but-not-macintosh -java
103 protected void hideTitleBars()
105 if (new Platform().isAMac())
107 // this saves some space - but doesn't hide the title bar
108 topFrame.putClientProperty("JInternalFrame.isPalette", true);
109 // topFrame.getRootPane().putClientProperty("Window.style", "small");
110 bottomFrame.putClientProperty("JInternalFrame.isPalette", true);
114 ((BasicInternalFrameUI) topFrame.getUI()).setNorthPane(null);
115 ((BasicInternalFrameUI) bottomFrame.getUI()).setNorthPane(null);
119 public GAlignFrame getTopFrame()
124 public GAlignFrame getBottomFrame()
130 * Returns the split pane component the mouse is in, or null if neither.
134 protected GAlignFrame getFrameAtMouse()
136 Point loc = MouseInfo.getPointerInfo().getLocation();
138 if (isIn(loc, splitPane.getTopComponent()))
140 return getTopFrame();
142 else if (isIn(loc, splitPane.getBottomComponent()))
144 return getBottomFrame();
149 private boolean isIn(Point loc, Component comp)
151 if (!comp.isVisible())
155 Point p = comp.getLocationOnScreen();
156 Rectangle r = new Rectangle(p.x, p.y, comp.getWidth(),
158 return r.contains(loc);
162 * Makes the complement of the specified split component visible or hidden,
163 * restoring or saving the position of the split divide.
165 public void setComplementVisible(Object alignFrame, boolean show)
168 * save divider ratio on hide, restore on show
172 setRelativeDividerLocation(dividerRatio);
176 this.dividerRatio = splitPane.getDividerLocation()
177 / (double) (splitPane.getHeight()
178 - splitPane.getDividerSize());
181 if (alignFrame == this.topFrame)
183 this.bottomFrame.setVisible(show);
185 else if (alignFrame == this.bottomFrame)
187 this.topFrame.setVisible(show);
194 * Set the divider location as a proportion (0 <= r <= 1) of the height <br>
195 * Warning: this overloads setDividerLocation(int), and getDividerLocation()
196 * returns the int (pixel count) value
200 public void setRelativeDividerLocation(double r)
202 this.dividerRatio = r;
203 splitPane.setDividerLocation(r);
207 * Sets the divider location (in pixels from top)
211 protected void setDividerLocation(int p)
213 splitPane.setDividerLocation(p);
217 * Returns the divider location (in pixels from top)
221 protected int getDividerLocation()
223 return splitPane.getDividerLocation();