Removed Start Menu
This commit is contained in:
Jindra Pet��k
2013-07-22 21:37:16 +02:00
parent ef7aaeb76a
commit af2f69aa93
290 changed files with 1957 additions and 579 deletions
@@ -23,7 +23,9 @@ import com.jpexs.decompiler.flash.abc.ClassPath;
import com.jpexs.decompiler.flash.abc.ScriptPack;
import static com.jpexs.decompiler.flash.gui.AppStrings.translate;
import com.jpexs.decompiler.flash.gui.Freed;
import com.jpexs.decompiler.flash.gui.HeaderLabel;
import com.jpexs.decompiler.flash.gui.Main;
import com.jpexs.decompiler.flash.gui.MyTextField;
import com.jpexs.decompiler.flash.gui.TagTreeModel;
import com.jpexs.decompiler.flash.gui.View;
import com.jpexs.decompiler.flash.gui.abc.tablemodels.DecimalTableModel;
@@ -51,7 +53,6 @@ import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Pattern;
import javax.swing.*;
import javax.swing.border.BevelBorder;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.table.*;
@@ -74,10 +75,10 @@ public class ABCPanel extends JPanel implements ItemListener, ActionListener, Fr
//public JSplitPane splitPaneTreeNavVSDecompiledDetail;
private JTable constantTable;
public JComboBox constantTypeList;
public JLabel asmLabel = new JLabel(translate("panel.disassembled"));
public JLabel decLabel = new JLabel(translate("panel.decompiled"));
public JLabel asmLabel = new HeaderLabel(translate("panel.disassembled"));
public JLabel decLabel = new HeaderLabel(translate("panel.decompiled"));
public DetailPanel detailPanel;
public JTextField filterField = new JTextField();
public JTextField filterField = new MyTextField();
public JPanel navPanel;
public JTabbedPane tabbedPane;
public JPanel searchPanel;
@@ -285,7 +286,7 @@ public class ABCPanel extends JPanel implements ItemListener, ActionListener, Fr
panB.add(decPanel, BorderLayout.CENTER);
panB.add(decLabel, BorderLayout.NORTH);
decLabel.setHorizontalAlignment(SwingConstants.CENTER);
decLabel.setBorder(new BevelBorder(BevelBorder.RAISED));
//decLabel.setBorder(new BevelBorder(BevelBorder.RAISED));
splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
panB, detailPanel);
splitPane.setResizeWeight(0.5);