use of javax.swing.JPanel in project EnrichmentMapApp by BaderLab.
the class LegendPanel method createStyleLegendPanel.
private JPanel createStyleLegendPanel(JComponent[][] entries) {
JPanel p = new JPanel();
p.setBorder(DEF_LEGEND_BORDER);
p.setBackground(DEF_LEGEND_BG);
updateStyleLegendPanel(entries, p);
return p;
}
use of javax.swing.JPanel in project EnrichmentMapApp by BaderLab.
the class ErrorMessageDialog method createButtonPanel.
private JPanel createButtonPanel() {
JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.TRAILING));
JButton cancelButton = new JButton("Cancel");
buttonPanel.add(cancelButton);
cancelButton.addActionListener(e -> dispose());
finishButton = new JButton("Continue to Build");
buttonPanel.add(finishButton);
finishButton.addActionListener(e -> {
shouldContinue = true;
dispose();
});
return buttonPanel;
}
use of javax.swing.JPanel in project EnrichmentMapApp by BaderLab.
the class MasterDetailDialogPage method createDataSetPanel.
private JPanel createDataSetPanel() {
JPanel titlePanel = createTitlePanel();
dataSetListModel = new IterableListModel<>();
dataSetList = new DataSetList(dataSetListModel);
dataSetList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
dataSetList.addListSelectionListener(e -> selectItem(dataSetList.getSelectedValue()));
JScrollPane scrollPane = new JScrollPane();
scrollPane.setViewportView(dataSetList);
dataSetDetailPanel = new JPanel(new BorderLayout());
dataSetDetailPanel.setBorder(BorderFactory.createLineBorder(UIManager.getColor("Separator.foreground")));
cardLayout = new CardLayout();
dataSetDetailPanel.setLayout(cardLayout);
// Blank page
dataSetDetailPanel.add(new EditNothingPanel(), "nothing");
// Common page
dataSetListModel.addElement(commonParams);
dataSetDetailPanel.add(commonParams.getDetailPanel().getPanel(), commonParams.id);
distinctEdgesCheckbox = new JCheckBox("Create separate edges for each dataset");
SwingUtil.makeSmall(distinctEdgesCheckbox);
JPanel checkboxPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT, 0, 0));
checkboxPanel.add(distinctEdgesCheckbox);
// Make the NORTH area of both panels the same size
titlePanel.doLayout();
checkboxPanel.setPreferredSize(titlePanel.getPreferredSize());
JPanel leftPanel = new JPanel(new BorderLayout());
leftPanel.add(titlePanel, BorderLayout.NORTH);
leftPanel.add(scrollPane, BorderLayout.CENTER);
JPanel rightPanel = new JPanel(new BorderLayout());
rightPanel.add(checkboxPanel, BorderLayout.NORTH);
rightPanel.add(dataSetDetailPanel, BorderLayout.CENTER);
JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPanel, rightPanel);
splitPane.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
splitPane.setResizeWeight(0.3);
JPanel panel = new JPanel(new BorderLayout());
panel.add(splitPane, BorderLayout.CENTER);
return panel;
}
use of javax.swing.JPanel in project EnrichmentMapApp by BaderLab.
the class MasterDetailDialogPage method createTitlePanel.
private JPanel createTitlePanel() {
JLabel label = new JLabel("Data Sets:");
SwingUtil.makeSmall(label);
JButton addButton = SwingUtil.createIconButton(iconManager, IconManager.ICON_PLUS, "Add Data Set");
scanButton = SwingUtil.createIconButton(iconManager, IconManager.ICON_FOLDER_O, "Scan Folder for Data Sets");
deleteButton = SwingUtil.createIconButton(iconManager, IconManager.ICON_TRASH_O, "Delete Data Set");
addButton.addActionListener(e -> addNewDataSetToList());
deleteButton.addActionListener(e -> deleteSelectedItems());
scanButton.addActionListener(e -> scan());
JPanel panel = new JPanel();
GroupLayout layout = new GroupLayout(panel);
panel.setLayout(layout);
layout.setAutoCreateGaps(true);
layout.setAutoCreateContainerGaps(false);
layout.setHorizontalGroup(layout.createSequentialGroup().addComponent(label).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE).addComponent(scanButton).addComponent(addButton).addComponent(deleteButton));
layout.setVerticalGroup(layout.createParallelGroup(Alignment.BASELINE).addComponent(label).addComponent(scanButton).addComponent(addButton).addComponent(deleteButton));
return panel;
}
use of javax.swing.JPanel in project EnrichmentMapApp by BaderLab.
the class HeatMapMainPanel method createToolbarPanel.
private JPanel createToolbarPanel() {
gradientLegendPanel = new GradientLegendPanel(table);
showValuesCheck = new JCheckBox("Show Values");
JLabel operatorLabel = new JLabel("Genes:");
operatorCombo = new JComboBox<>();
JLabel normLabel = new JLabel("Expressions:");
normCombo = new JComboBox<>();
SwingUtil.makeSmall(operatorLabel, operatorCombo, normLabel, normCombo, showValuesCheck);
operatorCombo.addItem(new ComboItem<>(Operator.UNION, "Union"));
operatorCombo.addItem(new ComboItem<>(Operator.INTERSECTION, "Intersection"));
operatorCombo.setSelectedItem(ComboItem.of(Operator.UNION));
normCombo.addItem(new ComboItem<>(Transform.AS_IS, "Expression Values"));
normCombo.addItem(new ComboItem<>(Transform.ROW_NORMALIZE, "Row Normalize"));
normCombo.addItem(new ComboItem<>(Transform.LOG_TRANSFORM, "Log Transform"));
normCombo.addItem(new ComboItem<>(Transform.COMPRESS_MEDIAN, "Compress (Median)"));
normCombo.addItem(new ComboItem<>(Transform.COMPRESS_MIN, "Compress (Min)"));
normCombo.addItem(new ComboItem<>(Transform.COMPRESS_MAX, "Compress (Max)"));
normCombo.setSelectedItem(ComboItem.of(Transform.COMPRESS_MEDIAN));
operatorCombo.addActionListener(operatorActionListener = e -> updateSetting_Operator(getOperator()));
normCombo.addActionListener(normActionListener = e -> updateSetting_Transform(getTransform()));
showValuesCheck.addActionListener(showValueActionListener = e -> updateSetting_ShowValues(isShowValues()));
JButton plusButton = SwingUtil.createIconButton(iconManager, IconManager.ICON_PLUS, "Add Rankings...");
JButton gearButton = SwingUtil.createIconButton(iconManager, IconManager.ICON_GEAR, "Settings");
JButton menuButton = SwingUtil.createIconButton(iconManager, IconManager.ICON_EXTERNAL_LINK, "Export");
LookAndFeelUtil.equalizeSize(gearButton, menuButton);
plusButton.addActionListener(e -> addRankings());
gearButton.addActionListener(e -> settingsPanel.popup(gearButton));
menuButton.addActionListener(this::showExportMenu);
JPanel panel = new JPanel();
GroupLayout layout = new GroupLayout(panel);
panel.setLayout(layout);
layout.setAutoCreateContainerGaps(false);
layout.setAutoCreateGaps(!LookAndFeelUtil.isAquaLAF());
layout.setHorizontalGroup(layout.createSequentialGroup().addComponent(gradientLegendPanel, 180, 180, 180).addGap(0, 0, Short.MAX_VALUE).addComponent(operatorLabel).addComponent(operatorCombo, PREFERRED_SIZE, DEFAULT_SIZE, PREFERRED_SIZE).addGap(5).addComponent(normLabel).addComponent(normCombo, PREFERRED_SIZE, DEFAULT_SIZE, PREFERRED_SIZE).addGap(5).addComponent(showValuesCheck).addGap(5).addComponent(plusButton).addComponent(gearButton).addComponent(menuButton));
layout.setVerticalGroup(layout.createParallelGroup(Alignment.BASELINE).addComponent(gradientLegendPanel).addComponent(operatorLabel).addComponent(operatorCombo).addComponent(normLabel).addComponent(normCombo).addComponent(showValuesCheck).addComponent(plusButton).addComponent(gearButton).addComponent(menuButton));
panel.setOpaque(false);
return panel;
}
Aggregations