Examples of LauncherSettings


Examples of se.llbit.chunky.launcher.LauncherSettings

        }
      }
    });

    JCheckBox showLauncher = new JCheckBox("Show launcher when starting Chunky");
    LauncherSettings settings = new LauncherSettings();
    settings.load();
    showLauncher.setSelected(settings.showLauncher);
    showLauncher.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        JCheckBox source = (JCheckBox) e.getSource();
        LauncherSettings settings = new LauncherSettings();
        settings.load();
        settings.showLauncher = source.isSelected();
        settings.save();
      }
    });

    GroupLayout layout = new GroupLayout(optionsPanel);
    optionsPanel.setLayout(layout);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.