You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
5.9 KiB
128 lines
5.9 KiB
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
/*
|
|
* LwjglAppletCustomizerPanel.java
|
|
*
|
|
* Created on 11.11.2010, 16:56:53
|
|
*/
|
|
package com.jme3.gde.lwjgl.applet;
|
|
|
|
import com.jme3.gde.core.j2seproject.ProjectExtensionProperties;
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
import org.openide.util.HelpCtx;
|
|
|
|
/**
|
|
*
|
|
* @author normenhansen
|
|
*/
|
|
public class LwjglAppletCustomizerPanel extends javax.swing.JPanel implements ActionListener {
|
|
|
|
private ProjectExtensionProperties properties;
|
|
|
|
/** Creates new form LwjglAppletCustomizerPanel */
|
|
public LwjglAppletCustomizerPanel(ProjectExtensionProperties properties) {
|
|
this.properties = properties;
|
|
initComponents();
|
|
loadProperties();
|
|
HelpCtx.setHelpIDString(this, "sdk.application_deployment");
|
|
}
|
|
|
|
private void loadProperties() {
|
|
String str = properties.getProperty("lwjgl.applet.enabled");
|
|
if ("true".equals(str)) {
|
|
jCheckBox1.setSelected(true);
|
|
} else {
|
|
jCheckBox1.setSelected(false);
|
|
}
|
|
if (properties.getProperty("lwjgl.applet.width") != null) {
|
|
jTextField1.setText(properties.getProperty("lwjgl.applet.width"));
|
|
jTextField2.setText(properties.getProperty("lwjgl.applet.height"));
|
|
}
|
|
}
|
|
|
|
private void saveProperties() {
|
|
if (jCheckBox1.isSelected()) {
|
|
properties.setProperty("lwjgl.applet.enabled", "true");
|
|
} else {
|
|
properties.setProperty("lwjgl.applet.enabled", "");
|
|
}
|
|
properties.setProperty("lwjgl.applet.width", jTextField1.getText());
|
|
properties.setProperty("lwjgl.applet.height", jTextField2.getText());
|
|
}
|
|
|
|
public void actionPerformed(ActionEvent e) {
|
|
saveProperties();
|
|
}
|
|
|
|
/** 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() {
|
|
|
|
jCheckBox1 = new javax.swing.JCheckBox();
|
|
jLabel1 = new javax.swing.JLabel();
|
|
jTextField1 = new javax.swing.JTextField();
|
|
jLabel2 = new javax.swing.JLabel();
|
|
jTextField2 = new javax.swing.JTextField();
|
|
jLabel3 = new javax.swing.JLabel();
|
|
|
|
jCheckBox1.setText(org.openide.util.NbBundle.getMessage(LwjglAppletCustomizerPanel.class, "LwjglAppletCustomizerPanel.jCheckBox1.text")); // NOI18N
|
|
|
|
jLabel1.setText(org.openide.util.NbBundle.getMessage(LwjglAppletCustomizerPanel.class, "LwjglAppletCustomizerPanel.jLabel1.text")); // NOI18N
|
|
|
|
jTextField1.setText(org.openide.util.NbBundle.getMessage(LwjglAppletCustomizerPanel.class, "LwjglAppletCustomizerPanel.jTextField1.text")); // NOI18N
|
|
|
|
jLabel2.setText(org.openide.util.NbBundle.getMessage(LwjglAppletCustomizerPanel.class, "LwjglAppletCustomizerPanel.jLabel2.text")); // NOI18N
|
|
|
|
jTextField2.setText(org.openide.util.NbBundle.getMessage(LwjglAppletCustomizerPanel.class, "LwjglAppletCustomizerPanel.jTextField2.text")); // NOI18N
|
|
|
|
jLabel3.setText(org.openide.util.NbBundle.getMessage(LwjglAppletCustomizerPanel.class, "LwjglAppletCustomizerPanel.jLabel3.text")); // NOI18N
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
this.setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(jCheckBox1, javax.swing.GroupLayout.DEFAULT_SIZE, 408, Short.MAX_VALUE)
|
|
.addComponent(jLabel2, javax.swing.GroupLayout.DEFAULT_SIZE, 408, Short.MAX_VALUE)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel1)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 57, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jLabel3)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, 55, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addContainerGap(169, Short.MAX_VALUE))
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel2)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
.addComponent(jCheckBox1)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(jLabel1)
|
|
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addComponent(jLabel3)
|
|
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addContainerGap(212, Short.MAX_VALUE))
|
|
);
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JCheckBox jCheckBox1;
|
|
private javax.swing.JLabel jLabel1;
|
|
private javax.swing.JLabel jLabel2;
|
|
private javax.swing.JLabel jLabel3;
|
|
private javax.swing.JTextField jTextField1;
|
|
private javax.swing.JTextField jTextField2;
|
|
// End of variables declaration//GEN-END:variables
|
|
}
|
|
|