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

📄 shiftalldialog.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     ShiftAllDialog.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.eudico.client.annotator.gui;import mpi.eudico.client.annotator.ElanLocale;import mpi.eudico.client.annotator.commands.Command;import mpi.eudico.client.annotator.commands.ELANCommandFactory;import mpi.eudico.server.corpora.clom.Transcription;import mpi.eudico.server.corpora.clomimpl.abstr.TimeSlotImpl;import mpi.eudico.server.corpora.clomimpl.abstr.TranscriptionImpl;import java.awt.GridBagConstraints;import java.awt.GridBagLayout;import java.awt.GridLayout;import java.awt.Insets;import java.awt.Toolkit;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.WindowAdapter;import java.awt.event.WindowEvent;import java.util.Enumeration;import javax.swing.JButton;import javax.swing.JLabel;import javax.swing.JOptionPane;import javax.swing.JPanel;import javax.swing.JTextField;import javax.swing.WindowConstants;/** * A dialog that lets the user type a shift value for all annotations  (time * slots). * * @author Han Sloetjes * @version Aug 2005 Identity removed */public class ShiftAllDialog extends ClosableDialog implements ActionListener {    private TranscriptionImpl transcription;    private JLabel label;    private JTextField textField;    private JPanel buttonPanel;    private JButton okButton;    private JButton cancelButton;    /**     * Creates the dialog.     *     * @param transcription DOCUMENT ME!     */    public ShiftAllDialog(Transcription transcription) {        super(ELANCommandFactory.getRootFrame(transcription), true);        this.transcription = (TranscriptionImpl) transcription;        initComponents();    }    /**     * This method is called from within the constructor to initialize the     * dialog.     */    private void initComponents() {        label = new JLabel();        textField = new JTextField();        buttonPanel = new JPanel(new GridLayout(1, 2, 6, 2));        okButton = new JButton();        okButton.addActionListener(this);        cancelButton = new JButton();        cancelButton.addActionListener(this);        buttonPanel.add(okButton);        buttonPanel.add(cancelButton);        getContentPane().setLayout(new GridBagLayout());        Insets inset = new Insets(2, 6, 2, 6);        GridBagConstraints gbc = new GridBagConstraints();        gbc.gridx = 0;        gbc.gridy = 0;        gbc.anchor = GridBagConstraints.NORTHWEST;        gbc.fill = GridBagConstraints.HORIZONTAL;        gbc.insets = inset;        gbc.weightx = 1.0;        getContentPane().add(label, gbc);        gbc = new GridBagConstraints();        gbc.gridx = 0;        gbc.gridy = 1;        gbc.anchor = GridBagConstraints.NORTHWEST;        gbc.fill = GridBagConstraints.HORIZONTAL;        gbc.insets = inset;        gbc.weightx = 1.0;        getContentPane().add(textField, gbc);        gbc = new GridBagConstraints();        gbc.gridx = 0;        gbc.gridy = 2;        gbc.anchor = GridBagConstraints.CENTER;        gbc.fill = GridBagConstraints.NONE;        gbc.insets = inset;        getContentPane().add(buttonPanel, gbc);        setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);        addWindowListener(new WindowAdapter() {                public void windowClosing(WindowEvent evt) {                    closeDialog();                }            });        updateLocale();        pack();        int w = 260;        int h = 130;        setSize((getSize().width < w) ? w : getSize().width,            (getSize().height < h) ? h : getSize().height);        setLocationRelativeTo(getParent());        textField.grabFocus();        getRootPane().setDefaultButton(okButton);    }    /**     * Applies localized strings to the ui elements.     */    private void updateLocale() {        setTitle(ElanLocale.getString("ShiftAllDialog.Title"));        label.setText(ElanLocale.getString("ShiftAllDialog.Label"));        okButton.setText(ElanLocale.getString("Button.OK"));        cancelButton.setText(ElanLocale.getString("Button.Cancel"));    }    /**     * Closes the dialog.     */    private void closeDialog() {        setVisible(false);        dispose();    }    /**     * The action performed method.     *     * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)     */    public void actionPerformed(ActionEvent e) {        if (e.getSource() == cancelButton) {            closeDialog();        } else if (e.getSource() == okButton) {            String textValue = textField.getText().trim();            long longValue = 0;            try {                longValue = Long.parseLong(textValue);            } catch (NumberFormatException nfe) {                textField.setText("");                Toolkit.getDefaultToolkit().beep();                return;            }            if (longValue == 0) {                closeDialog();                return;            }            if (longValue < 0) {                if (transcription.getTimeOrder().size() > 0) {                    Enumeration en = transcription.getTimeOrder().elements();                    long firstAlignedTime = 0;                    while (en.hasMoreElements()) {                        TimeSlotImpl ts = (TimeSlotImpl) en.nextElement();                        if (ts.isTimeAligned()) {                            firstAlignedTime = ts.getTime();                            break;                        }                    }                    if (Math.abs(longValue) > firstAlignedTime) {                        String message = ElanLocale.getString(                                "ShiftAllDialog.Warn");                        if (firstAlignedTime == 0) {                            message += (" " + firstAlignedTime);                        } else {                            message += (" -" + firstAlignedTime);                        }                        JOptionPane.showMessageDialog(this, message,                            ElanLocale.getString("Message.Warning"),                            JOptionPane.WARNING_MESSAGE);                        return;                    }                } else {                    closeDialog();                    return;                }            }            closeDialog();            Command c = ELANCommandFactory.createCommand(transcription,                    ELANCommandFactory.SHIFT_ALL_ANNOTATIONS);            c.execute(transcription, new Object[] { new Long(longValue) });        }    }}

⌨️ 快捷键说明

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