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.
44 lines
1.4 KiB
44 lines
1.4 KiB
12 years ago
|
/*
|
||
|
* To change this template, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
package com.jme3.gde.blender;
|
||
|
|
||
|
import java.awt.event.ActionEvent;
|
||
|
import java.awt.event.ActionListener;
|
||
|
import org.openide.DialogDisplayer;
|
||
|
import org.openide.NotifyDescriptor;
|
||
|
import org.openide.awt.ActionID;
|
||
|
import org.openide.awt.ActionReference;
|
||
|
import org.openide.awt.ActionReferences;
|
||
|
import org.openide.awt.ActionRegistration;
|
||
|
import org.openide.util.NbBundle.Messages;
|
||
|
|
||
|
@ActionID(
|
||
|
category = "jMonkeyEngine",
|
||
|
id = "com.jme3.gde.blender.OpenBlender")
|
||
|
@ActionRegistration(
|
||
|
iconBase = "com/jme3/gde/blender/blender.png",
|
||
|
displayName = "#CTL_OpenInBlender")
|
||
|
@ActionReferences({
|
||
|
@ActionReference(path = "Menu/Tools", position = 3333),
|
||
|
@ActionReference(path = "Toolbars/File", position = 335),
|
||
|
@ActionReference(path = "Loaders/application/blender/Actions", position = 30)
|
||
|
})
|
||
|
@Messages("CTL_OpenInBlender=Open in Blender")
|
||
|
public final class OpenInBlender implements ActionListener {
|
||
|
|
||
|
private final BlenderDataObject context;
|
||
|
|
||
|
public OpenInBlender(BlenderDataObject context) {
|
||
|
this.context = context;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void actionPerformed(ActionEvent ev) {
|
||
|
if (!BlenderTool.openInBlender(context.getPrimaryFile())) {
|
||
|
DialogDisplayer.getDefault().notifyLater(new NotifyDescriptor.Message("Error opening Blender with file " + context.getPrimaryFile().getNameExt()));
|
||
|
}
|
||
|
}
|
||
|
}
|