remove upper panel from code
[jSite2.git] / src / net / pterodactylus / jsite / gui / MainWindow.java
1 /*
2  * jSite2 - MainWindow.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jsite.gui;
21
22 import java.awt.BorderLayout;
23 import java.awt.Component;
24 import java.awt.Container;
25 import java.awt.Dimension;
26 import java.awt.event.WindowAdapter;
27 import java.awt.event.WindowEvent;
28 import java.awt.event.WindowListener;
29 import java.beans.PropertyChangeEvent;
30 import java.beans.PropertyChangeListener;
31 import java.util.HashMap;
32 import java.util.Map;
33 import java.util.Timer;
34 import java.util.TimerTask;
35 import java.util.logging.Logger;
36
37 import javax.swing.Box;
38 import javax.swing.BoxLayout;
39 import javax.swing.Icon;
40 import javax.swing.JButton;
41 import javax.swing.JFrame;
42 import javax.swing.JMenu;
43 import javax.swing.JMenuBar;
44 import javax.swing.JPanel;
45 import javax.swing.JTabbedPane;
46 import javax.swing.JToolBar;
47 import javax.swing.SwingConstants;
48 import javax.swing.border.EmptyBorder;
49
50 import net.pterodactylus.jsite.core.Node;
51 import net.pterodactylus.jsite.i18n.I18n;
52 import net.pterodactylus.jsite.i18n.I18nable;
53 import net.pterodactylus.jsite.i18n.gui.I18nAction;
54 import net.pterodactylus.jsite.i18n.gui.I18nMenu;
55 import net.pterodactylus.jsite.main.Version;
56 import net.pterodactylus.jsite.project.Project;
57 import net.pterodactylus.util.image.IconLoader;
58 import net.pterodactylus.util.logging.Logging;
59 import net.pterodactylus.util.swing.StatusBar;
60 import net.pterodactylus.util.swing.SwingUtils;
61
62 /**
63  * Defines the main window of the application.
64  * 
65  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
66  * @version $Id$
67  */
68 public class MainWindow extends JFrame implements WindowListener, I18nable, PropertyChangeListener {
69
70         /** Logger. */
71         @SuppressWarnings("unused")
72         private static final Logger logger = Logging.getLogger(MainWindow.class.getName());
73
74         /** The swing interface that receives all actions. */
75         private final SwingInterface swingInterface;
76
77         /** The status bar. */
78         private StatusBar statusBar = new StatusBar();
79
80         /** Timer for clearing the status bar. */
81         private Timer statusBarClearTimer = new Timer("StatusBar Cleaner", true);
82
83         /** Object for status bar clearing ticker event. */
84         private TimerTask statusBarClearTimerTask;
85
86         /** Delay (in seconds) after which to clear status bar. */
87         private int statusBarClearDelay = 5000;
88
89         /** The icon for offline nodes. */
90         private Icon offlineIcon;
91
92         /** The icon for online nodes. */
93         private Icon onlineIcon;
94
95         /** The icon for error nodes. */
96         private Icon errorIcon;
97
98         /** The content pane. */
99         private JPanel contentPane = new JPanel(new BorderLayout(12, 12));
100
101         /** The jSite menu. */
102         private I18nMenu jSiteMenu;
103
104         /** The node menu. */
105         private I18nMenu nodeMenu;
106
107         /** The language menu. */
108         private I18nMenu languageMenu;
109
110         /** The about menu. */
111         private I18nMenu helpMenu;
112
113         /** The tabbed project pane. */
114         private JTabbedPane projectPane;
115
116         /** The project overview panel. */
117         private Box projectOverviewPanel;
118
119         /** Maps from node to menus. */
120         private final Map<Node, JMenu> nodeMenus = new HashMap<Node, JMenu>();
121
122         /** Maps from nodes to node panels. */
123         private final Map<Node, NodeLabel> nodeLabels = new HashMap<Node, NodeLabel>();
124
125         /**
126          * Creates a new main window that redirects all actions to the given swing
127          * interface.
128          * 
129          * @param swingInterface
130          *            The swing interface to receive all actions
131          */
132         public MainWindow(SwingInterface swingInterface) {
133                 super("jSite " + Version.getVersion());
134                 this.swingInterface = swingInterface;
135                 initWindow();
136                 setPreferredSize(new Dimension(480, 280));
137                 pack();
138                 SwingUtils.center(this);
139                 I18n.registerI18nable(this);
140                 addWindowListener(this);
141         }
142
143         //
144         // ACCESSORS
145         //
146
147         /**
148          * Sets the text of the status bar.
149          * 
150          * @param text
151          *            The text of the status bar
152          */
153         public void setStatusBarText(String text) {
154                 statusBar.setText(text);
155                 synchronized (statusBar) {
156                         if (statusBarClearTimerTask != null) {
157                                 statusBarClearTimerTask.cancel();
158                         }
159                         statusBarClearTimerTask = new TimerTask() {
160
161                                 @SuppressWarnings("synthetic-access")
162                                 @Override
163                                 public void run() {
164                                         statusBar.setText("\u00a0");
165                                 }
166
167                         };
168                         statusBarClearTimer.schedule(statusBarClearTimerTask, statusBarClearDelay);
169                 }
170         }
171
172         /**
173          * Returns the status bar clear delay (in milliseconds).
174          * 
175          * @return The status bar clear delay
176          */
177         public int getStatusBarClearDelay() {
178                 return statusBarClearDelay;
179         }
180
181         /**
182          * Sets the status bar clear delay (in milliseconds).
183          * 
184          * @param statusBarClearDelay
185          *            The status bar clear delay
186          */
187         public void setStatusBarClearDelay(int statusBarClearDelay) {
188                 this.statusBarClearDelay = statusBarClearDelay;
189         }
190
191         /**
192          * Sets whether the advanced mode is activated.
193          * 
194          * @param advancedMode
195          *            <code>true</code> if the advanced mode is activated,
196          *            <code>false</code> if the simple mode is activated
197          */
198         public void setAdvancedMode(boolean advancedMode) {
199                 /* doesn’t do anything right now. */
200         }
201
202         /**
203          * {@inheritDoc}
204          */
205         @Override
206         public Container getContentPane() {
207                 return contentPane;
208         }
209
210         /**
211          * Returns the currently selected project.
212          * 
213          * @return The currently selected project
214          */
215         public Project getSelectedProject() {
216                 return null;
217         }
218
219         //
220         // ACTIONS
221         //
222
223         /**
224          * Adds a node to the menu.
225          * 
226          * @param node
227          *            The node to add
228          */
229         void addNode(Node node) {
230                 JMenu newNodeMenu = new JMenu(node.getName());
231                 nodeMenus.put(node, newNodeMenu);
232                 newNodeMenu.add(swingInterface.getNodeConnectAction(node));
233                 newNodeMenu.add(swingInterface.getNodeDisconnectAction(node));
234                 nodeMenu.add(newNodeMenu);
235                 NodeLabel nodeLabel = new NodeLabel(swingInterface, node, onlineIcon, offlineIcon, errorIcon);
236                 nodeLabels.put(node, nodeLabel);
237                 statusBar.addSideComponent(nodeLabel);
238         }
239
240         /**
241          * Removes a node from the menu.
242          * 
243          * @param node
244          *            The node to remove
245          */
246         void removeNode(Node node) {
247                 nodeMenu.remove(nodeMenus.remove(node));
248                 statusBar.removeSideComponent(nodeLabels.remove(node));
249         }
250
251         /**
252          * Adds a project to the project pane.
253          * 
254          * @param project
255          *            The project to add
256          * @param switchToProject
257          *            <code>true</code> to switch to the new panel,
258          *            <code>false</code> to not change the current panel
259          */
260         void addProject(Project project, boolean switchToProject) {
261                 ProjectPanel projectPanel = new ProjectPanel(swingInterface, project);
262                 int newTabIndex = projectPane.getTabCount();
263                 projectPane.add(project.getName(), projectPanel);
264                 projectPane.setToolTipTextAt(newTabIndex, project.getDescription());
265                 project.addPropertyChangeListener(this);
266                 if (switchToProject) {
267                         projectPane.setSelectedIndex(newTabIndex);
268                 }
269         }
270
271         /**
272          * @param project
273          */
274         void projectInsertStarted(Project project) {
275                 int projectIndex = getProjectIndex(project);
276                 if (projectIndex == -1) {
277                         return;
278                 }
279                 projectPane.setTitleAt(projectIndex, I18n.get("projectPanel.title.starting", project.getName()));
280         }
281
282         /**
283          * @param project
284          * @param totalBlocks
285          * @param requiredBlocks
286          * @param successfulBlocks
287          * @param failedBlocks
288          * @param fatallyFailedBlocks
289          * @param finalizedTotal
290          */
291         void projectInsertProgressed(Project project, int totalBlocks, int requiredBlocks, int successfulBlocks, int failedBlocks, int fatallyFailedBlocks, boolean finalizedTotal) {
292                 int projectIndex = getProjectIndex(project);
293                 if (projectIndex == -1) {
294                         return;
295                 }
296                 projectPane.setTitleAt(projectIndex, I18n.get("projectPanel.title.progress", project.getName(), requiredBlocks / (double) successfulBlocks));
297         }
298
299         /**
300          * @param project
301          */
302         void projectInsertGeneratedURI(Project project) {
303                 /* TODO - update panel. */
304         }
305
306         /**
307          * @param project
308          * @param success
309          */
310         void projectInsertFinished(Project project, boolean success) {
311                 int projectIndex = getProjectIndex(project);
312                 if (projectIndex == -1) {
313                         return;
314                 }
315                 projectPane.setTitleAt(projectIndex, project.getName());
316         }
317
318         //
319         // PRIVATE METHODS
320         //
321
322         /**
323          * Returns the index of the project panel that contains the given project.
324          * 
325          * @param project
326          *            The wanted project
327          * @return The index of {@link #projectPane}’s tab that contains the given
328          *         project, or <code>-1</code> if the project can not be found
329          */
330         private int getProjectIndex(Project project) {
331                 int tabCount = projectPane.getTabCount();
332                 for (int tabIndex = 1; tabIndex < tabCount; tabIndex++) {
333                         Component tabComponent = projectPane.getComponentAt(tabIndex);
334                         if (tabComponent instanceof ProjectPanel) {
335                                 if (((ProjectPanel) tabComponent).getProject() == project) {
336                                         return tabIndex;
337                                 }
338                         }
339                 }
340                 return -1;
341         }
342
343         /**
344          * Initializes the window by creating all its components.
345          */
346         private void initWindow() {
347                 onlineIcon = IconLoader.loadIcon("/node-online.png");
348                 offlineIcon = IconLoader.loadIcon("/node-offline.png");
349                 errorIcon = IconLoader.loadIcon("/node-error.png");
350
351                 JMenuBar menuBar = new JMenuBar();
352
353                 jSiteMenu = new I18nMenu("mainWindow.menu.jSite");
354                 menuBar.add(jSiteMenu);
355
356                 jSiteMenu.add(new FixedJMenuItem(swingInterface.getConfigureAction()));
357                 jSiteMenu.addSeparator();
358                 jSiteMenu.add(new FixedJMenuItem(swingInterface.getImportConfigAction()));
359                 jSiteMenu.addSeparator();
360                 jSiteMenu.add(new FixedJMenuItem(swingInterface.getQuitAction()));
361
362                 nodeMenu = new I18nMenu("mainWindow.menu.node");
363                 menuBar.add(nodeMenu);
364
365                 nodeMenu.add(new FixedJMenuItem(swingInterface.getManageNodesAction()));
366                 nodeMenu.addSeparator();
367
368                 languageMenu = new I18nMenu("mainWindow.menu.language");
369                 menuBar.add(languageMenu);
370
371                 for (I18nAction languageAction: swingInterface.getLanguageActions()) {
372                         languageMenu.add(new FixedJMenuItem(languageAction));
373                 }
374
375                 menuBar.add(Box.createHorizontalGlue());
376
377                 helpMenu = new I18nMenu("mainWindow.menu.help");
378                 menuBar.add(helpMenu);
379
380                 helpMenu.add(new FixedJMenuItem(swingInterface.getHelpAboutAction()));
381
382                 setJMenuBar(menuBar);
383
384                 JToolBar toolBar = new JToolBar(I18n.get("mainWindow.toolbar.name"));
385                 toolBar.add(swingInterface.getManageNodesAction());
386                 toolBar.addSeparator();
387                 toolBar.add(swingInterface.getQuitAction());
388                 super.getContentPane().add(toolBar, BorderLayout.PAGE_START);
389
390                 super.getContentPane().add(contentPane, BorderLayout.CENTER);
391
392                 addWindowListener(new WindowAdapter() {
393
394                         /**
395                          * {@inheritDoc}
396                          */
397                         @SuppressWarnings("synthetic-access")
398                         @Override
399                         public void windowClosing(WindowEvent windowEvent) {
400                                 swingInterface.getQuitAction().actionPerformed(null);
401                         }
402                 });
403
404                 initComponents();
405         }
406
407         /**
408          * Initializes all components of this window.
409          */
410         private void initComponents() {
411                 super.getContentPane().add(statusBar, BorderLayout.PAGE_END);
412                 contentPane.setBorder(new EmptyBorder(12, 12, 12, 12));
413
414                 projectPane = new JTabbedPane(SwingConstants.TOP, JTabbedPane.SCROLL_TAB_LAYOUT);
415                 contentPane.add(projectPane, BorderLayout.CENTER);
416
417                 projectOverviewPanel = new Box(BoxLayout.PAGE_AXIS);
418                 projectOverviewPanel.setName(I18n.get("mainWindow.pane.overview.title"));
419                 projectPane.add(projectOverviewPanel);
420                 projectOverviewPanel.setBorder(new EmptyBorder(12, 12, 12, 12));
421                 projectOverviewPanel.add(Box.createVerticalGlue());
422                 JButton addProjectButton = new JButton(swingInterface.getAddProjectAction());
423                 addProjectButton.setAlignmentX(0.5f);
424                 projectOverviewPanel.add(addProjectButton);
425                 projectOverviewPanel.add(Box.createVerticalGlue());
426         }
427
428         //
429         // INTERFACE I18nable
430         //
431
432         /**
433          * {@inheritDoc}
434          */
435         public void updateI18n() {
436                 swingInterface.getConfigureAction().updateI18n();
437                 swingInterface.getImportConfigAction().updateI18n();
438                 swingInterface.getQuitAction().updateI18n();
439                 swingInterface.getManageNodesAction().updateI18n();
440                 swingInterface.getAddProjectAction().updateI18n();
441                 swingInterface.getCloneProjectAction().updateI18n();
442                 swingInterface.getDeleteProjectAction().updateI18n();
443                 swingInterface.getHelpAboutAction().updateI18n();
444                 jSiteMenu.updateI18n();
445                 nodeMenu.updateI18n();
446                 languageMenu.updateI18n();
447                 for (Node node: swingInterface.getNodes()) {
448                         swingInterface.getNodeConnectAction(node).updateI18n();
449                         swingInterface.getNodeDisconnectAction(node).updateI18n();
450                 }
451                 for (I18nAction languageAction: swingInterface.getLanguageActions()) {
452                         languageAction.updateI18n();
453                 }
454                 helpMenu.updateI18n();
455                 getJMenuBar().revalidate();
456                 projectPane.setTitleAt(0, I18n.get("mainWindow.pane.overview.title"));
457                 for (int componentIndex = 0; componentIndex < projectPane.getTabCount(); componentIndex++) {
458                         Component tabComponent = projectPane.getComponentAt(componentIndex);
459                         if (tabComponent instanceof ProjectPanel) {
460                                 ((ProjectPanel) tabComponent).updateI18n();
461                         }
462                 }
463                 SwingUtils.repackCentered(this);
464         }
465
466         //
467         // INTERFACE WindowListener
468         //
469
470         /**
471          * {@inheritDoc}
472          */
473         public void windowActivated(WindowEvent e) {
474                 /* do nothing. */
475         }
476
477         /**
478          * {@inheritDoc}
479          */
480         public void windowClosed(WindowEvent e) {
481                 /* do nothing. */
482         }
483
484         /**
485          * {@inheritDoc}
486          */
487         public void windowClosing(WindowEvent e) {
488                 swingInterface.getQuitAction().actionPerformed(null);
489         }
490
491         /**
492          * {@inheritDoc}
493          */
494         public void windowDeactivated(WindowEvent e) {
495                 /* do nothing. */
496         }
497
498         /**
499          * {@inheritDoc}
500          */
501         public void windowDeiconified(WindowEvent e) {
502                 /* do nothing. */
503         }
504
505         /**
506          * {@inheritDoc}
507          */
508         public void windowIconified(WindowEvent e) {
509                 /* do nothing. */
510         }
511
512         /**
513          * {@inheritDoc}
514          */
515         public void windowOpened(WindowEvent e) {
516                 /* do nothing. */
517         }
518
519         //
520         // INTERFACE PropertyChangeListener
521         //
522
523         /**
524          * @see java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent)
525          */
526         public void propertyChange(PropertyChangeEvent propertyChangeEvent) {
527                 Object eventSource = propertyChangeEvent.getSource();
528                 String propertyName = propertyChangeEvent.getPropertyName();
529                 if (eventSource instanceof Project) {
530                         /* if a project was changed, update the tab title and tooltip. */
531                         if (Project.PROPERTY_NAME.equals(propertyName) || Project.PROPERTY_DESCRIPTION.equals(propertyName)) {
532                                 Project project = (Project) eventSource;
533                                 int tabCount = projectPane.getTabCount();
534                                 for (int tabIndex = 0; tabIndex < tabCount; tabIndex++) {
535                                         Component tabComponent = projectPane.getComponentAt(tabIndex);
536                                         if (tabComponent instanceof ProjectPanel) {
537                                                 Project tabProject = ((ProjectPanel) tabComponent).getProject();
538                                                 if (tabProject.equals(project)) {
539                                                         projectPane.setTitleAt(tabIndex, project.getName());
540                                                         projectPane.setToolTipTextAt(tabIndex, project.getDescription());
541                                                         projectPane.repaint();
542                                                 }
543                                         }
544                                 }
545                         }
546                 }
547         }
548
549 }