remove request table
[jSite2.git] / src / net / pterodactylus / jsite / gui / MainWindow.java
index 4eb7ab7..cd6b210 100644 (file)
 package net.pterodactylus.jsite.gui;
 
 import java.awt.BorderLayout;
+import java.awt.Component;
 import java.awt.Container;
 import java.awt.Dimension;
 import java.awt.event.WindowAdapter;
 import java.awt.event.WindowEvent;
 import java.awt.event.WindowListener;
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.Timer;
+import java.util.TimerTask;
+import java.util.logging.Logger;
 
 import javax.swing.Action;
 import javax.swing.Box;
@@ -39,22 +45,27 @@ import javax.swing.JToolBar;
 import javax.swing.SwingConstants;
 import javax.swing.border.EmptyBorder;
 
-import net.pterodactylus.jsite.core.Project;
 import net.pterodactylus.jsite.i18n.I18n;
 import net.pterodactylus.jsite.i18n.I18nable;
 import net.pterodactylus.jsite.i18n.gui.I18nAction;
 import net.pterodactylus.jsite.i18n.gui.I18nMenu;
 import net.pterodactylus.jsite.main.Version;
+import net.pterodactylus.jsite.project.Project;
+import net.pterodactylus.util.logging.Logging;
 import net.pterodactylus.util.swing.StatusBar;
 import net.pterodactylus.util.swing.SwingUtils;
 
 /**
  * Defines the main window of the application.
- *
+ * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  * @version $Id$
  */
