Add key store panel when a key store is loaded.
[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 /**
32  * TODO
33  *
34  * @author David Roden <droden@gmail.com>
35  */
36 public class KeyStorePanel extends JPanel {
37
38         /** The displayed key store. */
39         private final KeyStore keyStore;
40
41         /** The tool bar. */
42         private final JToolBar toolBar = new JToolBar();
43
44         /** The action to create a new key. */
45         private Action createKeyAction;
46
47         /**
48          * Creates a new key store panel that displays and controls the given key
49          * store.
50          *
51          * @param keyStore
52          *            The key store to display
53          */
54         public KeyStorePanel(KeyStore keyStore) {
55                 super(new BorderLayout());
56                 this.keyStore = keyStore;
57                 constructActions();
58                 constructPanel();
59         }
60
61         //
62         // PRIVATE ACTIONS
63         //
64
65         private void createKey() {
66
67         }
68
69         //
70         // PRIVATE METHODS
71         //
72
73         private void constructActions() {
74                 createKeyAction = new AbstractAction("Create Key") {
75
76                         /**
77                          * {@inheritDoc}
78                          */
79                         @SuppressWarnings("synthetic-access")
80                         public void actionPerformed(ActionEvent actionEvent) {
81                                 createKey();
82                         }
83                 };
84         }
85
86         private void constructPanel() {
87                 toolBar.add(createKeyAction);
88
89                 add(toolBar, BorderLayout.PAGE_START);
90         }
91
92 }