/* * Copyright (C) 2012 Gyver * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.gyver.matrixmover.gui.generator; import com.gyver.matrixmover.generator.Rain; import com.gyver.matrixmover.generator.enums.RainDirection; import com.gyver.matrixmover.gui.Frame; import com.gyver.matrixmover.gui.ColorMapDialog; import com.gyver.matrixmover.gui.component.JTextFieldSlider; import com.gyver.matrixmover.gui.listener.interfaces.TFSListener; import javax.swing.DefaultComboBoxModel; import javax.swing.event.ChangeEvent; /** * Configuration dialog for Drops generator. * * @author Gyver */ public class DropsConfiguration extends javax.swing.JDialog { private Rain generator = null; /** Creates new form ColorTableDialog */ public DropsConfiguration(java.awt.Frame parent, boolean modal, Rain generator) { super(parent, modal); this.setTitle(generator.getName().toString()+" Configuration"); this.generator = generator; initComponents(); tfsLength.setValue(generator.getRainLength()); tfsCount.setValue(generator.getDropsPerScreen()); tfsSpeed.setValue(generator.getBpm()); cbScrollMode.setModel(new DefaultComboBoxModel(RainDirection.values())); cbScrollMode.setSelectedItem(generator.getMode()); tfsLength.addTFSListener(new TFSListener() { @Override public void stateChanged(ChangeEvent e) { tpsLengthStateChanged(e); } }); tfsSpeed.addTFSListener(new TFSListener() { @Override public void stateChanged(ChangeEvent e) { tpsSpeedStateChanged(e); } }); tfsCount.addTFSListener(new TFSListener() { @Override public void stateChanged(ChangeEvent e) { tpsCountStateChanged(e); } }); setLocationRelativeTo(null); } private void tpsLengthStateChanged(ChangeEvent e){ int distance = ((JTextFieldSlider) e.getSource()).getValue(); generator.setRainLength(distance); } private void tpsSpeedStateChanged(ChangeEvent e){ int speed = ((JTextFieldSlider) e.getSource()).getValue(); generator.setBpm(speed); } private void tpsCountStateChanged(ChangeEvent e){ int count = ((JTextFieldSlider) e.getSource()).getValue(); generator.setDrosPerScreen(count); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { java.awt.GridBagConstraints gridBagConstraints; bColorMap = new javax.swing.JButton(); tfsSpeed = new com.gyver.matrixmover.gui.component.JTextFieldSlider(); tfsLength = new com.gyver.matrixmover.gui.component.JTextFieldSlider(); jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); cbScrollMode = new javax.swing.JComboBox(); jLabel3 = new javax.swing.JLabel(); bSaveExit = new javax.swing.JButton(); jLabel4 = new javax.swing.JLabel(); tfsCount = new com.gyver.matrixmover.gui.component.JTextFieldSlider(); jCheckBox1 = new javax.swing.JCheckBox(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); getContentPane().setLayout(new java.awt.GridBagLayout()); bColorMap.setText("Color Map"); bColorMap.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { bColorMapActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridwidth = 2; gridBagConstraints.ipadx = 50; gridBagConstraints.anchor = java.awt.GridBagConstraints.FIRST_LINE_START; gridBagConstraints.insets = new java.awt.Insets(10, 10, 5, 5); getContentPane().add(bColorMap, gridBagConstraints); tfsSpeed.setMaximum(1000); tfsSpeed.setMinimum(1); tfsSpeed.setValue(120); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 1; gridBagConstraints.gridy = 2; gridBagConstraints.gridwidth = 2; gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL; gridBagConstraints.weightx = 0.1; gridBagConstraints.insets = new java.awt.Insets(5, 0, 5, 10); getContentPane().add(tfsSpeed, gridBagConstraints); tfsLength.setMaximum(100); tfsLength.setMinimum(1); tfsLength.setValue(6); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 1; gridBagConstraints.gridy = 3; gridBagConstraints.gridwidth = 2; gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL; gridBagConstraints.weightx = 0.1; gridBagConstraints.insets = new java.awt.Insets(5, 0, 5, 10); getContentPane().add(tfsLength, gridBagConstraints); jLabel1.setText("BPM:"); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 2; gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END; gridBagConstraints.insets = new java.awt.Insets(5, 10, 5, 5); getContentPane().add(jLabel1, gridBagConstraints); jLabel2.setText("Length:"); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 3; gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END; gridBagConstraints.insets = new java.awt.Insets(0, 10, 0, 5); getContentPane().add(jLabel2, gridBagConstraints); cbScrollMode.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" })); cbScrollMode.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cbScrollModeActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 1; gridBagConstraints.gridy = 1; gridBagConstraints.gridwidth = 2; gridBagConstraints.ipadx = 150; gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START; gridBagConstraints.insets = new java.awt.Insets(5, 0, 5, 15); getContentPane().add(cbScrollMode, gridBagConstraints); jLabel3.setText("Scroll Direction:"); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 1; gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END; gridBagConstraints.insets = new java.awt.Insets(5, 10, 5, 5); getContentPane().add(jLabel3, gridBagConstraints); bSaveExit.setText("Save + Exit"); bSaveExit.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { bSaveExitActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 5; gridBagConstraints.gridwidth = 3; gridBagConstraints.anchor = java.awt.GridBagConstraints.LAST_LINE_END; gridBagConstraints.insets = new java.awt.Insets(5, 0, 10, 10); getContentPane().add(bSaveExit, gridBagConstraints); jLabel4.setText("Count:"); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 4; gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END; gridBagConstraints.insets = new java.awt.Insets(0, 10, 0, 5); getContentPane().add(jLabel4, gridBagConstraints); tfsCount.setMaximum(100); tfsCount.setMinimum(1); tfsCount.setValue(2); tfsCount.setVerifyInputWhenFocusTarget(false); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 1; gridBagConstraints.gridy = 4; gridBagConstraints.gridwidth = 2; gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL; gridBagConstraints.weightx = 0.1; gridBagConstraints.insets = new java.awt.Insets(5, 0, 5, 10); getContentPane().add(tfsCount, gridBagConstraints); jCheckBox1.setText("Random Color"); jCheckBox1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jCheckBox1ActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START; gridBagConstraints.insets = new java.awt.Insets(10, 5, 5, 0); getContentPane().add(jCheckBox1, gridBagConstraints); pack(); }// </editor-fold>//GEN-END:initComponents private void cbScrollModeActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cbScrollModeActionPerformed generator.setMode((RainDirection) cbScrollMode.getSelectedItem()); }//GEN-LAST:event_cbScrollModeActionPerformed private void bColorMapActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_bColorMapActionPerformed ColorMapDialog cmDialog = new ColorMapDialog(Frame.getFrameInstance(), true, generator.getColorMap()); cmDialog.setVisible(true); generator.setColorMap(cmDialog.getColorMap()); }//GEN-LAST:event_bColorMapActionPerformed private void bSaveExitActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_bSaveExitActionPerformed this.dispose(); }//GEN-LAST:event_bSaveExitActionPerformed private void jCheckBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox1ActionPerformed generator.setRandom(jCheckBox1.isSelected()); }//GEN-LAST:event_jCheckBox1ActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton bColorMap; private javax.swing.JButton bSaveExit; private javax.swing.JComboBox cbScrollMode; private javax.swing.JCheckBox jCheckBox1; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private com.gyver.matrixmover.gui.component.JTextFieldSlider tfsCount; private com.gyver.matrixmover.gui.component.JTextFieldSlider tfsLength; private com.gyver.matrixmover.gui.component.JTextFieldSlider tfsSpeed; // End of variables declaration//GEN-END:variables }