mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 19:35:09 +00:00
623 lines
26 KiB
Java
623 lines
26 KiB
Java
/*
|
|
* Copyright (C) 2010-2016 JPEXS
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.jpexs.decompiler.flash.gui;
|
|
|
|
import com.jpexs.decompiler.flash.configuration.Configuration;
|
|
import com.jpexs.decompiler.flash.configuration.ConfigurationCategory;
|
|
import com.jpexs.decompiler.flash.configuration.ConfigurationDirectory;
|
|
import com.jpexs.decompiler.flash.configuration.ConfigurationFile;
|
|
import com.jpexs.decompiler.flash.configuration.ConfigurationItem;
|
|
import com.jpexs.decompiler.flash.gui.helpers.SpringUtilities;
|
|
import com.jpexs.helpers.Helper;
|
|
import java.awt.BorderLayout;
|
|
import java.awt.Color;
|
|
import java.awt.Component;
|
|
import java.awt.Container;
|
|
import java.awt.Dimension;
|
|
import java.awt.FlowLayout;
|
|
import java.awt.Graphics;
|
|
import java.awt.Graphics2D;
|
|
import java.awt.Insets;
|
|
import java.awt.RenderingHints;
|
|
import java.awt.event.ActionEvent;
|
|
import java.io.File;
|
|
import java.lang.reflect.Field;
|
|
import java.lang.reflect.ParameterizedType;
|
|
import java.text.ParseException;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Calendar;
|
|
import java.util.Collections;
|
|
import java.util.Comparator;
|
|
import java.util.EnumSet;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map.Entry;
|
|
import java.util.ResourceBundle;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
import javax.swing.Icon;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JCheckBox;
|
|
import javax.swing.JComboBox;
|
|
import javax.swing.JFileChooser;
|
|
import javax.swing.JFrame;
|
|
import javax.swing.JLabel;
|
|
import javax.swing.JList;
|
|
import javax.swing.JOptionPane;
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JScrollPane;
|
|
import javax.swing.JTabbedPane;
|
|
import javax.swing.JTextField;
|
|
import javax.swing.SpringLayout;
|
|
import javax.swing.WindowConstants;
|
|
import javax.swing.filechooser.FileFilter;
|
|
import javax.swing.table.DefaultTableModel;
|
|
import org.pushingpixels.substance.api.ColorSchemeAssociationKind;
|
|
import org.pushingpixels.substance.api.ComponentState;
|
|
import org.pushingpixels.substance.api.DecorationAreaType;
|
|
import org.pushingpixels.substance.api.SubstanceLookAndFeel;
|
|
import org.pushingpixels.substance.api.SubstanceSkin;
|
|
import org.pushingpixels.substance.api.renderers.SubstanceDefaultListCellRenderer;
|
|
import org.pushingpixels.substance.api.skin.SkinInfo;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class AdvancedSettingsDialog extends AppDialog {
|
|
|
|
private final Map<String, Component> componentsMap = new HashMap<>();
|
|
|
|
private JButton cancelButton;
|
|
|
|
private JButton okButton;
|
|
|
|
private JButton resetButton;
|
|
|
|
/**
|
|
* Creates new form AdvancedSettingsDialog
|
|
*
|
|
* @param selectedCategory
|
|
*/
|
|
public AdvancedSettingsDialog(String selectedCategory) {
|
|
initComponents(selectedCategory);
|
|
View.centerScreen(this);
|
|
View.setWindowIcon(this);
|
|
|
|
//configurationTable.setCellEditor(configurationTable.getDefaultEditor(null));
|
|
pack();
|
|
}
|
|
|
|
private DefaultTableModel getModel() {
|
|
return new DefaultTableModel(
|
|
new Object[][]{},
|
|
new String[]{
|
|
translate("advancedSettings.columns.name"),
|
|
translate("advancedSettings.columns.value"),
|
|
translate("advancedSettings.columns.description")
|
|
}
|
|
) {
|
|
Class[] types = new Class[]{
|
|
String.class, Object.class, String.class
|
|
};
|
|
|
|
boolean[] canEdit = new boolean[]{
|
|
false, true, false
|
|
};
|
|
|
|
@Override
|
|
public Class getColumnClass(int columnIndex) {
|
|
return types[columnIndex];
|
|
}
|
|
|
|
@Override
|
|
public boolean isCellEditable(int rowIndex, int columnIndex) {
|
|
return canEdit[columnIndex];
|
|
}
|
|
};
|
|
}
|
|
|
|
private static class SkinSelect {
|
|
|
|
private final String name;
|
|
|
|
private final String className;
|
|
|
|
public SkinSelect(String name, String className) {
|
|
this.name = name;
|
|
this.className = className;
|
|
}
|
|
|
|
public String getClassName() {
|
|
return className;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return name;
|
|
}
|
|
}
|
|
|
|
private void initComponents(String selectedCategory) {
|
|
okButton = new JButton();
|
|
cancelButton = new JButton();
|
|
resetButton = new JButton();
|
|
|
|
setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
|
|
setTitle(translate("advancedSettings.dialog.title"));
|
|
setModal(true);
|
|
setPreferredSize(new Dimension(800, 500));
|
|
|
|
okButton.setText(AppStrings.translate("button.ok"));
|
|
okButton.addActionListener(this::okButtonActionPerformed);
|
|
|
|
cancelButton.setText(AppStrings.translate("button.cancel"));
|
|
cancelButton.addActionListener(this::cancelButtonActionPerformed);
|
|
|
|
resetButton.setText(AppStrings.translate("button.reset"));
|
|
resetButton.addActionListener(this::resetButtonActionPerformed);
|
|
|
|
Container cnt = getContentPane();
|
|
cnt.setLayout(new BorderLayout());
|
|
//cnt.add(new JScrollPane(configurationTable),BorderLayout.CENTER);
|
|
|
|
JPanel buttonsPanel = new JPanel(new BorderLayout());
|
|
|
|
JPanel buttonsLeftPanel = new JPanel(new FlowLayout());
|
|
buttonsLeftPanel.add(resetButton, BorderLayout.WEST);
|
|
|
|
buttonsPanel.add(buttonsLeftPanel, BorderLayout.WEST);
|
|
|
|
JPanel buttonsRightPanel = new JPanel(new FlowLayout());
|
|
buttonsRightPanel.add(okButton);
|
|
buttonsRightPanel.add(cancelButton);
|
|
buttonsPanel.add(buttonsRightPanel, BorderLayout.EAST);
|
|
|
|
cnt.add(buttonsPanel, BorderLayout.SOUTH);
|
|
|
|
JTabbedPane tabPane = new JTabbedPane();
|
|
|
|
JComboBox<SkinSelect> skinComboBox = new JComboBox<>();
|
|
skinComboBox.setRenderer(new SubstanceDefaultListCellRenderer() {
|
|
@Override
|
|
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
|
|
SubstanceDefaultListCellRenderer cmp = (SubstanceDefaultListCellRenderer) super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); //To change body of generated methods, choose Tools | Templates.
|
|
final SkinSelect ss = (SkinSelect) value;
|
|
cmp.setIcon(new Icon() {
|
|
@Override
|
|
public void paintIcon(Component c, Graphics g, int x, int y) {
|
|
Graphics2D g2 = (Graphics2D) g;
|
|
g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
|
|
g2.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
|
|
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
|
try {
|
|
Class<?> act = Class.forName(ss.getClassName());
|
|
SubstanceSkin skin = (SubstanceSkin) act.newInstance();
|
|
Color fill = skin.getColorScheme(DecorationAreaType.GENERAL, ColorSchemeAssociationKind.FILL, ComponentState.ENABLED).getBackgroundFillColor();
|
|
Color hilight = skin.getColorScheme(DecorationAreaType.GENERAL, ColorSchemeAssociationKind.FILL, ComponentState.ROLLOVER_SELECTED).getBackgroundFillColor();
|
|
Color border = skin.getColorScheme(DecorationAreaType.GENERAL, ColorSchemeAssociationKind.BORDER, ComponentState.ENABLED).getDarkColor();
|
|
g2.setColor(fill);
|
|
g2.fillOval(0, 0, 16, 16);
|
|
g2.setColor(hilight);
|
|
g2.fillArc(0, 0, 16, 16, -45, 90);
|
|
g2.setColor(border);
|
|
g2.drawOval(0, 0, 16, 16);
|
|
|
|
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException ex) {
|
|
//no icon
|
|
}
|
|
|
|
}
|
|
|
|
@Override
|
|
public int getIconWidth() {
|
|
return 16;
|
|
}
|
|
|
|
@Override
|
|
public int getIconHeight() {
|
|
return 16;
|
|
}
|
|
});
|
|
return cmp;
|
|
}
|
|
});
|
|
skinComboBox.addItem(new SkinSelect(OceanicSkin.NAME, OceanicSkin.class.getName()));
|
|
Map<String, SkinInfo> skins = SubstanceLookAndFeel.getAllSkins();
|
|
for (String skinKey : skins.keySet()) {
|
|
SkinInfo skin = skins.get(skinKey);
|
|
skinComboBox.addItem(new SkinSelect(skin.getDisplayName(), skin.getClassName()));
|
|
if (skin.getClassName().equals(Configuration.guiSkin.get())) {
|
|
skinComboBox.setSelectedIndex(skinComboBox.getItemCount() - 1);
|
|
}
|
|
}
|
|
|
|
Map<String, Component> tabs = new HashMap<>();
|
|
getCategories(componentsMap, tabs, skinComboBox, getResourceBundle());
|
|
|
|
String[] catOrder = new String[]{"ui", "display", "decompilation", "script", "format", "export", "import", "paths", "limit", "update", "debug", "other"};
|
|
|
|
for (String cat : catOrder) {
|
|
if (!tabs.containsKey(cat)) {
|
|
continue;
|
|
}
|
|
|
|
tabPane.add(translate("config.group.name." + cat), tabs.get(cat));
|
|
tabPane.setToolTipTextAt(tabPane.getTabCount() - 1, translate("config.group.description." + cat));
|
|
}
|
|
if (selectedCategory != null && tabs.containsKey(selectedCategory)) {
|
|
tabPane.setSelectedComponent(tabs.get(selectedCategory));
|
|
}
|
|
|
|
cnt.add(tabPane, BorderLayout.CENTER);
|
|
pack();
|
|
}
|
|
|
|
public static String selectConfigFile(ConfigurationItem config, String current, String pattern) {
|
|
JFileChooser fc = new JFileChooser();
|
|
fc.setSelectedFile(new File(current));
|
|
fc.setMultiSelectionEnabled(false);
|
|
fc.setCurrentDirectory(new File((String) config.get()));
|
|
FileFilter allSupportedFilter = new FileFilter() {
|
|
private final String[] supportedExtensions = new String[]{".swf", ".gfx", ".swc", ".zip", ".iggy"};
|
|
|
|
@Override
|
|
public boolean accept(File f) {
|
|
if (f.isDirectory()) {
|
|
return true;
|
|
}
|
|
return f.getName().matches(pattern);
|
|
}
|
|
|
|
@Override
|
|
public String getDescription() {
|
|
return "";
|
|
}
|
|
};
|
|
fc.setFileFilter(allSupportedFilter);
|
|
|
|
fc.setAcceptAllFileFilterUsed(false);
|
|
JFrame f = new JFrame();
|
|
View.setWindowIcon(f);
|
|
int returnVal = fc.showOpenDialog(f);
|
|
if (returnVal == JFileChooser.APPROVE_OPTION) {
|
|
return Helper.fixDialogFile(fc.getSelectedFile()).getAbsolutePath();
|
|
} else {
|
|
return (String) config.get();
|
|
}
|
|
}
|
|
|
|
public static void getCategories(Map<String, Component> componentsMap, Map<String, Component> tabs, JComboBox<?> skinComboBox, ResourceBundle resourceBundle) {
|
|
Map<String, Map<String, Field>> categorized = new HashMap<>();
|
|
|
|
Map<String, Field> fields = Configuration.getConfigurationFields();
|
|
String[] keys = new String[fields.size()];
|
|
keys = fields.keySet().toArray(keys);
|
|
Arrays.sort(keys);
|
|
|
|
for (String name : keys) {
|
|
Field field = fields.get(name);
|
|
ConfigurationCategory cat = field.getAnnotation(ConfigurationCategory.class);
|
|
String scat = (cat == null || cat.value().isEmpty()) ? "other" : cat.value();
|
|
if (!categorized.containsKey(scat)) {
|
|
categorized.put(scat, new HashMap<>());
|
|
}
|
|
|
|
categorized.get(scat).put(name, field);
|
|
}
|
|
|
|
for (String cat : categorized.keySet()) {
|
|
JPanel configPanel = new JPanel(new SpringLayout());
|
|
int itemCount = 0;
|
|
List<String> names = new ArrayList<>(categorized.get(cat).keySet());
|
|
|
|
final Map<String, String> locNames = new HashMap<>();
|
|
for (String name : names) {
|
|
String locName;
|
|
|
|
if (resourceBundle.containsKey("config.name." + name)) {
|
|
locName = resourceBundle.getString("config.name." + name);
|
|
} else { //if it is undocumented, then it must have ConfigurationInternal annotation
|
|
Field f = fields.get(name);
|
|
if (ConfigurationItem.isInternal(f)) {
|
|
throw new RuntimeException("Missing configuration name: " + name);
|
|
}
|
|
|
|
locName = "(Internal) " + name;
|
|
}
|
|
|
|
locNames.put(name, locName);
|
|
}
|
|
|
|
Collections.sort(names, new Comparator<String>() {
|
|
@Override
|
|
public int compare(String name1, String name2) {
|
|
return locNames.get(name1).compareTo(locNames.get(name2));
|
|
}
|
|
});
|
|
for (String name : names) {
|
|
Field field = categorized.get(cat).get(name);
|
|
|
|
String locName = locNames.get(name);
|
|
|
|
try {
|
|
field.setAccessible(true);
|
|
ConfigurationItem item = (ConfigurationItem) field.get(null);
|
|
|
|
ParameterizedType listType = (ParameterizedType) field.getGenericType();
|
|
java.lang.reflect.Type itemType2 = listType.getActualTypeArguments()[0];
|
|
if (!(itemType2 instanceof Class<?>)) {
|
|
continue;
|
|
}
|
|
|
|
Class itemType = (Class<?>) itemType2;
|
|
|
|
String description = "";
|
|
if (resourceBundle.containsKey("config.description." + name)) {
|
|
description = resourceBundle.getString("config.description." + name);
|
|
}
|
|
|
|
Object defaultValue = Configuration.getDefaultValue(field);
|
|
if (name.equals("gui.skin")) {
|
|
Class c;
|
|
try {
|
|
c = Class.forName((String) defaultValue);
|
|
defaultValue = c.getField("NAME").get(c);
|
|
} catch (ClassNotFoundException | NoSuchFieldException | SecurityException ex) {
|
|
Logger.getLogger(AdvancedSettingsDialog.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
}
|
|
|
|
if (defaultValue != null) {
|
|
description += " (" + resourceBundle.getString("default") + ": " + defaultValue + ")";
|
|
}
|
|
|
|
JLabel l = new JLabel(locName, JLabel.TRAILING);
|
|
l.setToolTipText(description);
|
|
configPanel.add(l);
|
|
Component c = null;
|
|
Component addComponent = null;
|
|
if (name.equals("gui.skin")) {
|
|
skinComboBox.setToolTipText(description);
|
|
skinComboBox.setMaximumSize(new Dimension(Integer.MAX_VALUE, skinComboBox.getPreferredSize().height));
|
|
c = skinComboBox;
|
|
} else if ((itemType == String.class) || (itemType == Integer.class) || (itemType == Long.class) || (itemType == Double.class) || (itemType == Float.class) || (itemType == Calendar.class)) {
|
|
ConfigurationFile confFile = field.getAnnotation(ConfigurationFile.class);
|
|
ConfigurationDirectory confDirectory = field.getAnnotation(ConfigurationDirectory.class);
|
|
|
|
JTextField tf = new JTextField();
|
|
Object val = item.get();
|
|
if (val == null) {
|
|
val = "";
|
|
}
|
|
if (itemType == Calendar.class) {
|
|
tf.setText(new SimpleDateFormat().format(((Calendar) val).getTime()));
|
|
} else {
|
|
tf.setText(val.toString());
|
|
}
|
|
tf.setToolTipText(description);
|
|
tf.setMaximumSize(new Dimension(Integer.MAX_VALUE, tf.getPreferredSize().height));
|
|
|
|
c = tf;
|
|
if (confFile != null) { //|| confDirectory != null) {
|
|
JPanel p = new JPanel(new BorderLayout());
|
|
p.setMaximumSize(new Dimension(Integer.MAX_VALUE, tf.getPreferredSize().height));
|
|
p.add(tf, BorderLayout.CENTER);
|
|
JButton butSelect = new JButton(View.getIcon("folderopen16"));
|
|
butSelect.setToolTipText(ResourceBundle.getBundle(AppStrings.getResourcePath(MainFrame.class)).getString("FileChooser.openButtonText"));
|
|
butSelect.setMargin(new Insets(2, 2, 2, 2));
|
|
butSelect.addActionListener((ActionEvent e) -> {
|
|
tf.setText(selectConfigFile(item, tf.getText(), confFile.value()));
|
|
});
|
|
p.add(butSelect, BorderLayout.EAST);
|
|
addComponent = p;
|
|
}
|
|
} else if (itemType == Boolean.class) {
|
|
JCheckBox cb = new JCheckBox();
|
|
cb.setSelected((Boolean) item.get());
|
|
cb.setToolTipText(description);
|
|
c = cb;
|
|
} else if (itemType.isEnum()) {
|
|
JComboBox<String> cb = new JComboBox<>();
|
|
@SuppressWarnings("unchecked")
|
|
EnumSet enumValues = EnumSet.allOf(itemType);
|
|
String stringValue = null;
|
|
for (Object enumValue : enumValues) {
|
|
String enumValueStr = enumValue.toString();
|
|
if (stringValue == null) {
|
|
stringValue = enumValueStr;
|
|
}
|
|
cb.addItem(enumValueStr);
|
|
}
|
|
if (item.get() != null) {
|
|
stringValue = item.get().toString();
|
|
}
|
|
cb.setToolTipText(description);
|
|
cb.setSelectedItem(stringValue);
|
|
cb.setMaximumSize(new Dimension(Integer.MAX_VALUE, cb.getPreferredSize().height));
|
|
c = cb;
|
|
} else {
|
|
throw new UnsupportedOperationException("Configuration ttem type '" + itemType.getName() + "' is not supported");
|
|
}
|
|
|
|
componentsMap.put(name, c);
|
|
if (addComponent == null) {
|
|
addComponent = c;
|
|
}
|
|
l.setLabelFor(c);
|
|
configPanel.add(addComponent);
|
|
} catch (IllegalArgumentException | IllegalAccessException ex) {
|
|
// Reflection exceptions. This should never happen
|
|
throw new Error(ex.getMessage());
|
|
}
|
|
|
|
itemCount++;
|
|
}
|
|
|
|
SpringUtilities.makeCompactGrid(configPanel,
|
|
itemCount, 2, //rows, cols
|
|
6, 6, //initX, initY
|
|
6, 6); //xPad, yPad
|
|
if (resourceBundle.containsKey("config.group.tip." + cat)) {
|
|
String tip = resourceBundle.getString("config.group.tip." + cat);
|
|
String urls[] = new String[0];
|
|
if (resourceBundle.containsKey("config.group.link." + cat)) {
|
|
urls = resourceBundle.getString("config.group.link." + cat).split(" ");
|
|
}
|
|
for (int i = 0; i < urls.length; i++) {
|
|
tip = tip.replace("%link" + (i + 1) + "%", urls[i]);
|
|
}
|
|
JPanel p = new JPanel(new BorderLayout());
|
|
p.add(configPanel, BorderLayout.CENTER);
|
|
JPanel tipPanel = new JPanel(new FlowLayout());
|
|
tipPanel.add(new HtmlLabel("<b>" + resourceBundle.getString("tip") + "</b>" + tip));
|
|
p.add(tipPanel, BorderLayout.SOUTH);
|
|
configPanel = p;
|
|
}
|
|
tabs.put(cat, new JScrollPane(configPanel));
|
|
}
|
|
}
|
|
|
|
private void showRestartConfirmDialog() {
|
|
if (View.showConfirmDialog(this, translate("advancedSettings.restartConfirmation"), AppStrings.translate("message.warning"), JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
|
|
try {
|
|
// todo: honfika: why?
|
|
Thread.sleep(1000);
|
|
} catch (InterruptedException ex) {
|
|
Logger.getLogger(AdvancedSettingsDialog.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
|
|
SelectLanguageDialog.reloadUi();
|
|
}
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
private void okButtonActionPerformed(ActionEvent evt) {
|
|
boolean modified = false;
|
|
Map<String, Field> fields = Configuration.getConfigurationFields();
|
|
Map<String, Object> values = new HashMap<>();
|
|
for (String name : fields.keySet()) {
|
|
Component c = componentsMap.get(name);
|
|
Object value = null;
|
|
|
|
ParameterizedType listType = (ParameterizedType) fields.get(name).getGenericType();
|
|
java.lang.reflect.Type itemType2 = listType.getActualTypeArguments()[0];
|
|
if (!(itemType2 instanceof Class<?>)) {
|
|
continue;
|
|
}
|
|
|
|
Class itemType = (Class<?>) itemType2;
|
|
if (name.equals("gui.skin")) {
|
|
value = ((SkinSelect) ((JComboBox<SkinSelect>) c).getSelectedItem()).className;
|
|
} else if (itemType == String.class) {
|
|
value = ((JTextField) c).getText();
|
|
}
|
|
if (itemType == Boolean.class) {
|
|
value = ((JCheckBox) c).isSelected();
|
|
}
|
|
|
|
if (itemType == Calendar.class) {
|
|
Calendar cal = Calendar.getInstance();
|
|
try {
|
|
cal.setTime(new SimpleDateFormat().parse(((JTextField) c).getText()));
|
|
} catch (ParseException ex) {
|
|
c.requestFocusInWindow();
|
|
return;
|
|
}
|
|
value = cal;
|
|
}
|
|
|
|
if (itemType.isEnum()) {
|
|
String stringValue = (String) ((JComboBox<String>) c).getSelectedItem();
|
|
value = Enum.valueOf(itemType, stringValue);
|
|
}
|
|
|
|
try {
|
|
if (itemType == Integer.class) {
|
|
value = Integer.parseInt(((JTextField) c).getText());
|
|
}
|
|
if (itemType == Long.class) {
|
|
value = Long.parseLong(((JTextField) c).getText());
|
|
}
|
|
if (itemType == Double.class) {
|
|
value = Double.parseDouble(((JTextField) c).getText());
|
|
}
|
|
if (itemType == Float.class) {
|
|
value = Float.parseFloat(((JTextField) c).getText());
|
|
}
|
|
} catch (NumberFormatException nfe) {
|
|
if (!((JTextField) c).getText().isEmpty()) {
|
|
c.requestFocusInWindow();
|
|
return;
|
|
} // else null
|
|
}
|
|
values.put(name, value);
|
|
}
|
|
|
|
for (String name : fields.keySet()) {
|
|
Component c = componentsMap.get(name);
|
|
Object value = values.get(name);
|
|
|
|
Field field = fields.get(name);
|
|
ConfigurationItem item = null;
|
|
try {
|
|
field.setAccessible(true);
|
|
item = (ConfigurationItem) field.get(null);
|
|
} catch (IllegalArgumentException | IllegalAccessException ex) {
|
|
// Reflection exceptions. This should never happen
|
|
throw new Error(ex.getMessage());
|
|
}
|
|
if (item.get() == null || !item.get().equals(value)) {
|
|
if (item.hasValue() || value != null) {
|
|
item.set(value);
|
|
modified = true;
|
|
}
|
|
}
|
|
}
|
|
Configuration.saveConfig();
|
|
setVisible(false);
|
|
if (modified) {
|
|
showRestartConfirmDialog();
|
|
}
|
|
}
|
|
|
|
private void cancelButtonActionPerformed(ActionEvent evt) {
|
|
setVisible(false);
|
|
}
|
|
|
|
private void resetButtonActionPerformed(ActionEvent evt) {
|
|
Map<String, Field> rfields = Configuration.getConfigurationFields();
|
|
for (Entry<String, Field> entry : rfields.entrySet()) {
|
|
String name = entry.getKey();
|
|
Field field = entry.getValue();
|
|
try {
|
|
ConfigurationItem item = (ConfigurationItem) field.get(null);
|
|
item.unset();
|
|
} catch (IllegalArgumentException | IllegalAccessException ex) {
|
|
// Reflection exceptions. This should never happen
|
|
throw new Error(ex.getMessage());
|
|
}
|
|
}
|
|
Configuration.saveConfig();
|
|
setVisible(false);
|
|
showRestartConfirmDialog();
|
|
}
|
|
}
|