010fa3ae8ac55851b90f33183520491efc0fe088
[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 javax.swing.Box;
21 import javax.swing.BoxLayout;
22
23 import net.pterodactylus.sonitus.data.Controlled;
24 import net.pterodactylus.sonitus.data.Controller;
25 import net.pterodactylus.sonitus.data.controller.Fader;
26 import net.pterodactylus.sonitus.data.controller.Switch;
27
28 /**
29  * Panel that displays all {@link Controller}s of a {@link Controlled}
30  * component.
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public class ControlledPane extends Box {
35
36         /**
37          * Creates a new controlled pane.
38          *
39          * @param controlled
40          *              The controlled whose controllers to display
41          */
42         public ControlledPane(Controlled controlled) {
43                 super(BoxLayout.Y_AXIS);
44                 for (Controller controller : controlled.controllers()) {
45                         if (controller instanceof Fader) {
46                                 add(new FaderPanel((Fader) controller));
47                         } else if (controller instanceof Switch) {
48                                 add(new SwitchPanel((Switch) controller));
49                         }
50                 }
51                 add(Box.createGlue());
52         }
53
54 }