|
|
|
/*
|
|
|
|
* 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.desktop.executables;
|
|
|
|
|
|
|
|
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 DesktopExeCustomizerPanel extends javax.swing.JPanel implements ActionListener {
|
|
|
|
|
|
|
|
private ProjectExtensionProperties properties;
|
|
|
|
|
|
|
|
/** Creates new form LwjglAppletCustomizerPanel */
|
|
|
|
public DesktopExeCustomizerPanel(ProjectExtensionProperties properties) {
|
|
|
|
this.properties = properties;
|
|
|
|
initComponents();
|
|
|
|
loadProperties();
|
|
|
|
HelpCtx.setHelpIDString(this, "sdk.application_deployment");
|
|
|
|
}
|
|
|
|
|
|
|
|
private void loadProperties() {
|
|
|
|
String str = properties.getProperty("windows-x86.app.enabled");
|
|
|
|
if ("true".equals(str)) {
|
|
|
|
jCheckBox1.setSelected(true);
|
|
|
|
} else {
|
|
|
|
jCheckBox1.setSelected(false);
|
|
|
|
}
|
|
|
|
String str2 = properties.getProperty("windows-x64.app.enabled");
|
|
|
|
if ("true".equals(str2)) {
|
|
|
|
jCheckBox2.setSelected(true);
|
|
|
|
} else {
|
|
|
|
jCheckBox2.setSelected(false);
|
|
|
|
}
|
|
|
|
String str3 = properties.getProperty("linux-x86.app.enabled");
|
|
|
|
if ("true".equals(str3)) {
|
|
|
|
jCheckBox3.setSelected(true);
|
|
|
|
} else {
|
|
|
|
jCheckBox3.setSelected(false);
|
|
|
|
}
|
|
|
|
String str4 = properties.getProperty("linux-x64.app.enabled");
|
|
|
|
if ("true".equals(str4)) {
|
|
|
|
jCheckBox4.setSelected(true);
|
|
|
|
} else {
|
|
|
|
jCheckBox4.setSelected(false);
|
|
|
|
}
|
|
|
|
String str5 = properties.getProperty("macosx-x64.app.enabled");
|
|
|
|
if ("true".equals(str5)) {
|
|
|
|
jCheckBox5.setSelected(true);
|
|
|
|
} else {
|
|
|
|
jCheckBox5.setSelected(false);
|
|
|
|
}
|
|
|
|
String str6 = properties.getProperty("bundle.jre.enabled");
|
|
|
|
if ("true".equals(str6)) {
|
|
|
|
jCheckBox6.setSelected(true);
|
|
|
|
} else {
|
|
|
|
jCheckBox6.setSelected(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void saveProperties() {
|
|
|
|
if (jCheckBox1.isSelected()) {
|
|
|
|
properties.setProperty("windows-x86.app.enabled", "true");
|
|
|
|
} else {
|
|
|
|
properties.setProperty("windows-x86.app.enabled", "");
|
|
|
|
}
|
|
|
|
if (jCheckBox2.isSelected()) {
|
|
|
|
properties.setProperty("windows-x64.app.enabled", "true");
|
|
|
|
} else {
|
|
|
|
properties.setProperty("windows-x64.app.enabled", "");
|
|
|
|
}
|
|
|
|
if (jCheckBox3.isSelected()) {
|
|
|
|
properties.setProperty("linux-x86.app.enabled", "true");
|
|
|
|
} else {
|
|
|
|
properties.setProperty("linux-x86.app.enabled", "");
|
|
|
|
}
|
|
|
|
if (jCheckBox4.isSelected()) {
|
|
|
|
properties.setProperty("linux-x64.app.enabled", "true");
|
|
|
|
} else {
|
|
|
|
properties.setProperty("linux-x64.app.enabled", "");
|
|
|
|
}
|
|
|
|
if (jCheckBox5.isSelected()) {
|
|
|
|
properties.setProperty("macosx-x64.app.enabled", "true");
|
|
|
|
} else {
|
|
|
|
properties.setProperty("macosx-x64.app.enabled", "");
|
|
|
|
}
|
|
|
|
if (jCheckBox6.isSelected()) {
|
|
|
|
properties.setProperty("bundle.jre.enabled", "true");
|
|
|
|
} else {
|
|
|
|
properties.setProperty("bundle.jre.enabled", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
jCheckBox2 = new javax.swing.JCheckBox();
|
|
|
|
jCheckBox3 = new javax.swing.JCheckBox();
|
|
|
|
jLabel1 = new javax.swing.JLabel();
|
|
|
|
jScrollPane1 = new javax.swing.JScrollPane();
|
|
|
|
jTextArea1 = new javax.swing.JTextArea();
|
|
|
|
jCheckBox4 = new javax.swing.JCheckBox();
|
|
|
|
jCheckBox5 = new javax.swing.JCheckBox();
|
|
|
|
jCheckBox6 = new javax.swing.JCheckBox();
|
|
|
|
|
|
|
|
jCheckBox1.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox1.text")); // NOI18N
|
|
|
|
|
|
|
|
jCheckBox2.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox2.text")); // NOI18N
|
|
|
|
|
|
|
|
jCheckBox3.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox3.text")); // NOI18N
|
|
|
|
|
|
|
|
jLabel1.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jLabel1.text")); // NOI18N
|
|
|
|
|
|
|
|
jTextArea1.setEditable(false);
|
|
|
|
jTextArea1.setColumns(20);
|
|
|
|
jTextArea1.setLineWrap(true);
|
|
|
|
jTextArea1.setRows(5);
|
|
|
|
jTextArea1.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jTextArea1.text")); // NOI18N
|
|
|
|
jTextArea1.setWrapStyleWord(true);
|
|
|
|
jTextArea1.setDisabledTextColor(new java.awt.Color(0, 0, 0));
|
|
|
|
jScrollPane1.setViewportView(jTextArea1);
|
|
|
|
|
|
|
|
jCheckBox4.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox4.text")); // NOI18N
|
|
|
|
|
|
|
|
jCheckBox5.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox5.text")); // NOI18N
|
|
|
|
|
|
|
|
jCheckBox6.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox6.text")); // NOI18N
|
|
|
|
jCheckBox6.setToolTipText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jCheckBox6.toolTipText")); // NOI18N
|
|
|
|
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
|
|
this.setLayout(layout);
|
|
|
|
layout.setHorizontalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 371, Short.MAX_VALUE)
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addComponent(jCheckBox1, javax.swing.GroupLayout.DEFAULT_SIZE, 365, Short.MAX_VALUE)
|
|
|
|
.addComponent(jCheckBox2, javax.swing.GroupLayout.DEFAULT_SIZE, 365, Short.MAX_VALUE)
|
|
|
|
.addComponent(jCheckBox3, javax.swing.GroupLayout.DEFAULT_SIZE, 365, Short.MAX_VALUE)
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addContainerGap()
|
|
|
|
.addComponent(jScrollPane1))
|
|
|
|
.addComponent(jCheckBox4, javax.swing.GroupLayout.DEFAULT_SIZE, 365, Short.MAX_VALUE)
|
|
|
|
.addComponent(jCheckBox5, javax.swing.GroupLayout.DEFAULT_SIZE, 365, Short.MAX_VALUE)
|
|
|
|
.addComponent(jCheckBox6, javax.swing.GroupLayout.DEFAULT_SIZE, 365, Short.MAX_VALUE))
|
|
|
|
.addContainerGap())
|
|
|
|
);
|
|
|
|
layout.setVerticalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGroup(layout.createSequentialGroup()
|
|
|
|
.addComponent(jLabel1)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
|
|
.addComponent(jCheckBox1)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jCheckBox2)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jCheckBox3)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jCheckBox4)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jCheckBox5)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jCheckBox6)
|
|
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 129, 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.JCheckBox jCheckBox2;
|
|
|
|
private javax.swing.JCheckBox jCheckBox3;
|
|
|
|
private javax.swing.JCheckBox jCheckBox4;
|
|
|
|
private javax.swing.JCheckBox jCheckBox5;
|
|
|
|
private javax.swing.JCheckBox jCheckBox6;
|
|
|
|
private javax.swing.JLabel jLabel1;
|
|
|
|
private javax.swing.JScrollPane jScrollPane1;
|
|
|
|
private javax.swing.JTextArea jTextArea1;
|
|
|
|
// End of variables declaration//GEN-END:variables
|
|
|
|
}
|