im groben und ganzen funktionierts. ich kann keine guis.

This commit is contained in:
da
2015-11-06 22:16:23 +01:00
parent 830f652139
commit 73c595806f
3 changed files with 64 additions and 8 deletions
+36 -8
View File
@@ -1,5 +1,6 @@
package com.ixab.GUI;
import com.ixab.*;
import com.ixab.ConfigHandling.Config;
import com.ixab.ConfigHandling.ConfigFileIOHandler;
import com.ixab.ConfigHandling.ConfigFileInstanceHandler;
@@ -9,6 +10,8 @@ import com.sun.xml.internal.ws.policy.privateutil.PolicyUtils;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
public class StreamChooserMenu {
private JPanel panel;
@@ -31,10 +34,7 @@ public class StreamChooserMenu {
hinzufügenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ConfigFileInstanceHandler.getConfig().addStream(textField1.getText());
ConfigFileIOHandler.save(ConfigFileInstanceHandler.getConfig());
initComboBoxes();
textField1.setText("");
addNewStream();
}
});
entfernenButton.addActionListener(new ActionListener() {
@@ -42,24 +42,52 @@ public class StreamChooserMenu {
public void actionPerformed(ActionEvent e) {
ConfigFileInstanceHandler.getConfig().removeStream(comboBox1.getSelectedItem());
ConfigFileIOHandler.save(ConfigFileInstanceHandler.getConfig());
initComboBoxes();
initStreamsComboBox();
}
});
comboBox1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO: implement twitch api and update stream info
}
});
textField1.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
super.keyPressed(e);
if (textField1.isFocusOwner() && e.getKeyCode() == 10) {
addNewStream();
}
}
});
}
public void initComboBoxes() {
private void addNewStream() {
ConfigFileInstanceHandler.getConfig().addStream(textField1.getText());
ConfigFileIOHandler.save(ConfigFileInstanceHandler.getConfig());
initStreamsComboBox();
textField1.setText("");
}
private void initComboBoxes() {
initQualityComboBox();
initStreamsComboBox();
}
private void initStreamsComboBox() {
comboBox1.removeAllItems();
comboBox2.removeAllItems();
for (String streamName :
ConfigFileInstanceHandler.getConfig().getStreams()) {
comboBox1.addItem(streamName);
}
}
private void initQualityComboBox() {
comboBox2.removeAllItems();
comboBox2.addItem("best"); comboBox2.addItem("high"); comboBox2.addItem("medium"); comboBox2.addItem("low"); comboBox2.addItem("mobile");
}
public static void main(String[] args) {
JFrame frame = new JFrame("StreamChooserMenu");
JFrame frame = new JFrame("jLSLauncher v"+ com.ixab.Main.getVersion());
frame.setContentPane(new StreamChooserMenu().panel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
}