Timeline view (still not very useful)

Dialog icons
Search icon
This commit is contained in:
Jindra Petk
2014-02-02 23:01:50 +01:00
parent 37ad8a8635
commit 3cdf3f7ba8
26 changed files with 725 additions and 209 deletions

View File

@@ -16,6 +16,7 @@
*/
package com.jpexs.decompiler.flash.gui;
import com.jpexs.decompiler.flash.gui.timeline.TimelineFrame;
import com.jpexs.decompiler.flash.AbortRetryIgnoreHandler;
import com.jpexs.decompiler.flash.AppStrings;
import com.jpexs.decompiler.flash.ApplicationInfo;
@@ -2956,4 +2957,12 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
public void setErrorState(ErrorState errorState) {
statusPanel.setErrorState(errorState);
}
public void timeline() {
final SWF swf = getCurrentSwf();
if (swf != null) {
TimelineFrame tf = new TimelineFrame(swf);
tf.setVisible(true);
}
}
}