⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractquerypanel.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     AbstractQueryPanel.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * 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 * (at your option) 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 *//* 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 * (at your option) 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 mpi.search.query.viewer;import mpi.search.SearchLocale;import java.awt.BorderLayout;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.KeyEvent;import javax.swing.AbstractAction;import javax.swing.Action;import javax.swing.JButton;import javax.swing.JPanel;import javax.swing.KeyStroke;import javax.swing.border.EmptyBorder;/** * $Id: AbstractQueryPanel.java,v 1.1 2007/03/09 09:42:14 klasal Exp $ * * @author $Author: klasal $ * @version $Revision: 1.1 $ */abstract public class AbstractQueryPanel extends JPanel {    /** adding a constraint(panel) */    protected final Action addConstraintAction;    /** deleting constraint(panel) */    protected final Action deleteConstraintAction;    /** max number of constraints */    protected final int max_constraint = 10;    /** Holds all constraint panels */    protected final JPanel constraintGridPanel = new JPanel(new GridLayout(0, 1));    /**     * Creates a new AbstractQueryPanel object.     */    public AbstractQueryPanel() {        addConstraintAction = new AbstractAction(SearchLocale.getString(                    "Search.Query.Add")) {                    public void actionPerformed(ActionEvent e) {                        addConstraint();                    }                };        KeyStroke ks = KeyStroke.getKeyStroke(KeyEvent.VK_A,                ActionEvent.CTRL_MASK);        addConstraintAction.putValue(Action.ACCELERATOR_KEY, ks);        deleteConstraintAction = new AbstractAction(SearchLocale.getString(                    "Search.Query.Delete")) {                    public void actionPerformed(ActionEvent e) {                        deleteConstraint();                    }                };        ks = KeyStroke.getKeyStroke(KeyEvent.VK_D, ActionEvent.CTRL_MASK);        deleteConstraintAction.putValue(Action.ACCELERATOR_KEY, ks);        makeLayout();    }    private void makeLayout() {        JButton addButton = new JButton(addConstraintAction);        JButton delButton = new JButton(deleteConstraintAction);        setLayout(new BorderLayout());        add(constraintGridPanel, BorderLayout.CENTER);        if (max_constraint > 1) {            JPanel buttonPanel = new JPanel(new GridLayout(1, 2, 5, 5));            buttonPanel.setOpaque(false);            buttonPanel.add(addButton);            buttonPanel.add(delButton);            JPanel insetPanel = new JPanel();            insetPanel.setOpaque(false);            insetPanel.add(buttonPanel);            insetPanel.setBorder(new EmptyBorder(1, 1, 1, 1));            add(insetPanel, BorderLayout.SOUTH);        }    }    /**     * DOCUMENT ME!     */    public void updateLayout() {        if (getTopLevelAncestor() != null) {            int preferredWidth = getPreferredSize().width;            int currentWidth = getSize().width;            if (preferredWidth > currentWidth) {                getTopLevelAncestor().setSize(preferredWidth + 20,                    getTopLevelAncestor().getHeight());            } else {                getTopLevelAncestor().validate();                repaint(); // necessary for applet            }        }        updateActions();    }    /**     * enables/disables actions     */    protected void updateActions() {        deleteConstraintAction.setEnabled(constraintGridPanel.getComponentCount() > 1);        addConstraintAction.setEnabled(constraintGridPanel.getComponentCount() < max_constraint);    }    /**     * DOCUMENT ME!     */    public void reset() {        constraintGridPanel.removeAll();        addConstraint();    }    /**     * DOCUMENT ME!     */    protected void addConstraint() {        constraintGridPanel.add(createConstraintPanel());        updateLayout();    }    /**     * DOCUMENT ME!     */    protected void deleteConstraint() {        constraintGridPanel.remove(constraintGridPanel.getComponentCount() - 1);        updateLayout();    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     */    abstract protected JPanel createConstraintPanel();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -