fix imports
[jSite2.git] / src / net / pterodactylus / jsite / gui / MainWindow.java
index cd6b210..f582bb2 100644 (file)
@@ -260,11 +260,79 @@ public class MainWindow extends JFrame implements WindowListener, I18nable, Prop
                }
        }
 
+       /**
+        * @param project
+        */
+       void projectInsertStarted(Project project) {
+               int projectIndex = getProjectIndex(project);
+               if (projectIndex == -1) {
+                       return;
+               }
+               projectPane.setTitleAt(projectIndex, I18n.get("projectPanel.title.starting", project.getName()));
+       }
+
+       /**
+        * @param project
+        * @param totalBlocks
+        * @param requiredBlocks
+        * @param successfulBlocks
+        * @param failedBlocks
+        * @param fatallyFailedBlocks
+        * @param finalizedTotal
+        */
+       void projectInsertProgressed(Project project, int totalBlocks, int requiredBlocks, int successfulBlocks, int failedBlocks, int fatallyFailedBlocks, boolean finalizedTotal) {
+               int projectIndex = getProjectIndex(project);
+               if (projectIndex == -1) {
+                       return;
+               }
+               projectPane.setTitleAt(projectIndex, I18n.get("projectPanel.title.progress", project.getName(), requiredBlocks / (double) successfulBlocks));
+       }
+
+       /**
+        * @param project
+        */
+       void projectInsertGeneratedURI(Project project) {
+               /* TODO - update panel. */
+       }
+
+       /**
+        * @param project
+        * @param success
+        */
+       void projectInsertFinished(Project project, boolean success) {
+               int projectIndex = getProjectIndex(project);
+               if (projectIndex == -1) {
+                       return;
+               }
+               projectPane.setTitleAt(projectIndex, project.getName());
+       }
+
        //
        // PRIVATE METHODS
        //
 
        /**
+        * Returns the index of the project panel that contains the given project.
+        * 
+        * @param project
+        *            The wanted project
+        * @return The index of {@link #projectPane}’s tab that contains the given
+        *         project, or <code>-1</code> if the project can not be found
+        */
+       private int getProjectIndex(Project project) {
+               int tabCount = projectPane.getTabCount();
+               for (int tabIndex = 1; tabIndex < tabCount; tabIndex++) {
+                       Component tabComponent = projectPane.getComponentAt(tabIndex);
+                       if (tabComponent instanceof ProjectPanel) {
+                               if (((ProjectPanel) tabComponent).getProject() == project) {
+                                       return tabIndex;
+                               }
+                       }
+               }
+               return -1;
+       }
+
+       /**
         * Initializes the window by creating all its components.
         */
        private void initWindow() {
@@ -391,9 +459,12 @@ public class MainWindow extends JFrame implements WindowListener, I18nable, Prop
                }
                helpMenu.updateI18n();
                getJMenuBar().revalidate();
-               projectOverviewPanel.setName(I18n.get("mainWindow.pane.overview.title"));
+               projectPane.setTitleAt(0, I18n.get("mainWindow.pane.overview.title"));
                for (int componentIndex = 0; componentIndex < projectPane.getTabCount(); componentIndex++) {
-                       projectPane.setTitleAt(componentIndex, projectPane.getComponentAt(componentIndex).getName());
+                       Component tabComponent = projectPane.getComponentAt(componentIndex);
+                       if (tabComponent instanceof ProjectPanel) {
+                               ((ProjectPanel) tabComponent).updateI18n();
+                       }
                }
                refreshNodeMenuItems();
                SwingUtils.repackCentered(this);