Issue #107 separating GUI classes from the rest

This commit is contained in:
Jindra Petk
2013-06-02 20:11:15 +02:00
parent 85c0114b70
commit 8a2f881227
36 changed files with 283 additions and 283 deletions

View File

@@ -48,8 +48,6 @@ import com.jpexs.decompiler.flash.flv.VIDEODATA;
import com.jpexs.decompiler.flash.graph.GraphSourceItem;
import com.jpexs.decompiler.flash.graph.GraphSourceItemContainer;
import com.jpexs.decompiler.flash.graph.GraphTargetItem;
import com.jpexs.decompiler.flash.gui.FrameNode;
import com.jpexs.decompiler.flash.gui.TagNode;
import com.jpexs.decompiler.flash.helpers.Cache;
import com.jpexs.decompiler.flash.helpers.Helper;
import com.jpexs.decompiler.flash.tags.ABCContainerTag;
@@ -1340,12 +1338,12 @@ public class SWF {
return ret;
}
public void exportFla(String outfile, String swfName) {
XFLConverter.convertSWF(this, swfName, outfile, true);
public void exportFla(String outfile, String swfName, String generator, String generatorVerName, String generatorVersion) {
XFLConverter.convertSWF(this, swfName, outfile, true, generator, generatorVerName, generatorVersion);
}
public void exportXfl(String outfile, String swfName) {
XFLConverter.convertSWF(this, swfName, outfile, false);
public void exportXfl(String outfile, String swfName, String generator, String generatorVerName, String generatorVersion) {
XFLConverter.convertSWF(this, swfName, outfile, false, generator, generatorVerName, generatorVersion);
}
public static float twipToPixel(int twip) {