9a679f120e8d18d40989a55d3560aedf5861e450
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / gui / ControlledPane.java
1 /*
2  * Sonitus - ControlledTab.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 static javax.swing.BorderFactory.createEtchedBorder;
21 import static javax.swing.BorderFactory.createTitledBorder;
22
23 import java.awt.GridBagConstraints;
24 import java.awt.GridBagLayout;
25 import java.awt.Insets;
26 import javax.swing.BorderFactory;
27 import javax.swing.Box;
28 import javax.swing.JComponent;
29 import javax.swing.JLabel;
30 import javax.swing.JPanel;
31
32 import net.pterodactylus.sonitus.data.Controlled;
33 import net.pterodactylus.sonitus.data.Controller;
34 import net.pterodactylus.sonitus.data.controller.Fader;
35 import net.pterodactylus.sonitus.data.controller.Knob;
36 import net.pterodactylus.sonitus.data.controller.Switch;
37
38 /**
39  * Panel that displays all {@link Controller}s of a {@link Controlled}
40  * component.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class ControlledPane extends JPanel {
45
46         /**
47          * Creates a new controlled pane.
48          *
49          * @param controlled
50          *              The controlled whose controllers to display
51          */
52         public ControlledPane(Controlled controlled) {
53                 super(new GridBagLayout());
54                 setBorder(BorderFactory.createEmptyBorder(6, 12, 12, 12));
55
56                 add(createControllerPanel(controlled), new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.NORTH, GridBagConstraints.HORIZONTAL, new Insets(6, 0, 0, 0), 0, 0));
57                 add(Box.createVerticalGlue(), new GridBagConstraints(0, 1, 1, 1, 1.0, 1.0, GridBagConstraints.NORTH, GridBagConstraints.BOTH, new Insets(6, 0, 0, 0), 0, 0));
58         }
59
60         //
61         // PRIVATE METHODS
62         //
63
64         /**
65          * Creates the controller panel for the given component.
66          *
67          * @param controlled
68          *              The component whose controllers to display
69          * @return The created controller panel
70          */
71         private JComponent createControllerPanel(Controlled controlled) {
72                 JPanel controllerPanel = new JPanel(new GridBagLayout());
73                 controllerPanel.setBorder(createTitledBorder(createEtchedBorder(), "Controller"));
74
75                 int controllerIndex = 0;
76                 for (Controller controller : controlled.controllers()) {
77                         controllerPanel.add(new JLabel(controller.name()), new GridBagConstraints(0, controllerIndex, 1, 1, 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(6, 0, 0, 6), 0, 0));
78                         if (controller instanceof Fader) {
79                                 controllerPanel.add(new FaderPanel((Fader) controller), new GridBagConstraints(1, controllerIndex, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(6, 0, 0, 0), 0, 0));
80                         } else if (controller instanceof Switch) {
81                                 controllerPanel.add(new SwitchPanel((Switch) controller), new GridBagConstraints(1, controllerIndex, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(6, 0, 0, 0), 0, 0));
82                         } else if (controller instanceof Knob) {
83                                 controllerPanel.add(new KnobPanel((Knob) controller), new GridBagConstraints(1, controllerIndex, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(6, 0, 0, 0), 0, 0));
84                         }
85                         ++controllerIndex;
86                 }
87
88                 return controllerPanel;
89         }
90
91 }