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 java.awt.Component;
24 import java.awt.MouseInfo;
25 import java.awt.Point;
26 import java.awt.Rectangle;
28 import javax.swing.JInternalFrame;
29 import javax.swing.JSplitPane;
30 import javax.swing.plaf.basic.BasicInternalFrameUI;
32 import jalview.util.Platform;
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 setName("jalview-splitframe");
63 this.bottomFrame = bottom;
71 * Create and add the split pane containing the top and bottom components.
73 protected void addSplitPane()
75 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topFrame,
77 splitPane.setVisible(true);
80 * set divider split at 50:50, or restore saved split if loading from
83 int topFrameHeight = topFrame.getHeight();
84 splitPane.setDividerSize(DIVIDER_SIZE);
85 if (topFrameHeight == 0)
87 setRelativeDividerLocation(0.5d); // as a proportion
91 int dividerPosition = topFrameHeight + DIVIDER_SIZE / 2;
92 splitPane.setDividerLocation(dividerPosition); // absolute position
94 splitPane.setResizeWeight(0.5d);
99 * Try to hide the title bars as a waste of precious space.
102 * ://stackoverflow.com/questions/7218971/java-method-works-on-windows
103 * -but-not-macintosh -java
105 protected void hideTitleBars()
107 if (Platform.isAMacAndNotJS())
109 // this saves some space - but doesn't hide the title bar
110 topFrame.putClientProperty("JInternalFrame.isPalette", true);
111 // topFrame.getRootPane().putClientProperty("Window.style", "small");
112 bottomFrame.putClientProperty("JInternalFrame.isPalette", true);
116 ((BasicInternalFrameUI) topFrame.getUI()).setNorthPane(null);
117 ((BasicInternalFrameUI) bottomFrame.getUI()).setNorthPane(null);
121 public GAlignFrame getTopFrame()
126 public GAlignFrame getBottomFrame()
132 * Returns the split pane component the mouse is in, or null if neither.
136 protected GAlignFrame getFrameAtMouse()
138 Point loc = MouseInfo.getPointerInfo().getLocation();
140 if (isIn(loc, splitPane.getTopComponent()))
142 return getTopFrame();
144 else if (isIn(loc, splitPane.getBottomComponent()))
146 return getBottomFrame();
151 private boolean isIn(Point loc, Component comp)
153 if (!comp.isVisible())
157 Point p = comp.getLocationOnScreen();
158 Rectangle r = new Rectangle(p.x, p.y, comp.getWidth(),
160 return r.contains(loc);
164 * Makes the complement of the specified split component visible or hidden,
165 * restoring or saving the position of the split divide.
167 public void setComplementVisible(Object alignFrame, boolean show)
170 * save divider ratio on hide, restore on show
174 setRelativeDividerLocation(dividerRatio);
178 this.dividerRatio = splitPane.getDividerLocation()
179 / (double) (splitPane.getHeight()
180 - splitPane.getDividerSize());
183 if (alignFrame == this.topFrame)
185 this.bottomFrame.setVisible(show);
187 else if (alignFrame == this.bottomFrame)
189 this.topFrame.setVisible(show);
196 * Set the divider location as a proportion (0 <= r <= 1) of the height <br>
197 * Warning: this overloads setDividerLocation(int), and getDividerLocation()
198 * returns the int (pixel count) value
202 public void setRelativeDividerLocation(double r)
204 this.dividerRatio = r;
205 splitPane.setDividerLocation(r);
209 * Sets the divider location (in pixels from top)
213 protected void setDividerLocation(int p)
215 splitPane.setDividerLocation(p);
219 * Returns the divider location (in pixels from top)
223 protected int getDividerLocation()
225 return splitPane.getDividerLocation();