src/de/uapcore/sudoku/ButtonPanel.java

Sat, 26 Jan 2013 18:38:12 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 26 Jan 2013 18:38:12 +0100
changeset 3
ed931970b4ac
parent 2
5179eff8a9b6
permissions
-rw-r--r--

added license and main menu

universe@3 1 /*
universe@3 2 * Copyright 2013 Mike Becker. All rights reserved.
universe@3 3 *
universe@3 4 * Redistribution and use in source and binary forms, with or without
universe@3 5 * modification, are permitted provided that the following conditions are met:
universe@3 6 *
universe@3 7 * 1. Redistributions of source code must retain the above copyright
universe@3 8 * notice, this list of conditions and the following disclaimer.
universe@3 9 *
universe@3 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@3 11 * notice, this list of conditions and the following disclaimer in the
universe@3 12 * documentation and/or other materials provided with the distribution.
universe@3 13 *
universe@3 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@3 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@3 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@3 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@3 18 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@3 19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@3 20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@3 21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@3 22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@3 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@3 24 * POSSIBILITY OF SUCH DAMAGE.
universe@3 25 */
universe@3 26
universe@2 27 package de.uapcore.sudoku;
universe@2 28
universe@2 29 import java.awt.Color;
universe@2 30 import java.awt.GridBagConstraints;
universe@2 31 import java.awt.GridBagLayout;
universe@2 32 import java.awt.Insets;
universe@2 33 import javax.swing.JButton;
universe@2 34 import javax.swing.JPanel;
universe@2 35
universe@2 36 /**
universe@2 37 *
universe@2 38 * @author mike
universe@2 39 */
universe@2 40 public final class ButtonPanel extends JPanel {
universe@2 41
universe@2 42 private JButton save, check, solve;
universe@2 43
universe@2 44 public ButtonPanel(ActionHandler l) {
universe@2 45 setLayout(new GridBagLayout());
universe@2 46
universe@2 47 GridBagConstraints c = new GridBagConstraints();
universe@2 48 c.insets = new Insets(10, 10, 10, 10);
universe@2 49 c.fill = GridBagConstraints.HORIZONTAL;
universe@2 50 c.weightx = 1;
universe@2 51
universe@2 52 c.gridx = 0;
universe@2 53 c.gridy = 0;
universe@2 54 save = new JButton("Speichern");
universe@2 55 add(save, c);
universe@2 56 c.gridx++;
universe@2 57 check = new JButton("Prüfen");
universe@2 58 add(check, c);
universe@2 59 solve = new JButton("Lösen");
universe@2 60 c.gridx++;
universe@2 61 add(solve, c);
universe@2 62
universe@2 63 save.setActionCommand(ActionHandler.SAVE);
universe@2 64 save.addActionListener(l);
universe@2 65 check.setActionCommand(ActionHandler.CHECK);
universe@2 66 check.addActionListener(l);
universe@2 67 solve.setActionCommand(ActionHandler.SOLVE);
universe@2 68 solve.addActionListener(l);
universe@2 69
universe@2 70 setBackground(Color.WHITE);
universe@2 71 }
universe@2 72 }

mercurial