mirror of
https://github.com/Maschell/JNUSTool.git
synced 2024-11-27 18:34:18 +01:00
progressbar added for "normal gui"
Added the progressbar for the normal gui
This commit is contained in:
parent
626104209d
commit
9bbb016d97
BIN
jar/JNUSTool.jar
BIN
jar/JNUSTool.jar
Binary file not shown.
@ -86,7 +86,20 @@ public class Progress {
|
||||
}
|
||||
|
||||
public void finish() {
|
||||
setCurrent(getTotalOfSingle());
|
||||
setCurrent(getTotalOfSingle());
|
||||
}
|
||||
|
||||
private boolean inprogress = false;
|
||||
|
||||
public void operationStart() {
|
||||
inprogress = true;
|
||||
}
|
||||
public void operationFinish() {
|
||||
inprogress = false;
|
||||
}
|
||||
|
||||
public boolean isInProgress(){
|
||||
return inprogress;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ public class Starter {
|
||||
private static String updateCSVPath;
|
||||
|
||||
public static void main(String[] args) {
|
||||
Logger.log("JNUSTool 0.0.3 - pre alpha - by Maschell");
|
||||
Logger.log("JNUSTool 0.0.4 - pre alpha - by Maschell");
|
||||
Logger.log("");
|
||||
try {
|
||||
readConfig();
|
||||
|
@ -17,7 +17,12 @@ import javax.swing.tree.DefaultMutableTreeNode;
|
||||
import javax.swing.tree.TreePath;
|
||||
|
||||
import de.mas.jnustool.FEntry;
|
||||
import de.mas.jnustool.Logger;
|
||||
import de.mas.jnustool.NUSTitle;
|
||||
import de.mas.jnustool.Progress;
|
||||
import de.mas.jnustool.ProgressUpdateListener;
|
||||
|
||||
import javax.swing.JProgressBar;
|
||||
|
||||
public class NUSGUI extends JFrame {
|
||||
|
||||
@ -47,25 +52,47 @@ public class NUSGUI extends JFrame {
|
||||
panel.add(qPane);
|
||||
splitPane.setLeftComponent(panel);
|
||||
|
||||
JPanel panel_1 = new JPanel();
|
||||
panel.add(panel_1, BorderLayout.SOUTH);
|
||||
|
||||
JButton btnNewButton = new JButton("Download");
|
||||
panel.add(btnNewButton, BorderLayout.SOUTH);
|
||||
panel_1.add(btnNewButton);
|
||||
|
||||
JProgressBar progressBar = new JProgressBar();
|
||||
panel_1.add(progressBar);
|
||||
|
||||
progressBar.setValue(0);
|
||||
Progress progress = new Progress();
|
||||
progress.setProgressUpdateListener(new ProgressUpdateListener() {
|
||||
|
||||
@Override
|
||||
public void updatePerformed(Progress p) {
|
||||
progressBar.setValue((int)p.statusInPercent());
|
||||
}
|
||||
});
|
||||
|
||||
btnNewButton.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
new Thread(new Runnable() { public void run() {
|
||||
|
||||
List<FEntry> list = new ArrayList<>();
|
||||
TreePath[] paths = cbt.getCheckedPaths();
|
||||
for (TreePath tp : paths) {
|
||||
Object obj = tp.getPath()[tp.getPath().length-1];
|
||||
if(((DefaultMutableTreeNode)obj).getUserObject() instanceof FEntry){
|
||||
list.add((FEntry) ((DefaultMutableTreeNode)obj).getUserObject());
|
||||
}
|
||||
}
|
||||
|
||||
nus.decryptFEntries(list, null);
|
||||
}}).start();
|
||||
|
||||
if(!progress.isInProgress()){
|
||||
progress.clear();
|
||||
progress.operationStart();
|
||||
new Thread(new Runnable() { public void run() {
|
||||
|
||||
List<FEntry> list = new ArrayList<>();
|
||||
TreePath[] paths = cbt.getCheckedPaths();
|
||||
for (TreePath tp : paths) {
|
||||
Object obj = tp.getPath()[tp.getPath().length-1];
|
||||
if(((DefaultMutableTreeNode)obj).getUserObject() instanceof FEntry){
|
||||
list.add((FEntry) ((DefaultMutableTreeNode)obj).getUserObject());
|
||||
}
|
||||
}
|
||||
nus.decryptFEntries(list, progress);
|
||||
progress.operationFinish();
|
||||
Logger.messageBox("Finished");
|
||||
}}).start();
|
||||
}else{
|
||||
Logger.messageBox("Operation still in progress, please wait");
|
||||
}
|
||||
}
|
||||
});
|
||||
JScrollPane outputPane = new JScrollPane(output,
|
||||
|
@ -27,6 +27,7 @@ import javax.swing.ScrollPaneConstants;
|
||||
import javax.swing.event.ListSelectionEvent;
|
||||
import javax.swing.event.ListSelectionListener;
|
||||
|
||||
import de.mas.jnustool.Logger;
|
||||
import de.mas.jnustool.Progress;
|
||||
import de.mas.jnustool.ProgressUpdateListener;
|
||||
import de.mas.jnustool.Starter;
|
||||
@ -154,20 +155,21 @@ public class UpdateChooser extends JPanel {
|
||||
|
||||
btnDownloadMeta.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
if(progressBar_1.getValue() == 0 || progressBar_1.getValue() == 100){
|
||||
progressBar_1.setValue(1);
|
||||
if(!progress.isInProgress()){
|
||||
progress.clear();
|
||||
progress.operationStart();
|
||||
new Thread(new Runnable(){
|
||||
@Override
|
||||
public void run() {
|
||||
Starter.downloadMeta(output_,progress);
|
||||
JOptionPane.showMessageDialog(window, "Finished");
|
||||
progress.operationFinish();
|
||||
Logger.messageBox("Finished");
|
||||
}
|
||||
|
||||
}).start();
|
||||
|
||||
}else{
|
||||
JOptionPane.showMessageDialog(window, "Operation still in progress, please wait");
|
||||
Logger.messageBox("Operation still in progress, please wait");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user