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

📄 exporttradtranscript.java

📁 编辑视频文件
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * File:     ExportTradTranscript.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.export;import mpi.eudico.client.annotator.Constants;import mpi.eudico.client.annotator.ElanLocale;import mpi.eudico.client.annotator.Selection;import mpi.eudico.client.annotator.util.AnnotationDataRecord;import mpi.eudico.client.annotator.util.FileExtension;import mpi.eudico.client.util.CheckBoxTableCellRenderer;import mpi.eudico.server.corpora.clom.Annotation;import mpi.eudico.server.corpora.clomimpl.abstr.TierImpl;import mpi.eudico.server.corpora.clomimpl.abstr.TranscriptionImpl;import mpi.eudico.util.TimeRelation;import mpi.util.TimeFormatter;import java.awt.Dimension;import java.awt.Frame;import java.awt.GridBagConstraints;import java.awt.GridBagLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.ItemEvent;import java.awt.event.ItemListener;import java.io.BufferedWriter;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStreamWriter;import java.nio.charset.UnsupportedCharsetException;import java.util.ArrayList;import java.util.Hashtable;import java.util.Iterator;import java.util.List;import java.util.TreeSet;import java.util.Vector;import javax.swing.DefaultCellEditor;import javax.swing.ImageIcon;import javax.swing.JButton;import javax.swing.JCheckBox;import javax.swing.JLabel;import javax.swing.JOptionPane;import javax.swing.JPanel;import javax.swing.JTextField;import javax.swing.border.TitledBorder;import javax.swing.event.ListSelectionEvent;import javax.swing.event.ListSelectionListener;/** * An export dialog for exporting tiers in a 'traditional' transcription style. * This class will probably be obsolete by the time the full-featured text * export  function is fully implemented. * * @author Han Sloetjes */public class ExportTradTranscript extends AbstractTierExportDialog    implements ActionListener, ItemListener, ListSelectionListener {    private JButton downButton;    private JButton upButton;    private JCheckBox labelsCB;    /** ui elements */    private JCheckBox rootTiersCB;    private JCheckBox selectionCB;    private JCheckBox timeCodeCB;    private JCheckBox wrapLinesCB;    private JLabel charPerLineLabel;    private JTextField numCharTF;    /** new line string */    private final String NEW_LINE = "\n";    // some strings    // not visible in the table header    /** white space string */    private final String SPACE = " ";    /** string to separate time codes */    private final String TIME_SEP = " - ";    /** new line char */    private final char NL_CHAR = '\n';    /** white space char */    private final char SPACE_CHAR = ' ';    /** space between label and contents */    private final int LABEL_VALUE_MARGIN = 3;    /** default line width */    private final int NUM_CHARS = 80;    /**     * Constructor.     *     * @param parent parent frame     * @param modal the modal/blocking attribute     * @param transcription the transcription to export from     * @param selection the current selection     */    public ExportTradTranscript(Frame parent, boolean modal,        TranscriptionImpl transcription, Selection selection) {        super(parent, modal, transcription, selection);        makeLayout();        extractTiers();        postInit();    }    /**     * The action performed event handling.     *     * @param ae the action event     */    public void actionPerformed(ActionEvent ae) {        Object source = ae.getSource();        if (source == upButton) {            moveUp();        } else if (source == downButton) {            moveDown();        } else {            super.actionPerformed(ae);        }    }    /**     * The item state changed handling.     *     * @param ie the ItemEvent     */    public void itemStateChanged(ItemEvent ie) {        if (ie.getSource() == wrapLinesCB) {            if (wrapLinesCB.isSelected()) {                numCharTF.setEnabled(true);                numCharTF.setBackground(Constants.SHAREDCOLOR4);                if ((numCharTF.getText() != null) ||                        (numCharTF.getText().length() == 0)) {                    numCharTF.setText("" + NUM_CHARS);                }                numCharTF.requestFocus();            } else {                numCharTF.setEnabled(false);                numCharTF.setBackground(Constants.DEFAULTBACKGROUNDCOLOR);            }        } else if (ie.getSource() == rootTiersCB) {            extractTiers();        }    }    /**     * Updates the checked state of the export checkboxes.     *     * @param lse the list selection event     */    public void valueChanged(ListSelectionEvent lse) {        if ((model != null) && lse.getValueIsAdjusting()) {            int b = lse.getFirstIndex();            int e = lse.getLastIndex();            int col = model.findColumn(EXPORT_COLUMN);            for (int i = b; i <= e; i++) {                if (tierTable.isRowSelected(i)) {                    model.setValueAt(Boolean.TRUE, i, col);                }            }        }    }    /**     * Extract candidate tiers for export.     */    protected void extractTiers() {        if (model != null) {            for (int i = model.getRowCount() - 1; i >= 0; i--) {                model.removeRow(i);            }            if (transcription != null) {                Vector v = transcription.getTiers();                TierImpl t;                boolean rootsOnly = rootTiersCB.isSelected();                for (int i = 0; i < v.size(); i++) {                    t = (TierImpl) v.get(i);                    if (rootsOnly) {                        // add only root tiers                        if (t.getParentTier() == null) {                            model.addRow(new Object[] { Boolean.TRUE, t.getName() });                        }                    } else {                        // add all                        if (t.getParentTier() == null) {                            model.addRow(new Object[] { Boolean.TRUE, t.getName() });                        } else {                            model.addRow(new Object[] { Boolean.FALSE, t.getName() });                        }                    }                }            }            if (model.getRowCount() > 1) {                upButton.setEnabled(true);                downButton.setEnabled(true);            } else {                upButton.setEnabled(false);                downButton.setEnabled(false);            }        } else {            upButton.setEnabled(false);            downButton.setEnabled(false);        }    }    /**     * Initializes UI elements.     */    protected void makeLayout() {        super.makeLayout();        rootTiersCB = new JCheckBox();        charPerLineLabel = new JLabel();        wrapLinesCB = new JCheckBox();        numCharTF = new JTextField(4);        timeCodeCB = new JCheckBox();        labelsCB = new JCheckBox();        selectionCB = new JCheckBox();        upButton = new JButton();        downButton = new JButton();        try {            ImageIcon upIcon = new ImageIcon(this.getClass().getResource("/toolbarButtonGraphics/navigation/Up16.gif"));            ImageIcon downIcon = new ImageIcon(this.getClass().getResource("/toolbarButtonGraphics/navigation/Down16.gif"));            upButton.setIcon(upIcon);            downButton.setIcon(downIcon);        } catch (Exception ex) {            upButton.setText("Up");            downButton.setText("Down");        }        GridBagConstraints gridBagConstraints;        rootTiersCB.setSelected(true);        rootTiersCB.addItemListener(this);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 0;        gridBagConstraints.gridwidth = 2;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        tierSelectionPanel.add(rootTiersCB, gridBagConstraints);        model.setColumnIdentifiers(new String[] { EXPORT_COLUMN, TIER_NAME_COLUMN });        tierTable.getColumn(EXPORT_COLUMN).setCellEditor(new DefaultCellEditor(                new JCheckBox()));        tierTable.getColumn(EXPORT_COLUMN).setCellRenderer(new CheckBoxTableCellRenderer());        tierTable.getColumn(EXPORT_COLUMN).setMaxWidth(30);        tierTable.setShowVerticalLines(false);        tierTable.setTableHeader(null);        tierTable.getSelectionModel().addListSelectionListener(this);        upButton.addActionListener(this);        downButton.addActionListener(this);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 2;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        tierSelectionPanel.add(upButton, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 1;        gridBagConstraints.gridy = 2;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        tierSelectionPanel.add(downButton, gridBagConstraints);        optionsPanel.setLayout(new GridBagLayout());        wrapLinesCB.addItemListener(this);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 0;        gridBagConstraints.gridwidth = 3;        gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;        gridBagConstraints.weightx = 1.0;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(wrapLinesCB, gridBagConstraints);        JPanel fill = new JPanel();        Dimension fillDim = new Dimension(30, 10);        fill.setPreferredSize(fillDim);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 1;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(fill, gridBagConstraints);        numCharTF.setEnabled(false);        numCharTF.setBackground(Constants.DEFAULTBACKGROUNDCOLOR);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 1;        gridBagConstraints.gridy = 1;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(numCharTF, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 2;        gridBagConstraints.gridy = 1;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(charPerLineLabel, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 2;        gridBagConstraints.gridwidth = 3;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(labelsCB, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 3;        gridBagConstraints.gridwidth = 3;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(timeCodeCB, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 4;        gridBagConstraints.gridwidth = 3;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(labelsCB, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 5;        gridBagConstraints.gridwidth = 3;        gridBagConstraints.fill = GridBagConstraints.NONE;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.insets = insets;        optionsPanel.add(selectionCB, gridBagConstraints);        gridBagConstraints = new GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 2;        gridBagConstraints.anchor = GridBagConstraints.WEST;        gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;        gridBagConstraints.weightx = 1.0;        gridBagConstraints.insets = insets;        getContentPane().add(optionsPanel, gridBagConstraints);        updateLocale();    }    /**     * Shows a warning/error dialog with the specified message string.     *     * @param message the message to display     */    protected void showWarningDialog(String message) {        JOptionPane.showMessageDialog(this, message,            ElanLocale.getString("Message.Warning"), JOptionPane.WARNING_MESSAGE);    }    /**     * Starts the actual export after performing some checks.     *     * @return true if export succeeded, false oherwise     *     * @throws IOException DOCUMENT ME!     */    protected boolean startExport() {        List selectedTiers = getSelectedTiers();        if (selectedTiers.size() == 0) {            JOptionPane.showMessageDialog(this,                ElanLocale.getString("ExportTradTranscript.Message.NoTiers"),                ElanLocale.getString("Message.Warning"),                JOptionPane.WARNING_MESSAGE);            return false;        }        // check the chars per line value        int charsPerLine = Integer.MAX_VALUE;        if (wrapLinesCB.isSelected()) {            String textValue = numCharTF.getText().trim();            try {                charsPerLine = Integer.parseInt(textValue);            } catch (NumberFormatException nfe) {                showWarningDialog(ElanLocale.getString(                        "ExportTradTranscript.Message.InvalidNumber"));                numCharTF.selectAll();                numCharTF.requestFocus();                return false;            }        }        // prompt for file name and location

⌨️ 快捷键说明

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