b4f766dda39a43cd1e1064d53f087b4b813b3304
[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         /**
66          * Executed by {@link #createKeyAction}.
67          */
68         private void createKey() {
69                 /* TODO */
70         }
71
72         //
73         // PRIVATE METHODS
74         //
75
76         /**
77          * Constructs all used actions.
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         /**
93          * Constructs the main panel.
94          */
95         private void constructPanel() {
96                 toolBar.add(createKeyAction);
97
98                 add(toolBar, BorderLayout.PAGE_START);
99         }
100
101 }