b67ce8489703d32c937b7a958c3bd7e1cf8e8a17
[jkeytool.git] / src / net / pterodactylus / jkeytool / gui / swing / SwingInterface.java
1 /*
2  * jkeytool - SwingInterface.java -
3  * Copyright © 2009 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.jkeytool.gui.swing;
21
22 import java.awt.BorderLayout;
23 import java.awt.event.ActionEvent;
24 import java.io.File;
25 import java.security.KeyStore;
26 import java.util.HashMap;
27 import java.util.Map;
28
29 import javax.swing.Action;
30 import javax.swing.BorderFactory;
31 import javax.swing.JComponent;
32 import javax.swing.JFrame;
33 import javax.swing.JMenu;
34 import javax.swing.JMenuBar;
35 import javax.swing.JPanel;
36 import javax.swing.JTabbedPane;
37 import javax.swing.JToolBar;
38
39 import net.pterodactylus.jkeytool.core.Core;
40 import net.pterodactylus.jkeytool.gui.Interface;
41 import net.pterodactylus.jkeytool.main.Main;
42 import net.pterodactylus.util.i18n.I18n;
43 import net.pterodactylus.util.i18n.gui.I18nAction;
44 import net.pterodactylus.util.i18n.gui.I18nMenu;
45 import net.pterodactylus.util.swing.StatusBar;
46
47 /**
48  * TODO
49  *
50  * @author David Roden <droden@gmail.com>
51  */
52 public class SwingInterface implements Interface {
53
54         /** The core to control. */
55         private Core core;
56
57         /** The I18n container. */
58         private I18n i18n = new I18n("jkeytool", SwingInterface.class);
59
60         /** The main frame. */
61         private JFrame mainFrame = new JFrame("jkeytool " + Main.getVersion());
62
63         /** The tab pane. */
64         private JTabbedPane tabPane = new JTabbedPane();
65
66         /** The status bar. */
67         private StatusBar statusBar = new StatusBar();
68
69         /** The “create key store” action. */
70         private Action createKeyStoreAction;
71
72         /** The “quit” action. */
73         private Action quitAction;
74
75         /** Loaded key stores and their panels. */
76         private final Map<KeyStore, KeyStorePanel> keyStores = new HashMap<KeyStore, KeyStorePanel>();
77
78         public SwingInterface() {
79                 createActions();
80                 createFrame();
81         }
82
83         //
84         // ACTIONS
85         //
86
87         private void createKeyStore() {
88         }
89
90         private void quit() {
91                 System.exit(0);
92         }
93
94         //
95         // PRIVATE METHODS
96         //
97
98         private void createActions() {
99                 createKeyStoreAction = new I18nAction(i18n, "jkeytool.action.createKeyStore") {
100
101                         @SuppressWarnings("synthetic-access")
102                         public void actionPerformed(ActionEvent actionEvent) {
103                                 createKeyStore();
104                         }
105                 };
106                 quitAction = new I18nAction(i18n, "jkeytool.action.quit") {
107
108                         /**
109                          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
110                          */
111                         @SuppressWarnings("synthetic-access")
112                         public void actionPerformed(ActionEvent actionEvent) {
113                                 quit();
114                         }
115                 };
116         }
117
118         private void createFrame() {
119                 mainFrame.setJMenuBar(createMenubar());
120                 mainFrame.getContentPane().add(createToolbar(), BorderLayout.PAGE_START);
121                 mainFrame.getContentPane().add(createCenterPanel(), BorderLayout.CENTER);
122                 mainFrame.getContentPane().add(statusBar, BorderLayout.PAGE_END);
123                 mainFrame.pack();
124         }
125
126         private JComponent createCenterPanel() {
127                 JPanel centerPanel = new JPanel(new BorderLayout());
128                 centerPanel.setBorder(BorderFactory.createEmptyBorder(6, 6, 6, 6));
129
130                 centerPanel.add(tabPane, BorderLayout.CENTER);
131
132                 return centerPanel;
133         }
134
135         private JMenuBar createMenubar() {
136                 JMenuBar menubar = new JMenuBar();
137
138                 JMenu fileMenu = new I18nMenu(i18n, "jkeytool.menu.file");
139                 menubar.add(fileMenu);
140                 fileMenu.add(createKeyStoreAction);
141                 fileMenu.addSeparator();
142                 fileMenu.add(quitAction);
143
144                 return menubar;
145         }
146
147         private JToolBar createToolbar() {
148                 JToolBar toolbar = new JToolBar();
149
150                 toolbar.add(createKeyStoreAction);
151                 toolbar.add(quitAction);
152
153                 return toolbar;
154         }
155
156         //
157         // INTERFACE Interface
158         //
159
160         /**
161          * Sets the core to control.
162          *
163          * @param core
164          *            The core to control
165          */
166         public void setCore(Core core) {
167                 this.core = core;
168         }
169
170         /**
171          * {@inheritDoc}
172          */
173         public void start() {
174                 mainFrame.setVisible(true);
175                 statusBar.setText("jkeytool startup complete.");
176                 core.loadKeyStore(new File("client.p12"));
177         }
178
179         /**
180          * {@inheritDoc}
181          */
182         public void stop() {
183                 /* TODO */
184         }
185
186         //
187         // INTERFACE CoreListener
188         //
189
190         /**
191          * {@inheritDoc}
192          */
193         public void keyStoreCreated(KeyStore keyStore) {
194                 /* TODO */
195         }
196
197         /**
198          * {@inheritDoc}
199          */
200         public void keyStoreLoaded(File keyStoreFile, KeyStore keyStore) {
201                 KeyStorePanel keyStorePanel = new KeyStorePanel(keyStore);
202                 keyStores.put(keyStore, keyStorePanel);
203                 tabPane.addTab(keyStoreFile.getName(), keyStorePanel);
204         }
205
206         /**
207          * {@inheritDoc}
208          */
209         public void keyStoreNotCreated(String keyStoreType, Throwable reason) {
210                 /* TODO */
211         }
212
213         /**
214          * {@inheritDoc}
215          */
216         public void keyStoreNotLoaded(File keyStoreFile) {
217                 /* TODO */
218         }
219
220 }