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

📄 startstoppanel.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     StartStopPanel.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 */package mpi.search.query.viewer;import mpi.search.SearchLocale;import java.awt.CardLayout;import java.awt.Color;import java.awt.GridBagConstraints;import java.awt.GridBagLayout;import java.awt.Insets;import javax.swing.Action;import javax.swing.JButton;import javax.swing.JPanel;/** * Panel with two or three buttons; a start or a stop button in card layout * (and optionally a close button) are shown Created on Oct 5, 2004 * * @author Alexander Klassmann * @version Oct 5, 2004 */public class StartStopPanel extends JPanel {    /** To change between start- and stop-Button */    private final CardLayout startPanelLayout = new CardLayout(0, 0);    /** Panel that contains all three buttons */    private final JPanel buttonPanel;    /** Panel to contain a start- and a stop-button */    private final JPanel startStopPlaceHolderPanel = new JPanel(startPanelLayout);    /**     * DOCUMENT ME!     *     * @param startAction     * @param stopAction     */    public StartStopPanel(Action startAction, Action stopAction) {        this(startAction, stopAction, new Action[0]);    }    /**     * Creates a new StartStopPanel object.     *     * @param startAction DOCUMENT ME!     * @param stopAction DOCUMENT ME!     * @param closeAction DOCUMENT ME!     */    public StartStopPanel(Action startAction, Action stopAction,        Action closeAction) {        this(startAction, stopAction, new Action[] { closeAction });    }    /**     * DOCUMENT ME!     *     * @param startAction     * @param stopAction     * @param furtherActions some further actions, rendered in the same way     *        (printing, etc.)     */    public StartStopPanel(Action startAction, Action stopAction,        Action[] furtherActions) {        JButton startButton = new JButton(startAction);        startButton.setText(SearchLocale.getString("Button.Search"));        startButton.setIcon(null);        startStopPlaceHolderPanel.add("SearchButton", startButton);        JButton stopButton = new JButton(stopAction);        stopButton.setText(SearchLocale.getString("Button.Cancel"));        stopButton.setIcon(null);        startStopPlaceHolderPanel.add("StopButton", stopButton);        buttonPanel = new JPanel(new GridBagLayout());        GridBagConstraints c = new GridBagConstraints();        c.fill = GridBagConstraints.BOTH;        c.insets = new Insets(0, 2, 0, 2);        c.ipady = 2;        buttonPanel.add(startStopPlaceHolderPanel, c);        for (int i = 0; i < furtherActions.length; i++) {            JButton button = new JButton(furtherActions[i]);            buttonPanel.add(button, c);        }        //enclosing panel needed to avoid resizing of the buttons!        add(buttonPanel);    }    /**     *     *     * @param color DOCUMENT ME!     */    public void setBackgroundColor(Color color) {        buttonPanel.setBackground(color);        super.setBackground(color);    }    /**     * Shows start button     */    public void showStartButton() {        startPanelLayout.first(startStopPlaceHolderPanel);    }    /**     * Shows stop button     */    public void showStopButton() {        startPanelLayout.last(startStopPlaceHolderPanel);    }}

⌨️ 快捷键说明

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