}
/**
- * Adjust the divider for a sensible split of the real estate (for example,
+ * Adjusts the divider for a sensible split of the real estate (for example,
* when many transcripts are shown with a single protein). This should only be
* called after the split pane has been laid out (made visible) so it has a
- * height.
+ * height. The aim is to avoid unnecessary vertical scroll bars, while
+ * ensuring that at least 2 sequences are visible in each panel.
+ * <p>
+ * Once laid out, the user may choose to customise as they wish, so this
+ * method is not called again after the initial layout.
*/
- protected void adjustDivider()
+ protected void adjustInitialLayout()
{
AlignFrame topFrame = (AlignFrame) getTopFrame();
AlignFrame bottomFrame = (AlignFrame) getBottomFrame();
int bottomCharHeight = bottomViewport.getViewStyle().getCharHeight();
/*
- * calculate the minimum ratio that leaves at least
- * two sequences visible in the top panel
+ * calculate the minimum ratio that leaves at least the height
+ * of two sequences (after rounding) visible in the top panel
*/
int topPanelHeight = topFrame.getHeight();
int bottomPanelHeight = bottomFrame.getHeight();
int topSequencesHeight = topFrame.alignPanel.getSeqPanel().seqCanvas
.getHeight();
int topPanelMinHeight = topPanelHeight
- - Math.max(0,
- topSequencesHeight - 2 * topViewport.getCharHeight());
+ - Math.max(0, topSequencesHeight - 3 * topCharHeight);
double totalHeight = (double) topPanelHeight + bottomPanelHeight;
double minRatio = topPanelMinHeight / totalHeight;
/*
- * calculate the maximum ratio that leaves at least
- * two sequences visible in the bottom panel
+ * calculate the maximum ratio that leaves at least the height
+ * of two sequences (after rounding) visible in the bottom panel
*/
int bottomSequencesHeight = bottomFrame.alignPanel.getSeqPanel().seqCanvas
.getHeight();
int bottomPanelMinHeight = bottomPanelHeight
- - Math.max(
- 0,
- bottomSequencesHeight - 2
- * bottomViewport.getCharHeight());
+ - Math.max(0, bottomSequencesHeight - 3 * bottomCharHeight);
double maxRatio = (totalHeight - bottomPanelMinHeight) / totalHeight;
/*
*/
ratio = Math.min(ratio, maxRatio);
ratio = Math.max(ratio, minRatio);
- // setRelativeDividerLocation(ratio);
+ setRelativeDividerLocation(ratio);
}
/**