2018-01-31 15:03:53 +00:00
|
|
|
package the.bytecode.club.bootloader;
|
|
|
|
|
|
|
|
import java.awt.Dimension;
|
|
|
|
import java.awt.GridBagConstraints;
|
|
|
|
import java.awt.GridBagLayout;
|
|
|
|
import java.awt.Insets;
|
|
|
|
import java.awt.Toolkit;
|
2019-04-25 21:27:35 +00:00
|
|
|
import java.awt.event.WindowAdapter;
|
|
|
|
import java.awt.event.WindowEvent;
|
2018-01-31 15:03:53 +00:00
|
|
|
import java.io.IOException;
|
|
|
|
import javax.swing.JEditorPane;
|
|
|
|
import javax.swing.JFrame;
|
|
|
|
import javax.swing.JProgressBar;
|
|
|
|
import javax.swing.JScrollPane;
|
|
|
|
import javax.swing.text.html.HTMLEditorKit;
|
2019-04-25 21:27:35 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.BytecodeViewer;
|
2021-06-21 11:13:11 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.Configuration;
|
2018-01-31 15:03:53 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.Resources;
|
2021-07-07 09:00:14 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.gui.components.HTMLPane;
|
|
|
|
|
|
|
|
import static the.bytecode.club.bytecodeviewer.Configuration.language;
|
2018-01-31 15:03:53 +00:00
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *
|
|
|
|
* Copyright (C) 2014 Kalen 'Konloch' Kinloch - http://bytecodeviewer.com *
|
|
|
|
* *
|
|
|
|
* 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/>. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Konloch
|
|
|
|
* @author Bibl (don't ban me pls)
|
|
|
|
* @created 19 Jul 2015 04:12:21
|
|
|
|
*/
|
2021-07-07 09:00:14 +00:00
|
|
|
public class InitialBootScreen extends JFrame
|
|
|
|
{
|
2021-04-12 20:19:12 +00:00
|
|
|
private final JProgressBar progressBar = new JProgressBar();
|
2018-01-31 15:41:24 +00:00
|
|
|
|
2021-07-07 09:00:14 +00:00
|
|
|
public InitialBootScreen() throws IOException
|
|
|
|
{
|
2019-04-25 21:27:35 +00:00
|
|
|
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
|
|
|
|
addWindowListener(new WindowAdapter() {
|
|
|
|
@Override
|
|
|
|
public void windowClosing(WindowEvent e) {
|
2021-06-21 11:13:11 +00:00
|
|
|
Configuration.canExit = true;
|
2019-04-25 21:27:35 +00:00
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
});
|
2018-01-31 15:41:24 +00:00
|
|
|
this.setIconImages(Resources.iconList);
|
|
|
|
|
2021-07-07 09:00:14 +00:00
|
|
|
setSize(getSafeSize());
|
2018-01-31 15:41:24 +00:00
|
|
|
|
|
|
|
setTitle("Bytecode Viewer Boot Screen - Starting Up");
|
|
|
|
GridBagLayout gridBagLayout = new GridBagLayout();
|
|
|
|
gridBagLayout.columnWidths = new int[]{0, 0};
|
2021-07-07 09:00:14 +00:00
|
|
|
gridBagLayout.rowHeights = new int[]{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
2018-01-31 15:41:24 +00:00
|
|
|
gridBagLayout.columnWeights = new double[]{1.0, Double.MIN_VALUE};
|
2021-07-07 09:00:14 +00:00
|
|
|
gridBagLayout.rowWeights = new double[]{1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, Double.MIN_VALUE};
|
2018-01-31 15:41:24 +00:00
|
|
|
getContentPane().setLayout(gridBagLayout);
|
|
|
|
|
|
|
|
JScrollPane scrollPane = new JScrollPane();
|
|
|
|
GridBagConstraints gbc_scrollPane = new GridBagConstraints();
|
|
|
|
gbc_scrollPane.gridheight = 24;
|
|
|
|
gbc_scrollPane.insets = new Insets(0, 0, 5, 0);
|
|
|
|
gbc_scrollPane.fill = GridBagConstraints.BOTH;
|
|
|
|
gbc_scrollPane.gridx = 0;
|
|
|
|
gbc_scrollPane.gridy = 0;
|
|
|
|
getContentPane().add(scrollPane, gbc_scrollPane);
|
2021-07-07 09:00:14 +00:00
|
|
|
|
|
|
|
scrollPane.setViewportView(HTMLPane.fromResource(language.getHTMLPath("intro")));
|
2018-01-31 15:41:24 +00:00
|
|
|
|
|
|
|
GridBagConstraints gbc_progressBar = new GridBagConstraints();
|
|
|
|
gbc_progressBar.fill = GridBagConstraints.HORIZONTAL;
|
|
|
|
gbc_progressBar.gridx = 0;
|
|
|
|
gbc_progressBar.gridy = 24;
|
|
|
|
getContentPane().add(progressBar, gbc_progressBar);
|
|
|
|
this.setLocationRelativeTo(null);
|
|
|
|
}
|
2021-07-07 09:00:14 +00:00
|
|
|
|
|
|
|
public static Dimension getSafeSize()
|
|
|
|
{
|
|
|
|
int i = (int) Toolkit.getDefaultToolkit().getScreenSize().getHeight();
|
|
|
|
if (i >= 840)
|
|
|
|
return new Dimension(600, 800);
|
|
|
|
else if (i >= 640)
|
|
|
|
return new Dimension(500, 600);
|
|
|
|
else if (i >= 440)
|
|
|
|
return new Dimension(400, 400);
|
|
|
|
else
|
|
|
|
return Toolkit.getDefaultToolkit().getScreenSize();
|
2018-01-31 15:41:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public JProgressBar getProgressBar() {
|
|
|
|
return progressBar;
|
|
|
|
}
|
2021-07-07 09:00:14 +00:00
|
|
|
|
|
|
|
private static final long serialVersionUID = -1098467609722393444L;
|
2018-01-31 15:03:53 +00:00
|
|
|
}
|