-public class MainWindow extends JFrame implements WindowListener, I18nable {
+public class MainWindow extends JFrame implements WindowListener, I18nable, PropertyChangeListener {
+
+       /** Logger. */
+       @SuppressWarnings("unused")
+       private static final Logger logger = Logging.getLogger(MainWindow.class.getName());
 
        /** The swing interface that receives all actions. */
        private final SwingInterface swingInterface;
@@ -62,6 +73,15 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
        /** The status bar. */
        private StatusBar statusBar = new StatusBar();
 
+       /** Timer for clearing the status bar. */
+       private Timer statusBarClearTimer = new Timer("StatusBar Cleaner", true);
+
+       /** Object for status bar clearing ticker event. */
+       private TimerTask statusBarClearTimerTask;
+
+       /** Delay (in seconds) after which to clear status bar. */
+       private int statusBarClearDelay = 5000;
+
        /** The content pane. */
        private JPanel contentPane = new JPanel(new BorderLayout(12, 12));
 
@@ -98,7 +118,7 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
        /**
         * Creates a new main window that redirects all actions to the given swing
         * interface.
-        *
+        * 
         * @param swingInterface
         *            The swing interface to receive all actions
         */
@@ -119,17 +139,51 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
 
        /**
         * Sets the text of the status bar.
-        *
+        * 
         * @param text
         *            The text of the status bar
         */
        public void setStatusBarText(String text) {
                statusBar.setText(text);
+               synchronized (statusBar) {
+                       if (statusBarClearTimerTask != null) {
+                               statusBarClearTimerTask.cancel();
+                       }
+                       statusBarClearTimerTask = new TimerTask() {
+
+                               @SuppressWarnings("synthetic-access")
+                               @Override
+                               public void run() {
+                                       statusBar.setText("\u00a0");
+                               }
+
+                       };
+                       statusBarClearTimer.schedule(statusBarClearTimerTask, statusBarClearDelay);
+               }
+       }
+
+       /**
+        * Returns the status bar clear delay (in milliseconds).
+        * 
+        * @return The status bar clear delay
+        */
+       public int getStatusBarClearDelay() {
+               return statusBarClearDelay;
+       }
+
+       /**
+        * Sets the status bar clear delay (in milliseconds).
+        * 
+        * @param statusBarClearDelay
+        *            The status bar clear delay
+        */
+       public void setStatusBarClearDelay(int statusBarClearDelay) {
+               this.statusBarClearDelay = statusBarClearDelay;
        }
 
        /**
         * Sets whether the advanced mode is activated.
-        *
+        * 
         * @param advancedMode
         *            <code>true</code> if the advanced mode is activated,
         *            <code>false</code> if the simple mode is activated
@@ -151,7 +205,7 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
 
        /**
         * Returns the currently selected project.
-        *
+        * 
         * @return The currently selected project
         */
        public Project getSelectedProject() {
@@ -186,6 +240,26 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
                }
        }
 
+       /**
+        * Adds a project to the project pane.
+        * 
+        * @param project
+        *            The project to add
+        * @param switchToProject
+        *            <code>true</code> to switch to the new panel,
+        *            <code>false</code> to not change the current panel
+        */
+       void addProject(Project project, boolean switchToProject) {
+               ProjectPanel projectPanel = new ProjectPanel(swingInterface, project);
+               int newTabIndex = projectPane.getTabCount();
+               projectPane.add(project.getName(), projectPanel);
+               projectPane.setToolTipTextAt(newTabIndex, project.getDescription());
+               project.addPropertyChangeListener(this);
+               if (switchToProject) {
+                       projectPane.setSelectedIndex(newTabIndex);
+               }
+       }
+
        //
        // PRIVATE METHODS
        //
@@ -267,14 +341,9 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
        private void initComponents() {
                super.getContentPane().add(statusBar, BorderLayout.PAGE_END);
 
-               /*
-                * the main window consists of two panels which are vertically oriented.
-                * the upper panel contains of a tabbed pane, the lower panel consists
-                * of a table that lists the running requests.
-                */
-
+               /* TODO - remove upper panel */
                JPanel upperPanel = new JPanel(new BorderLayout(12, 12));
-               getContentPane().add(upperPanel, BorderLayout.PAGE_START);
+               getContentPane().add(upperPanel, BorderLayout.CENTER);
                contentPane.setBorder(new EmptyBorder(12, 12, 12, 12));
 
                projectPane = new JTabbedPane(SwingConstants.TOP, JTabbedPane.SCROLL_TAB_LAYOUT);
@@ -290,8 +359,8 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
                projectOverviewPanel.add(addProjectButton);
                projectOverviewPanel.add(Box.createVerticalGlue());
 
-// JPanel lowerPanel = new JPanel(new BorderLayout(12, 12));
-// getContentPane().add(lowerPanel, BorderLayout.CENTER);
+               // JPanel lowerPanel = new JPanel(new BorderLayout(12, 12));
+               // getContentPane().add(lowerPanel, BorderLayout.CENTER);
        }
 
        //
@@ -333,7 +402,7 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
        //
        // INTERFACE WindowListener
        //
-       
+
        /**
         * {@inheritDoc}
         */
@@ -383,4 +452,34 @@ public class MainWindow extends JFrame implements WindowListener, I18nable {
                /* do nothing. */
        }
 
+       //
+       // INTERFACE PropertyChangeListener
+       //
+
+       /**
+        * @see java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent)
+        */
+       public void propertyChange(PropertyChangeEvent propertyChangeEvent) {
+               Object eventSource = propertyChangeEvent.getSource();
+               String propertyName = propertyChangeEvent.getPropertyName();
+               if (eventSource instanceof Project) {
+                       /* if a project was changed, update the tab title and tooltip. */
+                       if (Project.PROPERTY_NAME.equals(propertyName) || Project.PROPERTY_DESCRIPTION.equals(propertyName)) {
+                               Project project = (Project) eventSource;
+                               int tabCount = projectPane.getTabCount();
+                               for (int tabIndex = 0; tabIndex < tabCount; tabIndex++) {
+                                       Component tabComponent = projectPane.getComponentAt(tabIndex);
+                                       if (tabComponent instanceof ProjectPanel) {
+                                               Project tabProject = ((ProjectPanel) tabComponent).getProject();
+                                               if (tabProject.equals(project)) {
+                                                       projectPane.setTitleAt(tabIndex, project.getName());
+                                                       projectPane.setToolTipTextAt(tabIndex, project.getDescription());
+                                                       projectPane.repaint();
+                                               }
+                                       }
+                               }
+                       }
+               }
+       }
+
 }