/jEdit/tags/jedit-4-2-pre4/org/gjt/sp/jedit/AbstractOptionPane.java
Java | 347 lines | 142 code | 32 blank | 173 comment | 4 complexity | 8c1804becf752c94ec015dc4c2495833 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
- /*
- * AbstractOptionPane.java - Abstract option pane
- * :tabSize=8:indentSize=8:noTabs=false:
- * :folding=explicit:collapseFolds=1:
- *
- * Copyright (C) 1998, 1999, 2000, 2001, 2002 Slava Pestov
- *
- * 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.gjt.sp.jedit;
- //{{{ Imports
- import javax.swing.border.EmptyBorder;
- import javax.swing.*;
- import java.awt.*;
- //}}}
- /**
- * The default implementation of the option pane interface.<p>
- *
- * See {@link EditPlugin} for information on how jEdit obtains and constructs
- * option pane instances.<p>
- *
- * Most option panes extend this implementation of {@link OptionPane}, instead
- * of implementing {@link OptionPane} directly. This class provides a convenient
- * default framework for laying out configuration options.<p>
- *
- * It is derived from Java's <code>JPanel</code> class and uses a
- * <code>GridBagLayout</code> object for component management. Since
- * <code>GridBagLayout</code> can be a bit cumbersome to use, this class
- * contains shortcut methods to simplify layout:
- *
- * <ul>
- * <li>{@link #addComponent(Component)}</li>
- * <li>{@link #addComponent(String,Component)}</li>
- * <li>{@link #addComponent(String,Component,int)}</li>
- * <li>{@link #addComponent(Component,Component)}</li>
- * <li>{@link #addComponent(Component,Component,int)}</li>
- * <li>{@link #addSeparator()}</li>
- * <li>{@link #addSeparator(String)}</li>
- * </ul>
- *
- * @author Slava Pestov
- * @author John Gellene (API documentation)
- * @version $Id: AbstractOptionPane.java 4720 2003-05-22 23:43:16Z spestov $
- */
- // even though this class is called AbstractOptionPane, it is not really
- // abstract, since BufferOptions uses an instance of it to lay out its
- // components.
- public class AbstractOptionPane extends JPanel implements OptionPane
- {
- //{{{ AbstractOptionPane constructor
- /**
- * Creates a new option pane.
- * @param name The internal name. The option pane's label is set to the
- * value of the property named <code>options.<i>name</i>.label</code>.
- */
- public AbstractOptionPane(String name)
- {
- this.name = name;
- setLayout(gridBag = new GridBagLayout());
- } //}}}
- //{{{ getName() method
- /**
- * Returns the internal name of this option pane. The option pane's label
- * is set to the value of the property named
- * <code>options.<i>name</i>.label</code>.
- */
- public String getName()
- {
- return name;
- } //}}}
- //{{{ getComponent() method
- /**
- * Returns the component that should be displayed for this option pane.
- * Because this class extends Component, it simply returns "this".
- */
- public Component getComponent()
- {
- return this;
- } //}}}
- //{{{ init() method
- /**
- * Do not override this method, override {@link #_init()} instead.
- */
- // final in 4.2
- public void init()
- {
- if(!initialized)
- {
- initialized = true;
- _init();
- }
- } //}}}
- //{{{ save() method
- /**
- * Do not override this method, override {@link #_save()} instead.
- */
- // final in 4.2
- public void save()
- {
- if(initialized)
- _save();
- } //}}}
- //{{{ addComponent() method
- /**
- * Adds a labeled component to the option pane. Components are
- * added in a vertical fashion, one per row. The label is
- * displayed to the left of the component.
- * @param label The label
- * @param comp The component
- */
- public void addComponent(String label, Component comp)
- {
- JLabel l = new JLabel(label);
- l.setBorder(new EmptyBorder(0,0,0,12));
- addComponent(l,comp,GridBagConstraints.BOTH);
- } //}}}
- //{{{ addComponent() method
- /**
- * Adds a labeled component to the option pane. Components are
- * added in a vertical fashion, one per row. The label is
- * displayed to the left of the component.
- * @param label The label
- * @param comp The component
- * @param fill Fill parameter to GridBagConstraints for the right
- * component
- */
- public void addComponent(String label, Component comp, int fill)
- {
- JLabel l = new JLabel(label);
- l.setBorder(new EmptyBorder(0,0,0,12));
- addComponent(l,comp,fill);
- } //}}}
- //{{{ addComponent() method
- /**
- * Adds a labeled component to the option pane. Components are
- * added in a vertical fashion, one per row. The label is
- * displayed to the left of the component.
- * @param comp1 The label
- * @param comp2 The component
- *
- * @since jEdit 4.1pre3
- */
- public void addComponent(Component comp1, Component comp2)
- {
- addComponent(comp1,comp2,GridBagConstraints.BOTH);
- } //}}}
- //{{{ addComponent() method
- /**
- * Adds a labeled component to the option pane. Components are
- * added in a vertical fashion, one per row. The label is
- * displayed to the left of the component.
- * @param comp1 The label
- * @param comp2 The component
- * @param fill Fill parameter to GridBagConstraints for the right
- * component
- *
- * @since jEdit 4.1pre3
- */
- public void addComponent(Component comp1, Component comp2, int fill)
- {
- GridBagConstraints cons = new GridBagConstraints();
- cons.gridy = y++;
- cons.gridheight = 1;
- cons.gridwidth = 1;
- cons.weightx = 0.0f;
- cons.insets = new Insets(1,0,1,0);
- cons.fill = GridBagConstraints.BOTH;
- gridBag.setConstraints(comp1,cons);
- add(comp1);
- cons.fill = fill;
- cons.gridx = 1;
- cons.weightx = 1.0f;
- gridBag.setConstraints(comp2,cons);
- add(comp2);
- } //}}}
- //{{{ addComponent() method
- /**
- * Adds a component to the option pane. Components are
- * added in a vertical fashion, one per row.
- * @param comp The component
- */
- public void addComponent(Component comp)
- {
- GridBagConstraints cons = new GridBagConstraints();
- cons.gridy = y++;
- cons.gridheight = 1;
- cons.gridwidth = cons.REMAINDER;
- cons.fill = GridBagConstraints.NONE;
- cons.anchor = GridBagConstraints.WEST;
- cons.weightx = 1.0f;
- cons.insets = new Insets(1,0,1,0);
- gridBag.setConstraints(comp,cons);
- add(comp);
- } //}}}
- //{{{ addComponent() method
- /**
- * Adds a component to the option pane. Components are
- * added in a vertical fashion, one per row.
- * @param comp The component
- * @param fill Fill parameter to GridBagConstraints
- * @since jEdit 4.2pre2
- */
- public void addComponent(Component comp, int fill)
- {
- GridBagConstraints cons = new GridBagConstraints();
- cons.gridy = y++;
- cons.gridheight = 1;
- cons.gridwidth = cons.REMAINDER;
- cons.fill = fill;
- cons.anchor = GridBagConstraints.WEST;
- cons.weightx = 1.0f;
- cons.insets = new Insets(1,0,1,0);
- gridBag.setConstraints(comp,cons);
- add(comp);
- } //}}}
- //{{{ addSeparator() method
- /**