use of de.alpharogroup.swing.table.editor.TableCellButtonEditor in project bundle-app-ui by astrapi69.
the class OverviewOfAllBundleApplicationsPanel method onInitializeComponents.
@Override
protected void onInitializeComponents() {
super.onInitializeComponents();
lblHeaderOverview = new javax.swing.JLabel();
lblBundleApp = new javax.swing.JLabel();
srcBundleApps = new javax.swing.JScrollPane();
tableModel = new StringBundleApplicationsBundleApplicationsTableModel();
tableModel.addList(getTableModelList());
tblBundleApps = new GenericJXTable<>(tableModel);
final TableColumn chooseColumn = tblBundleApps.getColumn("Choose");
chooseColumn.setCellRenderer(new TableCellButtonRenderer(null, null) {
private static final long serialVersionUID = 1L;
@Override
public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) {
if (isSelected) {
setForeground(newSelectionForeground(table));
setBackground(newSelectionBackround(table));
} else {
setForeground(newForeground(table));
setBackground(newBackround(table));
}
final String text = "Choose";
setText(text);
return this;
}
});
chooseColumn.setCellEditor(new TableCellButtonEditor(new JCheckBox()) {
private static final long serialVersionUID = 1L;
@Override
public Object getCellEditorValue() {
final BundleApplications selectedBundleApplication = (BundleApplications) this.getValue();
MainFrame.getInstance().setSelectedBundleApplication(selectedBundleApplication);
final Model<ApplicationDashboardBean> baModel = MainFrame.getInstance().getSelectedBundleApplicationPropertyModel();
final ApplicationDashboardContentPanel component = new ApplicationDashboardContentPanel(baModel);
MainFrame.getInstance().replaceInternalFrame("Dashboard of " + selectedBundleApplication.getName() + " bundle app", component);
final String text = "Select";
return text;
}
@Override
public Component getTableCellEditorComponent(final JTable table, final Object value, final boolean isSelected, final int row, final int column) {
setRow(row);
setColumn(column);
setValue(value);
if (isSelected) {
getButton().setForeground(table.getSelectionForeground());
getButton().setBackground(table.getSelectionBackground());
} else {
getButton().setForeground(table.getForeground());
getButton().setBackground(table.getBackground());
}
final String text = "Choose";
getButton().setText(text);
setClicked(true);
return getButton();
}
});
final TableColumn deleteColumn = tblBundleApps.getColumn("Delete");
deleteColumn.setCellRenderer(new TableCellButtonRenderer(null, null) {
private static final long serialVersionUID = 1L;
@Override
public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) {
if (isSelected) {
setForeground(newSelectionForeground(table));
setBackground(newSelectionBackround(table));
} else {
setForeground(newForeground(table));
setBackground(newBackround(table));
}
final String text = "Delete";
setText(text);
return this;
}
});
deleteColumn.setCellEditor(new TableCellButtonEditor(new JCheckBox()) {
private static final long serialVersionUID = 1L;
@Override
protected void onClick() {
try {
super.onClick();
} catch (IndexOutOfBoundsException e) {
e.printStackTrace();
}
}
@Override
public Object getCellEditorValue() {
final BundleApplications selectedBundleApplication = (BundleApplications) this.getValue();
onDelete(selectedBundleApplication);
final String text = "Delete";
return text;
}
@Override
public Component getTableCellEditorComponent(final JTable table, final Object value, final boolean isSelected, final int row, final int column) {
setRow(row);
setColumn(column);
setValue(value);
if (isSelected) {
getButton().setForeground(table.getSelectionForeground());
getButton().setBackground(table.getSelectionBackground());
} else {
getButton().setForeground(table.getForeground());
getButton().setBackground(table.getBackground());
}
final String text = "Delete";
getButton().setText(text);
setClicked(true);
return getButton();
}
});
btnCreateBundleApp = new javax.swing.JButton();
lblHeaderOverview.setText("Overview of all bundle applications");
lblBundleApp.setText("Bundle application count");
srcBundleApps.setViewportView(tblBundleApps);
btnCreateBundleApp.setText("Create new bundle application");
btnCreateBundleApp.addActionListener(e -> onCreateBundleApp(e));
}
use of de.alpharogroup.swing.table.editor.TableCellButtonEditor in project bundle-app-ui by astrapi69.
the class OverviewResourceBundleAddEntryPanel method onInitializeComponents.
@Override
protected void onInitializeComponents() {
super.onInitializeComponents();
lblKey = new javax.swing.JLabel();
lblHeaderOverview = new javax.swing.JLabel();
lblValue = new javax.swing.JLabel();
srcBundles = new javax.swing.JScrollPane();
tableModel = new StringResourcebundlesTableModel();
tableModel.addList(getTableModelList());
tblBundles = new GenericJXTable<>(tableModel);
btnToDashboard = new javax.swing.JButton();
btnExport = new javax.swing.JButton();
btnDelete = new javax.swing.JButton();
final TableColumn editValueColumn = tblBundles.getColumn("Edit");
editValueColumn.setCellRenderer(new TableCellButtonRenderer(null, null) {
private static final long serialVersionUID = 1L;
@Override
public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) {
if (isSelected) {
setForeground(newSelectionForeground(table));
setBackground(newSelectionBackround(table));
} else {
setForeground(newForeground(table));
setBackground(newBackround(table));
}
final String text = "Edit";
setText(text);
return this;
}
});
editValueColumn.setCellEditor(new TableCellButtonEditor(new JCheckBox()) {
private static final long serialVersionUID = 1L;
@Override
public Object getCellEditorValue() {
final Resourcebundles selected = (Resourcebundles) this.getValue();
MainFrame.getInstance().getModelObject().getSelectedBundleApplication().setSelectedResourcebundle(selected);
txtKey.setText(selected.getKey().getName());
txtValue.setText(selected.getValue());
final String text = "Edit";
return text;
}
@Override
public Component getTableCellEditorComponent(final JTable table, final Object value, final boolean isSelected, final int row, final int column) {
setRow(row);
setColumn(column);
setValue(value);
if (isSelected) {
getButton().setForeground(table.getSelectionForeground());
getButton().setBackground(table.getSelectionBackground());
} else {
getButton().setForeground(table.getForeground());
getButton().setBackground(table.getBackground());
}
final String text = "Edit";
getButton().setText(text);
setClicked(true);
return getButton();
}
});
// ============================================================================================
final TableColumn deleteValueColumn = tblBundles.getColumn("Delete");
deleteValueColumn.setCellRenderer(new TableCellButtonRenderer(null, null) {
private static final long serialVersionUID = 1L;
@Override
public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) {
if (isSelected) {
setForeground(newSelectionForeground(table));
setBackground(newSelectionBackround(table));
} else {
setForeground(newForeground(table));
setBackground(newBackround(table));
}
final String text = "Delete";
setText(text);
return this;
}
});
deleteValueColumn.setCellEditor(new TableCellButtonEditor(new JCheckBox()) {
private static final long serialVersionUID = 1L;
@Override
public Object getCellEditorValue() {
final Resourcebundles selected = (Resourcebundles) this.getValue();
final ResourcebundlesService resourcebundlesService = SpringApplicationContext.getInstance().getResourcebundlesService();
resourcebundlesService.delete(selected);
if (selected.equals(MainFrame.getInstance().getModelObject().getSelectedBundleApplication().getSelectedResourcebundle())) {
txtKey.setText("");
txtValue.setText("");
MainFrame.getInstance().getModelObject().getSelectedBundleApplication().setSelectedResourcebundle(null);
}
reloadTableModel();
revalidate();
final String text = "Delete";
return text;
}
@Override
public Component getTableCellEditorComponent(final JTable table, final Object value, final boolean isSelected, final int row, final int column) {
setRow(row);
setColumn(column);
setValue(value);
if (isSelected) {
getButton().setForeground(table.getSelectionForeground());
getButton().setBackground(table.getSelectionBackground());
} else {
getButton().setForeground(table.getForeground());
getButton().setBackground(table.getBackground());
}
final String text = "Delete";
getButton().setText(text);
setClicked(true);
return getButton();
}
});
// ============================================================================================
btnAddEntry = new javax.swing.JButton();
txtKey = new javax.swing.JTextField();
txtValue = new javax.swing.JTextField();
lblKey.setText("Key");
lblHeaderOverview.setText("Overview of resource bundle " + getModelObject().getSelectedBundleName().getBaseName().getName());
lblValue.setText("Value");
srcBundles.setViewportView(tblBundles);
btnAddEntry.setText("Add new entry");
btnAddEntry.addActionListener(e -> onAddEntry(e));
btnToDashboard.setText("Return to Dashboard");
btnToDashboard.addActionListener(ReturnToDashboardAction.of());
btnExport.setText("Export");
btnExport.addActionListener(e -> onExport(e));
btnDelete.setText("Delete");
btnDelete.addActionListener(e -> onDelete(e));
}
use of de.alpharogroup.swing.table.editor.TableCellButtonEditor in project bundle-app-ui by astrapi69.
the class OverviewOfAllResourceBundlesPanel method onInitializeComponents.
@Override
protected void onInitializeComponents() {
super.onInitializeComponents();
lblHeaderOverview = new javax.swing.JLabel();
lblBundleName = new javax.swing.JLabel();
srcBundles = new javax.swing.JScrollPane();
btnCreateBundle = new javax.swing.JButton();
btnCreateBundle.addActionListener(e -> onCreateBundle(e));
btnToDashboard = new javax.swing.JButton();
btnToDashboard.setText("Return to Dashboard");
btnToDashboard.addActionListener(ReturnToDashboardAction.of());
tableModel = new StringBundleNamesTableModel();
tableModel.addList(getTableModelList());
tblBundles = new GenericJXTable<>(tableModel);
final TableColumn valueColumn = tblBundles.getColumn("Action");
valueColumn.setCellRenderer(new TableCellButtonRenderer(null, null) {
private static final long serialVersionUID = 1L;
@Override
public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, final boolean hasFocus, final int row, final int column) {
if (isSelected) {
setForeground(newSelectionForeground(table));
setBackground(newSelectionBackround(table));
} else {
setForeground(newForeground(table));
setBackground(newBackround(table));
}
final String text = "Choose";
setText(text);
return this;
}
});
valueColumn.setCellEditor(new TableCellButtonEditor(new JCheckBox()) {
private static final long serialVersionUID = 1L;
@Override
public Object getCellEditorValue() {
final BundleNames selectedBundleName = (BundleNames) this.getValue();
final Model<ApplicationDashboardBean> baModel = MainFrame.getInstance().getSelectedBundleApplicationPropertyModel();
MainFrame.getInstance().getModelObject().getSelectedBundleApplication().setSelectedBundleName(selectedBundleName);
final OverviewResourceBundleAddEntryPanel component = new OverviewResourceBundleAddEntryPanel(baModel);
MainFrame.getInstance().replaceInternalFrame("Values of resource bundle " + selectedBundleName.getBaseName().getName() + " with locale " + selectedBundleName.getLocale().getLocale() + "", component);
final String text = "Choose";
return text;
}
@Override
public Component getTableCellEditorComponent(final JTable table, final Object value, final boolean isSelected, final int row, final int column) {
setRow(row);
setColumn(column);
setValue(value);
if (isSelected) {
getButton().setForeground(table.getSelectionForeground());
getButton().setBackground(table.getSelectionBackground());
} else {
getButton().setForeground(table.getForeground());
getButton().setBackground(table.getBackground());
}
final String text = "Choose";
getButton().setText(text);
setClicked(true);
return getButton();
}
});
lblHeaderOverview.setText("Overview of all resource bundles");
lblBundleName.setText("Bundle count");
srcBundles.setViewportView(tblBundles);
btnCreateBundle.setText("Create new resource bundle");
}
Aggregations