Add border around tabbed pane.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / gui / MainWindow.java
1 /*
2  * Sonitus - MainWindow.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sonitus.gui;
19
20 import java.awt.BorderLayout;
21 import java.awt.Dimension;
22 import java.util.List;
23 import javax.swing.BorderFactory;
24 import javax.swing.JFrame;
25 import javax.swing.JTabbedPane;
26 import javax.swing.WindowConstants;
27
28 import net.pterodactylus.sonitus.data.Controlled;
29 import net.pterodactylus.sonitus.data.Controller;
30 import net.pterodactylus.sonitus.main.Version;
31
32 /**
33  * Sonitus main window.
34  *
35  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
36  */
37 public class MainWindow extends JFrame {
38
39         /** The tabbed pane displaying all controlled components. */
40         private final JTabbedPane tabbedPane = new JTabbedPane();
41
42         /** Creates a new main window. */
43         public MainWindow() {
44                 super(String.format("Sonitus %s", Version.version()));
45                 tabbedPane.setBorder(BorderFactory.createEmptyBorder(12, 12, 12, 12));
46                 getContentPane().add(tabbedPane, BorderLayout.CENTER);
47                 setSize(new Dimension(800, 450));
48
49                 /* FIXME - shut everything down properly. */
50                 setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
51         }
52
53         //
54         // ACTIONS
55         //
56
57         /**
58          * Adds the given controlled to this main window.
59          *
60          * @param controlled
61          *              The controlled to add
62          */
63         public void addControllers(Controlled controlled) {
64                 List<Controller<?>> controllers = controlled.controllers();
65                 if (controllers.isEmpty()) {
66                         return;
67                 }
68                 ControlledPane controlledPane = new ControlledPane(controlled);
69                 tabbedPane.addTab(controlled.name(), controlledPane);
70         }
71
72 }