3c064d60cd96bf0cb1dae7f886e85be2872a1a5c
[jkeytool.git] / src / net / pterodactylus / jkeytool / gui / swing / KeyStorePanel.java
1 /*
2  * jkeytool - KeyStorePanel.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.security.KeyStore;
25
26 import javax.swing.AbstractAction;
27 import javax.swing.Action;
28 import javax.swing.JPanel;
29 import javax.swing.JToolBar;
30
31 import net.pterodactylus.util.swing.StatusBar;
32
33 /**
34  * TODO
35  *
36  * @author David Roden <droden@gmail.com>
37  */
38 public class KeyStorePanel extends JPanel {
39
40         /** The displayed key store. */
41         private final KeyStore keyStore;
42
43         /** The tool bar. */
44         private final JToolBar toolBar = new JToolBar();
45
46         /** The status bar. */
47         private final StatusBar statusBar = new StatusBar();
48
49         /** The action to create a new key. */
50         private Action createKeyAction;
51
52         /**
53          * Creates a new key store panel that displays and controls the given key
54          * store.
55          *
56          * @param keyStore
57          *            The key store to display
58          */
59         public KeyStorePanel(KeyStore keyStore) {
60                 super(new BorderLayout());
61                 this.keyStore = keyStore;
62                 constructActions();
63                 constructPanel();
64                 statusBar.setText(keyStore.getType() + " Key Store");
65         }
66
67         //
68         // PRIVATE ACTIONS
69         //
70
71         private void createKey() {
72
73         }
74
75         //
76         // PRIVATE METHODS
77         //
78
79         private void constructActions() {
80                 createKeyAction = new AbstractAction("Create Key") {
81
82                         /**
83                          * {@inheritDoc}
84                          */
85                         @SuppressWarnings("synthetic-access")
86                         public void actionPerformed(ActionEvent actionEvent) {
87                                 createKey();
88                         }
89                 };
90         }
91
92         private void constructPanel() {
93                 toolBar.add(createKeyAction);
94
95                 add(toolBar, BorderLayout.PAGE_START);
96                 add(statusBar, BorderLayout.PAGE_END);
97         }
98
99 }