]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java
add MigrationTool
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / FirstPanel.java
index de8e75f14290d504f99118e24f904fda4fa9938f..d0f9151ed7fe613b7ef2f1c134559d610884aa27 100644 (file)
@@ -24,7 +24,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
         */\r
        private static final long serialVersionUID = 207759413522910399L;\r
        \r
-       private String modulepath;\r
+       private String startpath;\r
        private ModuleInfo mi;\r
        \r
        private JButton moduleButton, goButton, msaEditorButton, criticButton;\r
@@ -73,6 +73,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
                \r
                defaultpathbox = new JCheckBox("Use Default Output Path", true);\r
                defaultpathbox.addItemListener(this);\r
+               MigrationTool.defaultoutput = true;\r
                \r
         JPanel modulePanel = new JPanel();\r
         modulePanel.add(moduleButton);\r
@@ -88,7 +89,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
         cst.gridx = 1;\r
         cst.gridy = 0;\r
         gridbag.setConstraints(criticButton, cst);\r
-        add(criticButton);\r
+        //add(criticButton);\r
         \r
         JPanel checkboxPanel = new JPanel();\r
         checkboxPanel.setLayout(new BoxLayout(checkboxPanel, BoxLayout.Y_AXIS));\r
@@ -114,8 +115,8 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
         add(logScrollPane);\r
         \r
                fc = new JFileChooser();\r
-        fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);\r
-       }\r
+        fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);\r
+       }\r
        \r
        //---------------------------------------------------------------------------------------//\r
        \r
@@ -157,7 +158,8 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
 \r
        //---------------------------------------------------------------------------------------//\r
 \r
-       public String getFilepath() {\r
+       public String getFilepath(String title) {\r
+               fc.setDialogTitle(title);\r
                if (fc.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {\r
                        log.append(fc.getSelectedFile().getAbsolutePath() + "\n");\r
                        return fc.getSelectedFile().getAbsolutePath();\r
@@ -169,12 +171,13 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
 \r
     public void actionPerformed(ActionEvent e) {\r
         if ( e.getSource() == moduleButton ) {\r
-               modulepath = getFilepath();\r
+               startpath = getFilepath("Please choose a starting path");\r
+               moduletext.setText(startpath);\r
         }\r
         if ( e.getSource() == goButton ) {\r
                try {\r
-                       logfile = new PrintWriter(new BufferedWriter(new FileWriter(modulepath + File.separator + "migration.log")));\r
-                       ModuleInfo.triger(modulepath);\r
+                       logfile = new PrintWriter(new BufferedWriter(new FileWriter(startpath.replaceAll(Common.strseparate, "$1") + File.separator + "migration.log")));\r
+                       MigrationTool.triger(startpath);\r
                        logfile.flush();\r
                } catch (Exception en) {\r
                        println(en.getMessage());\r
@@ -189,7 +192,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
         }\r
         if ( e.getSource() == criticButton) {\r
                try {\r
-                       Critic.fireAt(modulepath);\r
+                       Critic.fireAt(startpath);\r
                } catch (Exception en) {\r
                        println(en.getMessage());\r
                }\r
@@ -218,16 +221,14 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
        } else if (e.getSource() == criticbox) {\r
                if (e.getStateChange() == ItemEvent.DESELECTED) {\r
                        MigrationTool.doCritic = false;\r
-                       System.out.println("criticbox DESELECTED");\r
                } else if (e.getStateChange() == ItemEvent.SELECTED) {\r
                        MigrationTool.doCritic = true;\r
-                       System.out.println("criticbox SELECTED");\r
                }\r
        } else if (e.getSource() == defaultpathbox) {\r
                if (e.getStateChange() == ItemEvent.DESELECTED) {\r
-                       System.out.println("defaultpathbox DESELECTED");\r
+                       MigrationTool.defaultoutput = false;\r
                } else if (e.getStateChange() == ItemEvent.SELECTED) {\r
-                       System.out.println("defaultpathbox SELECTED");\r
+                       MigrationTool.defaultoutput = true;\r
                }\r
        }\r
     }\r