e3350a7d18e4d4c63b70eb8ce8c1a28f4c4c2c12
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / gui / SwitchPanel.java
1 /*
2  * Sonitus - SwitchPanel.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.GridBagConstraints;
21 import java.awt.GridBagLayout;
22 import java.awt.Insets;
23 import java.awt.event.ActionEvent;
24 import java.awt.event.ActionListener;
25 import javax.swing.BorderFactory;
26 import javax.swing.JCheckBox;
27 import javax.swing.JLabel;
28 import javax.swing.JPanel;
29
30 import net.pterodactylus.sonitus.data.controller.Switch;
31
32 /**
33  * Displays a {@link Switch}.
34  *
35  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
36  */
37 public class SwitchPanel extends JPanel {
38
39         /**
40          * Creates a new fader panel.
41          *
42          * @param fader
43          *              The fader being controlled
44          */
45         public SwitchPanel(final Switch switchController) {
46                 super(new GridBagLayout());
47
48                 /* create checkbox. */
49                 JCheckBox checkBox = new JCheckBox();
50                 checkBox.addActionListener(new ActionListener() {
51
52                         @Override
53                         public void actionPerformed(ActionEvent actionEvent) {
54                                 switchController.value(((JCheckBox) actionEvent.getSource()).isSelected());
55                         }
56                 });
57                 add(checkBox, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.NORTHWEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
58         }
59
60 }