mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-05 19:27:23 +00:00
103 lines
3.4 KiB
Java
103 lines
3.4 KiB
Java
/*
|
|
* Copyright (C) 2010-2014 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.ApplicationInfo;
|
|
import java.awt.Container;
|
|
import java.awt.GridLayout;
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
import java.awt.event.WindowAdapter;
|
|
import java.awt.event.WindowEvent;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JLabel;
|
|
|
|
/**
|
|
* Frame with selection on application startServer
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class ModeFrame extends AppFrame implements ActionListener {
|
|
|
|
static final String ACTION_OPEN = "OPEN";
|
|
static final String ACTION_PROXY = "PROXY";
|
|
static final String ACTION_EXIT = "EXIT";
|
|
|
|
private final JButton openButton = new JButton(translate("button.open"));
|
|
private final JButton proxyButton = new JButton(translate("button.proxy"));
|
|
private final JButton exitButton = new JButton(translate("button.exit"));
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public ModeFrame() {
|
|
setSize(350, 200);
|
|
openButton.addActionListener(this);
|
|
openButton.setActionCommand(ACTION_OPEN);
|
|
openButton.setIcon(View.getIcon("open32"));
|
|
proxyButton.addActionListener(this);
|
|
proxyButton.setActionCommand(ACTION_PROXY);
|
|
proxyButton.setIcon(View.getIcon("proxy32"));
|
|
exitButton.addActionListener(this);
|
|
exitButton.setActionCommand(ACTION_EXIT);
|
|
exitButton.setIcon(View.getIcon("exit32"));
|
|
setResizable(false);
|
|
Container cont = getContentPane();
|
|
cont.setLayout(new GridLayout(4, 1));
|
|
JLabel logoLabel = new JLabel();
|
|
logoLabel.setIcon(View.getIcon("logo"));
|
|
cont.add(logoLabel);
|
|
cont.add(openButton);
|
|
cont.add(proxyButton);
|
|
cont.add(exitButton);
|
|
View.centerScreen(this);
|
|
View.setWindowIcon(this);
|
|
setTitle(ApplicationInfo.shortApplicationVerName);
|
|
this.addWindowListener(new WindowAdapter() {
|
|
@Override
|
|
public void windowClosing(WindowEvent e) {
|
|
Main.exit();
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Method handling actions from buttons
|
|
*
|
|
* @param e event
|
|
*/
|
|
@Override
|
|
public void actionPerformed(ActionEvent e) {
|
|
switch (e.getActionCommand()) {
|
|
case ACTION_OPEN:
|
|
setVisible(false);
|
|
if (!Main.openFileDialog()) {
|
|
setVisible(true);
|
|
}
|
|
break;
|
|
case ACTION_PROXY:
|
|
setVisible(false);
|
|
Main.showProxy();
|
|
break;
|
|
case ACTION_EXIT:
|
|
setVisible(false);
|
|
Main.exit();
|
|
break;
|
|
}
|
|
}
|
|
}
|