/* * Jajuk * Copyright (C) The Jajuk Team * http://jajuk.info * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ package org.jajuk.ui.widgets; import java.awt.event.ActionListener; import javax.swing.JPanel; import net.miginfocom.swing.MigLayout; import org.jajuk.util.IconLoader; import org.jajuk.util.JajukIcons; import org.jajuk.util.Messages; /** * Ok Cancel generic panel. */ public class OKCancelPanel extends JPanel { /** Generated serialVersionUID. */ private static final long serialVersionUID = 1L; private final JajukButton jbOk; private final JajukButton jbCancel; /** Associated action listener. */ ActionListener al; /** * Instantiates a new oK cancel panel. * * @param al */ public OKCancelPanel(ActionListener al) { this.al = al; // buttons setLayout(new MigLayout("ins 5")); jbOk = new JajukButton(Messages.getString("Ok"), IconLoader.getIcon(JajukIcons.OK)); jbOk.addActionListener(al); jbCancel = new JajukButton(Messages.getString("Cancel"), IconLoader.getIcon(JajukIcons.KO)); jbCancel.addActionListener(al); add(jbOk, "tag ok,gapx 5"); add(jbCancel, "tag cancel"); } /** * OK Cancel panel with given button names. * * @param al * @param sOKTitle * @param sCancelTitle */ public OKCancelPanel(ActionListener al, String sOKTitle, String sCancelTitle) { this(al); jbOk.setText(sOKTitle); jbCancel.setText(sCancelTitle); } /** * Gets the oK button. * * @return the oK button */ public JajukButton getOKButton() { return jbOk; } /** * Gets the cancel button. * * @return the cancel button */ public JajukButton getCancelButton() { return jbCancel; } }