/*
* PropertiesBase.java
*
* Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis
*
* 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.executequery.gui.prefs;
import javax.swing.JPanel;
import javax.swing.JButton;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import javax.swing.BorderFactory;
import org.executequery.GUIUtilities;
import org.executequery.actions.othercommands.RestoreDefaultsCommand;
/* ----------------------------------------------------------
* CVS NOTE: Changes to the CVS repository prior to the
* release of version 3.0.0beta1 has meant a
* resetting of CVS revision numbers.
* ----------------------------------------------------------
*/
/**
* User preferences base panel.
*
* @author Takis Diakoumis
* @version $Revision: 1.4 $
* @date $Date: 2006/05/14 06:56:52 $
*/
public abstract class PropertiesBase extends JPanel
implements UserPreferenceFunction {
/** common font used across props panels */
protected static Font panelFont;
/** common layout constraints acroos props panels */
protected static GridBagConstraints contentPanelConstraints;
static {
panelFont = new Font("dialog", Font.PLAIN, 11);
contentPanelConstraints = new GridBagConstraints(
1, 1, 1, 1, 1.0, 1.0,
GridBagConstraints.NORTHWEST,
GridBagConstraints.BOTH,
new Insets(5, 5, 0, 5), 0, 0);
}
public PropertiesBase() {
super(new GridBagLayout());
setBorder(BorderFactory.createLineBorder(
GUIUtilities.getDefaultBorderColour()));
try {
jbInit();
}
catch (Exception e) {
e.printStackTrace();
}
}
protected void addContent(JPanel panel) {
add(panel, contentPanelConstraints);
}
private void jbInit() throws Exception {
JPanel panel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
panel.add(new JButton(new RestoreDefaultsCommand(this)));
add(panel, new GridBagConstraints(
1, 2, 1, 1, 0, 0,
GridBagConstraints.SOUTHEAST,
GridBagConstraints.NONE,
new Insets(0, 0, 0, 0), 0, 0));
}
}
|