diff --git a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.form b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.form
index f0f0295bf..b831aea1a 100644
--- a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.form
+++ b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.form
@@ -19,8 +19,9 @@
+
-
+
@@ -28,12 +29,14 @@
-
+
+
+
-
+
@@ -53,5 +56,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.java b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.java
index 9c7ac1eef..97b089058 100644
--- a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.java
+++ b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlVisualPanel1.java
@@ -31,12 +31,37 @@
*/
package com.jme3.gde.core.sceneexplorer.nodes.actions.impl;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Set;
+import javax.lang.model.element.TypeElement;
+import javax.lang.model.type.TypeMirror;
import javax.swing.JPanel;
+import org.netbeans.api.java.classpath.ClassPath;
+import org.netbeans.api.java.project.JavaProjectConstants;
+import org.netbeans.api.java.source.ClassIndex;
+import org.netbeans.api.java.source.ClassIndex.NameKind;
+import org.netbeans.api.java.source.ClassIndex.SearchScope;
+import org.netbeans.api.java.source.ClasspathInfo;
+import org.netbeans.api.java.source.CompilationController;
+import org.netbeans.api.java.source.ElementHandle;
+import org.netbeans.api.java.source.JavaSource;
+import org.netbeans.api.java.source.JavaSource.Phase;
+import org.netbeans.api.java.source.Task;
+import org.netbeans.api.project.Project;
+import org.netbeans.api.project.SourceGroup;
+import org.netbeans.api.project.Sources;
+import org.openide.util.Exceptions;
public final class NewCustomControlVisualPanel1 extends JPanel {
+ Project proj;
+
/** Creates new form NewCustomControlVisualPanel1 */
public NewCustomControlVisualPanel1() {
+ this.proj = proj;
initComponents();
}
@@ -44,11 +69,73 @@ public final class NewCustomControlVisualPanel1 extends JPanel {
public String getName() {
return "Select Control";
}
-
- public String getClassName(){
+
+ public String getClassName() {
return jTextField1.getText();
}
+ private void scanControls() {
+ List sources = getSources();
+ jList1.setListData(sources.toArray());
+ }
+
+ private List getSources() {
+ Sources sources = proj.getLookup().lookup(Sources.class);
+ final List list = new LinkedList();
+ if (sources != null) {
+ SourceGroup[] groups = sources.getSourceGroups(JavaProjectConstants.SOURCES_TYPE_JAVA);
+ if (groups != null) {
+ for (SourceGroup sourceGroup : groups) {
+ ClasspathInfo cpInfo = ClasspathInfo.create(ClassPath.getClassPath(sourceGroup.getRootFolder(), ClassPath.BOOT),
+ ClassPath.getClassPath(sourceGroup.getRootFolder(), ClassPath.COMPILE),
+ ClassPath.getClassPath(sourceGroup.getRootFolder(), ClassPath.SOURCE));
+
+ HashSet set = new HashSet();
+ set.add(ClassIndex.SearchScope.SOURCE);
+ Set> types = cpInfo.getClassIndex().getDeclaredTypes("", NameKind.PREFIX, set);
+ for (Iterator> it = types.iterator(); it.hasNext();) {
+ final ElementHandle elementHandle = it.next();
+ JavaSource js = JavaSource.create(cpInfo);
+ try {
+ js.runUserActionTask(new Task() {
+
+ public void run(CompilationController control)
+ throws Exception {
+ control.toPhase(Phase.RESOLVED);
+ //TODO: check with proper casting check.. gotta get TypeMirror of Control interface..
+// TypeUtilities util = control.getTypeUtilities();//.isCastable(Types., null)
+// util.isCastable(null, null);
+ TypeElement elem = elementHandle.resolve(control);
+ List extends TypeMirror> interfaces = elem.getInterfaces();
+ for (TypeMirror typeMirror : interfaces) {
+ String interfaceName = typeMirror.toString();
+ if ("com.jme3.scene.control.Control".equals(interfaceName)) {
+ list.add(elem.getQualifiedName().toString());
+ }
+ }
+ TypeMirror superClass = elem.getSuperclass();
+ String superClassName = superClass.toString();
+ if ("com.jme3.scene.control.AbstractControl".equals(superClassName)) {
+ list.add(elem.getQualifiedName().toString());
+ }
+ }
+ }, false);
+ } catch (Exception ioe) {
+ Exceptions.printStackTrace(ioe);
+ }
+ }
+
+ }
+ }
+ }
+ return list;
+ }
+
+ public void load(Project proj) {
+ this.proj = proj;
+ scanControls();
+ }
+
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
@@ -59,11 +146,25 @@ public final class NewCustomControlVisualPanel1 extends JPanel {
jTextField1 = new javax.swing.JTextField();
jLabel1 = new javax.swing.JLabel();
+ jScrollPane1 = new javax.swing.JScrollPane();
+ jList1 = new javax.swing.JList();
jTextField1.setText(org.openide.util.NbBundle.getMessage(NewCustomControlVisualPanel1.class, "NewCustomControlVisualPanel1.jTextField1.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(jLabel1, org.openide.util.NbBundle.getMessage(NewCustomControlVisualPanel1.class, "NewCustomControlVisualPanel1.jLabel1.text")); // NOI18N
+ jList1.setModel(new javax.swing.AbstractListModel() {
+ String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
+ public int getSize() { return strings.length; }
+ public Object getElementAt(int i) { return strings[i]; }
+ });
+ jList1.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
+ public void valueChanged(javax.swing.event.ListSelectionEvent evt) {
+ updateClassName(evt);
+ }
+ });
+ jScrollPane1.setViewportView(jList1);
+
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
@@ -71,22 +172,34 @@ public final class NewCustomControlVisualPanel1 extends JPanel {
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 360, Short.MAX_VALUE)
.addComponent(jTextField1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 360, Short.MAX_VALUE)
- .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 360, Short.MAX_VALUE))
+ .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 360, Short.MAX_VALUE))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
- .addGroup(layout.createSequentialGroup()
+ .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 200, Short.MAX_VALUE)
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
- .addContainerGap(228, Short.MAX_VALUE))
+ .addContainerGap())
);
}// //GEN-END:initComponents
+
+ private void updateClassName(javax.swing.event.ListSelectionEvent evt) {//GEN-FIRST:event_updateClassName
+ Object obj = jList1.getSelectedValue();
+ if (obj != null) {
+ jTextField1.setText(obj + "");
+ }
+ }//GEN-LAST:event_updateClassName
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel1;
+ private javax.swing.JList jList1;
+ private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTextField jTextField1;
// End of variables declaration//GEN-END:variables
}
diff --git a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java
index 8fdd3cfdf..69b519dfd 100644
--- a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java
+++ b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java
@@ -68,6 +68,7 @@ public final class NewCustomControlWizardAction extends AbstractNewControlWizard
wizardDescriptor.setTitleFormat(new MessageFormat("{0}"));
wizardDescriptor.setTitle("Create Custom Control");
wizardDescriptor.putProperty("asset_manager", node.getLookup().lookup(ProjectAssetManager.class));
+ wizardDescriptor.putProperty("project", node.getLookup().lookup(ProjectAssetManager.class).getProject());
Dialog dialog = DialogDisplayer.getDefault().createDialog(wizardDescriptor);
dialog.setVisible(true);
dialog.toFront();
diff --git a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardPanel1.java b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardPanel1.java
index dd581c185..3f64e4c22 100644
--- a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardPanel1.java
+++ b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardPanel1.java
@@ -33,6 +33,7 @@ package com.jme3.gde.core.sceneexplorer.nodes.actions.impl;
import java.awt.Component;
import javax.swing.event.ChangeListener;
+import org.netbeans.api.project.Project;
import org.openide.WizardDescriptor;
import org.openide.util.HelpCtx;
@@ -106,6 +107,7 @@ public class NewCustomControlWizardPanel1 implements WizardDescriptor.Panel {
// WizardDescriptor.getProperty & putProperty to store information entered
// by the user.
public void readSettings(Object settings) {
+ ((NewCustomControlVisualPanel1) component).load((Project)((WizardDescriptor) settings).getProperty("project"));
}
public void storeSettings(Object settings) {