ProfileEditor.java 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package eu.tankernn.grid.frame;
  2. import java.awt.BorderLayout;
  3. import java.awt.GridLayout;
  4. import java.util.Arrays;
  5. import java.util.Dictionary;
  6. import java.util.Hashtable;
  7. import java.util.stream.IntStream;
  8. import javax.swing.BoxLayout;
  9. import javax.swing.JLabel;
  10. import javax.swing.JOptionPane;
  11. import javax.swing.JPanel;
  12. import javax.swing.JSlider;
  13. import javax.swing.JTextField;
  14. import eu.tankernn.grid.FanSpeedProfile;
  15. public class ProfileEditor {
  16. private static Dictionary<Integer, JLabel> dictionary = new Hashtable<>();
  17. static {
  18. dictionary.put(0, new JLabel("0%"));
  19. dictionary.put(50, new JLabel("50%"));
  20. dictionary.put(100, new JLabel("100%"));
  21. }
  22. public FanSpeedProfile editProfile(FanSpeedProfile profile) {
  23. JPanel panel = new JPanel(), sliderPanel = new JPanel();
  24. JSlider[] sliders;
  25. JTextField nameField = new JTextField(20);
  26. if (profile != null) {
  27. nameField.setText(profile.name);
  28. sliders = Arrays.stream(profile.percentages).mapToObj(i -> new JSlider(JSlider.VERTICAL, 0, 100, i))
  29. .toArray(JSlider[]::new);
  30. } else {
  31. sliders = IntStream.range(0, FanSpeedProfile.STEPS).mapToObj(i -> new JSlider(JSlider.VERTICAL, 0, 100, 50))
  32. .toArray(JSlider[]::new);
  33. }
  34. sliderPanel.setLayout(new GridLayout(1, sliders.length));
  35. sliders[sliders.length -1].setPaintLabels(true);
  36. for (int i = 0; i < sliders.length; i++) {
  37. JSlider s = sliders[i];
  38. s.setPaintTicks(true);
  39. s.setSnapToTicks(true);
  40. s.setLabelTable(dictionary);
  41. s.setMinorTickSpacing(5);
  42. s.setMajorTickSpacing(50);
  43. JPanel p = new JPanel();
  44. p.setLayout(new BoxLayout(p, BoxLayout.Y_AXIS));
  45. p.add(s);
  46. p.add(new JLabel(FanSpeedProfile.MIN_TEMP + FanSpeedProfile.STEP_SIZE * i + " \u00B0C"));
  47. sliderPanel.add(p);
  48. }
  49. panel.setLayout(new BorderLayout());
  50. panel.add(GridControlPanel.labelledComponent("Profile name: ", nameField), BorderLayout.NORTH);
  51. panel.add(sliderPanel, BorderLayout.CENTER);
  52. int response = JOptionPane.showConfirmDialog(null, panel, "Fan Speed Profile Editor",
  53. JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
  54. if (response == JOptionPane.OK_OPTION) {
  55. FanSpeedProfile newProfile = new FanSpeedProfile(nameField.getText(),
  56. Arrays.stream(sliders).mapToInt(JSlider::getValue).toArray());
  57. if (nameField.getText().isEmpty()) {
  58. JOptionPane.showMessageDialog(null, "Please enter a name for the profile.");
  59. return editProfile(newProfile);
  60. }
  61. return newProfile;
  62. } else {
  63. return profile;
  64. }
  65. }
  66. public static void main(String[] args) {
  67. System.out.println(new ProfileEditor().editProfile(null));
  68. }
  69. }