1 /********************************************************************************
2 * InternetCafe is a software solution that helps the management of Cybercafes
3 * according with the ITALIAN DECREE LAW ON ANTI-TERROR MEASURES, 27 JULY 2005.
4 * Copyright (C) 2006 Guido Angelo Ingenito
5
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 *******************************************************************************/
20 package ui.panel;
21
22 import java.awt.BorderLayout;
23 import java.awt.GridLayout;
24
25 import javax.swing.JButton;
26 import javax.swing.JLabel;
27 import javax.swing.JPanel;
28 import javax.swing.JTabbedPane;
29 import javax.swing.border.EtchedBorder;
30
31 import ui.Messages;
32
33 @SuppressWarnings("serial")
34 public class ICInventoryPanel extends JPanel {
35
36 private JTabbedPane tabbedPanel;
37
38 private JPanel buttonPanel;
39
40 public ICInventoryPanel() {
41 initialize();
42 }
43
44 protected void initialize() {
45 this.setLayout(new BorderLayout());
46 this.add(getTabbedPanel(), BorderLayout.CENTER);
47 this.add(getButtonPanel(), BorderLayout.SOUTH);
48 }
49
50 /***
51 * @return Returns the buttonPanel.
52 */
53 protected JPanel getButtonPanel() {
54 if (buttonPanel == null) {
55 buttonPanel = new JPanel();
56 buttonPanel.setBorder(new EtchedBorder());
57 buttonPanel.setLayout(new GridLayout(1, 5));
58 buttonPanel.add(new JLabel(""));
59 buttonPanel.add(new JButton("Button1"));
60 buttonPanel.add(new JButton("Button2"));
61 buttonPanel.add(new JButton("Button3"));
62 buttonPanel.add(new JLabel(""));
63
64 }
65 return buttonPanel;
66 }
67
68 /***
69 * @return Returns the tabbedPanel.
70 */
71 protected JTabbedPane getTabbedPanel() {
72 if (tabbedPanel == null) {
73 tabbedPanel = new JTabbedPane();
74 tabbedPanel.add(Messages.getString("common.food"), new JPanel());
75 tabbedPanel.add(Messages.getString("common.beverages"), new JPanel());
76 tabbedPanel.add(Messages.getString("common.pricelists"), new JPanel());
77 tabbedPanel.add(Messages.getString("common.suppliers"), new JPanel());
78 }
79 return tabbedPanel;
80 }
81
82 }