use of org.cytoscape.internal.prefs.lib.AntiAliasedPanel in project cytoscape-impl by cytoscape.
the class PrefsNetwork method makeProxyPanel.
private AntiAliasedPanel makeProxyPanel() {
AntiAliasedPanel panel = new AntiAliasedPanel("Proxy Settings");
panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));
setSizes(panel, new Dimension(580, 120));
fHost = new JTextField(25);
// new JTextField(5);
fPort = new RangedIntegerTextField(0, 9999, new Dimension(80, 27));
fUsername = new JTextField(15);
fPassword = new JPasswordField(15);
fType = new JComboBox<String>(proxyTypes);
setSizes(fType, new Dimension(100, 27));
components.put("proxy.host", fHost);
components.put("proxy.port", fPort);
components.put("proxy.username", fUsername);
components.put("proxy.password", fPassword);
components.put("proxy.server.type", fType);
JLabel[] labels = new JLabel[5];
Font labelFont = new Font(Font.SANS_SERIF, Font.PLAIN, 10);
for (int i = 0; i < 5; i++) {
labels[i] = new JLabel(strs[i]);
setSizes(labels[i], new Dimension(67, 27));
labels[i].setFont(labelFont);
labels[i].setHorizontalAlignment(SwingConstants.RIGHT);
labels[i].setOpaque(false);
}
Dimension SPACE = new Dimension(20, 20);
HBox lin0 = new HBox(true, false, labels[4], fType, Box.createHorizontalGlue());
HBox lin1 = new HBox(true, true, Box.createRigidArea(SPACE), labels[0], fHost, labels[1], fPort);
HBox lin2 = new HBox(true, true, labels[2], fUsername, labels[3], fPassword);
panel.add(new HBox(lin0));
panel.add(new HBox(lin1));
panel.add(new HBox(lin2));
return panel;
}
use of org.cytoscape.internal.prefs.lib.AntiAliasedPanel in project cytoscape-impl by cytoscape.
the class PrefsSecurity method makeRepositoryPanel.
AntiAliasedPanel makeRepositoryPanel() {
AntiAliasedPanel panel = new AntiAliasedPanel("Proxy Settings");
setSizes(panel, new Dimension(580, 120));
fHost = new JTextField(25);
// new JTextField(5);
fPort = new RangedIntegerTextField(0, 9999, new Dimension(80, 27));
fUsername = new JTextField(15);
fPassword = new JPasswordField(15);
components.put("proxy.host", fHost);
components.put("proxy.port", fPort);
components.put("proxy.username", fUsername);
components.put("proxy.password", fPassword);
JLabel[] labels = new JLabel[4];
Font labelFont = new Font(Font.SANS_SERIF, Font.PLAIN, 10);
for (int i = 0; i < 4; i++) {
labels[i] = new JLabel(strs[i]);
setSizes(labels[i], new Dimension(67, 27));
labels[i].setFont(labelFont);
labels[i].setHorizontalAlignment(SwingConstants.RIGHT);
labels[i].setOpaque(false);
}
Dimension SPACE = new Dimension(20, 20);
Box lin1 = Box.createHorizontalBox();
Box lin2 = Box.createHorizontalBox();
lin1.add(new HBox(true, true, Box.createRigidArea(SPACE), new BoxComponent(labels[0], fHost, new BoxComponent(labels[1], fPort))));
lin2.add(new HBox(true, true, new BoxComponent(labels[2], fUsername, new BoxComponent(labels[3], fPassword))));
panel.add(lin1);
panel.add(lin2);
return panel;
}
Aggregations