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.
114 lines
4.4 KiB
114 lines
4.4 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.obfuscate;
|
|
|
|
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 ObfuscateCustomizerPanel extends javax.swing.JPanel implements ActionListener {
|
|
|
|
private ProjectExtensionProperties properties;
|
|
|
|
/**
|
|
* Creates new form LwjglAppletCustomizerPanel
|
|
*/
|
|
public ObfuscateCustomizerPanel(ProjectExtensionProperties properties) {
|
|
this.properties = properties;
|
|
initComponents();
|
|
loadProperties();
|
|
HelpCtx.setHelpIDString(this, "sdk.application_deployment");
|
|
}
|
|
|
|
private void loadProperties() {
|
|
String str = properties.getProperty("obfuscate");
|
|
if ("true".equals(str)) {
|
|
jCheckBox1.setSelected(true);
|
|
} else {
|
|
jCheckBox1.setSelected(false);
|
|
}
|
|
String props = properties.getProperty("obfuscate.options");
|
|
jTextArea1.setText(props);
|
|
}
|
|
|
|
private void saveProperties() {
|
|
if (jCheckBox1.isSelected()) {
|
|
properties.setProperty("obfuscate", "true");
|
|
} else {
|
|
properties.setProperty("obfuscate", "");
|
|
}
|
|
properties.setProperty("obfuscate.options", jTextArea1.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();
|
|
jScrollPane1 = new javax.swing.JScrollPane();
|
|
jTextArea1 = new javax.swing.JTextArea();
|
|
jLabel1 = new javax.swing.JLabel();
|
|
|
|
jCheckBox1.setText(org.openide.util.NbBundle.getMessage(ObfuscateCustomizerPanel.class, "ObfuscateCustomizerPanel.jCheckBox1.text")); // NOI18N
|
|
|
|
jTextArea1.setColumns(20);
|
|
jTextArea1.setRows(5);
|
|
jScrollPane1.setViewportView(jTextArea1);
|
|
|
|
jLabel1.setText(org.openide.util.NbBundle.getMessage(ObfuscateCustomizerPanel.class, "ObfuscateCustomizerPanel.jLabel1.text")); // NOI18N
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
this.setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 366, Short.MAX_VALUE)
|
|
.addComponent(jCheckBox1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel1)
|
|
.addGap(0, 0, Short.MAX_VALUE)))
|
|
.addContainerGap())
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addComponent(jCheckBox1)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
.addComponent(jLabel1)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 201, Short.MAX_VALUE)
|
|
.addContainerGap())
|
|
);
|
|
}// </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.JScrollPane jScrollPane1;
|
|
private javax.swing.JTextArea jTextArea1;
|
|
// End of variables declaration//GEN-END:variables
|
|
}
|
|
|