import jalview.util.ImageMaker.TYPE;
import jalview.util.MessageManager;
import jalview.util.Platform;
-import jalview.util.ShortcutKeyMaskExWrapper;
import jalview.util.UrlConstants;
import jalview.viewmodel.AlignmentViewport;
import jalview.ws.params.ParamManager;
{
// 58 classes
- setFrame(frame, title, w, h);
-
- // Headless operation has no Desktop instance, only the static class.
-
- if (getInstance() != null)
- getInstance().addFrame(frame, Desktop.FRAME_MAKE_VISIBLE,
+ addInternalFrame(frame, title, Desktop.FRAME_MAKE_VISIBLE, w, h,
FRAME_ALLOW_RESIZE, FRAME_SET_MIN_SIZE_300);
}
final JInternalFrame frame, String title, boolean makeVisible,
int w, int h, boolean resizable, boolean ignoreMinSize)
{
- // 15 classes
- setFrame(frame, title, w, h);
+ // 15 classes call this method directly.
+
+ // TODO: allow callers to determine X and Y position of frame (eg. via
+ // bounds object).
+ // TODO: consider fixing method to update entries in the window submenu with
+ // the current window title
+ frame.setTitle(title);
+ if (frame.getWidth() < 1 || frame.getHeight() < 1)
+ {
+ frame.setSize(w, h);
+ }
if (getInstance() != null)
getInstance().addFrame(frame, makeVisible, resizable,
ignoreMinSize);
public final static boolean FRAME_ALLOW_ANY_SIZE = true;
public final static boolean FRAME_SET_MIN_SIZE_300 = false;
-
- private static void setFrame(JInternalFrame frame, String title,
- int w, int h)
- {
- // TODO: allow callers to determine X and Y position of frame (eg. via
- // bounds object).
- // TODO: consider fixing method to update entries in the window submenu with
- // the current window title
-
- frame.setTitle(title);
- if (frame.getWidth() < 1 || frame.getHeight() < 1)
- {
- frame.setSize(w, h);
- }
- }
private void addFrame(JInternalFrame frame,
boolean makeVisible, boolean resizable,