mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-28 08:35:36 +00:00
format source code
This commit is contained in:
@@ -1,119 +1,119 @@
|
||||
/*
|
||||
* Copyright (C) 2010-2015 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 java.awt.Container;
|
||||
import java.awt.FlowLayout;
|
||||
import java.awt.event.ActionEvent;
|
||||
import javax.swing.BoxLayout;
|
||||
import javax.swing.ButtonGroup;
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.JRadioButton;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class ReplaceTraceDialog extends AppDialog {
|
||||
|
||||
private JRadioButton debugAlertRadio;
|
||||
|
||||
private JRadioButton debugConsoleRadio;
|
||||
|
||||
private JRadioButton debugSocketRadio;
|
||||
|
||||
private String value = null;
|
||||
|
||||
private void setValue(String val) {
|
||||
if (val == null) {
|
||||
return;
|
||||
}
|
||||
switch (val) {
|
||||
case "debugAlert":
|
||||
debugAlertRadio.setSelected(true);
|
||||
break;
|
||||
case "debugConsole":
|
||||
debugConsoleRadio.setSelected(true);
|
||||
break;
|
||||
case "debugSocket":
|
||||
debugSocketRadio.setSelected(true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public ReplaceTraceDialog(String defaultVal) {
|
||||
setTitle(translate("dialog.title"));
|
||||
Container cnt = getContentPane();
|
||||
cnt.setLayout(new BoxLayout(cnt, BoxLayout.Y_AXIS));
|
||||
debugAlertRadio = new JRadioButton(translate("function.debugAlert"));
|
||||
debugAlertRadio.setAlignmentX(0);
|
||||
debugConsoleRadio = new JRadioButton(translate("function.debugConsole"));
|
||||
debugConsoleRadio.setAlignmentX(0);
|
||||
debugSocketRadio = new JRadioButton(translate("function.debugSocket"));
|
||||
debugSocketRadio.setAlignmentX(0);
|
||||
|
||||
debugAlertRadio.setSelected(true);
|
||||
|
||||
ButtonGroup bg = new ButtonGroup();
|
||||
bg.add(debugAlertRadio);
|
||||
bg.add(debugConsoleRadio);
|
||||
bg.add(debugSocketRadio);
|
||||
|
||||
cnt.add(debugAlertRadio);
|
||||
cnt.add(debugConsoleRadio);
|
||||
cnt.add(debugSocketRadio);
|
||||
|
||||
JPanel buttonsPanel = new JPanel(new FlowLayout());
|
||||
JButton okButton = new JButton(AppStrings.translate("button.ok"));
|
||||
okButton.addActionListener(this::okButtonActionPerformed);
|
||||
JButton cancelButton = new JButton(AppStrings.translate("button.cancel"));
|
||||
cancelButton.addActionListener(this::cancelButtonActionPerformed);
|
||||
buttonsPanel.add(okButton);
|
||||
buttonsPanel.add(cancelButton);
|
||||
buttonsPanel.setAlignmentX(0);
|
||||
add(buttonsPanel);
|
||||
setModalityType(DEFAULT_MODALITY_TYPE);
|
||||
pack();
|
||||
View.setWindowIcon(this);
|
||||
View.centerScreen(this);
|
||||
setValue(defaultVal);
|
||||
}
|
||||
|
||||
private void okButtonActionPerformed(ActionEvent evt) {
|
||||
if (debugAlertRadio.isSelected()) {
|
||||
value = "debugAlert";
|
||||
}
|
||||
if (debugConsoleRadio.isSelected()) {
|
||||
value = "debugConsole";
|
||||
}
|
||||
if (debugSocketRadio.isSelected()) {
|
||||
value = "debugSocket";
|
||||
}
|
||||
|
||||
setVisible(false);
|
||||
}
|
||||
|
||||
private void cancelButtonActionPerformed(ActionEvent evt) {
|
||||
value = null;
|
||||
setVisible(false);
|
||||
}
|
||||
}
|
||||
/*
|
||||
* Copyright (C) 2010-2015 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 java.awt.Container;
|
||||
import java.awt.FlowLayout;
|
||||
import java.awt.event.ActionEvent;
|
||||
import javax.swing.BoxLayout;
|
||||
import javax.swing.ButtonGroup;
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.JRadioButton;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class ReplaceTraceDialog extends AppDialog {
|
||||
|
||||
private JRadioButton debugAlertRadio;
|
||||
|
||||
private JRadioButton debugConsoleRadio;
|
||||
|
||||
private JRadioButton debugSocketRadio;
|
||||
|
||||
private String value = null;
|
||||
|
||||
private void setValue(String val) {
|
||||
if (val == null) {
|
||||
return;
|
||||
}
|
||||
switch (val) {
|
||||
case "debugAlert":
|
||||
debugAlertRadio.setSelected(true);
|
||||
break;
|
||||
case "debugConsole":
|
||||
debugConsoleRadio.setSelected(true);
|
||||
break;
|
||||
case "debugSocket":
|
||||
debugSocketRadio.setSelected(true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public ReplaceTraceDialog(String defaultVal) {
|
||||
setTitle(translate("dialog.title"));
|
||||
Container cnt = getContentPane();
|
||||
cnt.setLayout(new BoxLayout(cnt, BoxLayout.Y_AXIS));
|
||||
debugAlertRadio = new JRadioButton(translate("function.debugAlert"));
|
||||
debugAlertRadio.setAlignmentX(0);
|
||||
debugConsoleRadio = new JRadioButton(translate("function.debugConsole"));
|
||||
debugConsoleRadio.setAlignmentX(0);
|
||||
debugSocketRadio = new JRadioButton(translate("function.debugSocket"));
|
||||
debugSocketRadio.setAlignmentX(0);
|
||||
|
||||
debugAlertRadio.setSelected(true);
|
||||
|
||||
ButtonGroup bg = new ButtonGroup();
|
||||
bg.add(debugAlertRadio);
|
||||
bg.add(debugConsoleRadio);
|
||||
bg.add(debugSocketRadio);
|
||||
|
||||
cnt.add(debugAlertRadio);
|
||||
cnt.add(debugConsoleRadio);
|
||||
cnt.add(debugSocketRadio);
|
||||
|
||||
JPanel buttonsPanel = new JPanel(new FlowLayout());
|
||||
JButton okButton = new JButton(AppStrings.translate("button.ok"));
|
||||
okButton.addActionListener(this::okButtonActionPerformed);
|
||||
JButton cancelButton = new JButton(AppStrings.translate("button.cancel"));
|
||||
cancelButton.addActionListener(this::cancelButtonActionPerformed);
|
||||
buttonsPanel.add(okButton);
|
||||
buttonsPanel.add(cancelButton);
|
||||
buttonsPanel.setAlignmentX(0);
|
||||
add(buttonsPanel);
|
||||
setModalityType(DEFAULT_MODALITY_TYPE);
|
||||
pack();
|
||||
View.setWindowIcon(this);
|
||||
View.centerScreen(this);
|
||||
setValue(defaultVal);
|
||||
}
|
||||
|
||||
private void okButtonActionPerformed(ActionEvent evt) {
|
||||
if (debugAlertRadio.isSelected()) {
|
||||
value = "debugAlert";
|
||||
}
|
||||
if (debugConsoleRadio.isSelected()) {
|
||||
value = "debugConsole";
|
||||
}
|
||||
if (debugSocketRadio.isSelected()) {
|
||||
value = "debugSocket";
|
||||
}
|
||||
|
||||
setVisible(false);
|
||||
}
|
||||
|
||||
private void cancelButtonActionPerformed(ActionEvent evt) {
|
||||
value = null;
|
||||
setVisible(false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user