|
@@ -10,10 +10,13 @@ import java.awt.GridLayout;
|
|
|
import javax.swing.JButton;
|
|
|
import javax.swing.JComboBox;
|
|
|
import javax.swing.JDialog;
|
|
|
+import javax.swing.JFrame;
|
|
|
import javax.swing.JLabel;
|
|
|
import javax.swing.JPanel;
|
|
|
import javax.swing.JTextField;
|
|
|
|
|
|
+import ui.controller.Control;
|
|
|
+
|
|
|
|
|
|
|
|
|
public class NewPopUp extends JDialog{
|
|
@@ -40,16 +43,15 @@ public class NewPopUp extends JDialog{
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
- NewPopUp dialog = new NewPopUp();
|
|
|
+ NewPopUp dialog = new NewPopUp(null, null);
|
|
|
dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
|
|
|
|
|
|
}
|
|
|
|
|
|
- NewPopUp(){
|
|
|
- super((JDialog)null, "Create a..");
|
|
|
+ NewPopUp(Control controller, JFrame parentFrame){
|
|
|
+ super((JFrame)parentFrame, "Create a..");
|
|
|
setVisible(true);
|
|
|
JPanel contentPanel = new JPanel();
|
|
|
-
|
|
|
contentPanel.setLayout(new BorderLayout());
|
|
|
contentPanel.add(makeTopPanel(), BorderLayout.PAGE_START);
|
|
|
JPanel cards = new JPanel(new CardLayout());
|
|
@@ -68,13 +70,55 @@ public class NewPopUp extends JDialog{
|
|
|
});
|
|
|
saveButton.addActionListener(actionEvent -> {
|
|
|
System.out.println(choosenOption);
|
|
|
-
|
|
|
+ if(choosenOption == NewItem.Category)
|
|
|
+ {
|
|
|
+ try {
|
|
|
+ controller.addCategory(inputName.getText());
|
|
|
+ } catch (Exception e) {
|
|
|
+ }
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
contentPanel.add(makeBottemPanel(), BorderLayout.PAGE_END);
|
|
|
|
|
|
add(contentPanel);
|
|
|
- setMinimumSize(new Dimension(200,200));
|
|
|
+ setMinimumSize(new Dimension(400,350));
|
|
|
+ pack();
|
|
|
+ setLocationRelativeTo(parentFrame);
|
|
|
+ }
|
|
|
+ NewPopUp(Control controller, NewItem aOption, JFrame parentFrame){
|
|
|
+ super((JFrame)parentFrame, "Create a " + aOption.name());
|
|
|
+ if(aOption == NewItem.None)
|
|
|
+ dispose();
|
|
|
+ setVisible(true);
|
|
|
+ JPanel contentPanel = new JPanel();
|
|
|
+ contentPanel.setLayout(new BorderLayout());
|
|
|
+ JPanel content;
|
|
|
+ switch(aOption)
|
|
|
+ {
|
|
|
+ case Battery:
|
|
|
+ content = makeBatteryPanel();
|
|
|
+ break;
|
|
|
+ case Category:
|
|
|
+ content = makeCategoryPanel();
|
|
|
+ break;
|
|
|
+ case Object:
|
|
|
+ content = makeObjectPanel();
|
|
|
+ break;
|
|
|
+ case Switch:
|
|
|
+ content = makeSwitchPanel();
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ content = new JPanel();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ choosenOption = aOption;
|
|
|
+ contentPanel.add(content, BorderLayout.CENTER);
|
|
|
+ contentPanel.add(makeBottemPanel(), BorderLayout.PAGE_END);
|
|
|
+ add(contentPanel);
|
|
|
+ setMinimumSize(new Dimension(400,350));
|
|
|
+ pack();
|
|
|
+ setLocationRelativeTo(parentFrame);
|
|
|
}
|
|
|
|
|
|
private JPanel makeTopPanel() {
|