📄 exporttabdialog.java
字号:
/* * File: ExportTabDialog.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.ElanLocale;import mpi.eudico.client.annotator.Selection;import mpi.eudico.client.annotator.util.FileExtension;import mpi.eudico.client.util.CheckBoxTableCellRenderer;import mpi.eudico.client.util.Transcription2TabDelimitedText;import mpi.eudico.server.corpora.clom.Transcription;import mpi.eudico.server.corpora.clomimpl.abstr.MediaDescriptor;import mpi.eudico.server.corpora.clomimpl.abstr.TierImpl;import java.awt.Dimension;import java.awt.Frame;import java.awt.GridBagConstraints;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.io.File;import java.io.IOException;import java.util.ArrayList;import java.util.List;import java.util.Vector;import javax.swing.ButtonGroup;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.JRadioButton;import javax.swing.event.ChangeEvent;import javax.swing.event.ChangeListener;import javax.swing.event.ListSelectionEvent;import javax.swing.event.ListSelectionListener;/** * A dialog for exporting a set of tiers to a tab delimited text file. Provides * ui elements to customize the output. * * @author Han Sloetjes */public class ExportTabDialog extends AbstractTierExportDialog implements ActionListener, ListSelectionListener, ChangeListener { private JButton downButton; private JButton upButton; private JCheckBox btCheckBox; private JCheckBox correctTimesCB; private JCheckBox durCheckBox; private JCheckBox etCheckBox; private JCheckBox hhmmssmsCheckBox; private JCheckBox msCheckBox; private JCheckBox ssmsCheckBox; private JCheckBox timecodeCB; private JLabel timeCodesLabel; private JLabel timeFormatLabel; private JRadioButton ntscTimecodeRB; private JRadioButton palTimecodeRB; /** * Creates a new ExportTabDialog2 instance * * @param parent the parent frame * @param modal the modal property * @param transcription the transcription to export * @param selection the selection object */ public ExportTabDialog(Frame parent, boolean modal, Transcription transcription, Selection selection) { super(parent, modal, transcription, selection); makeLayout(); extractTiers(); postInit(); downButton.requestFocus(); } /** * 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); } } /** * Enables / disables PAL and NTSC radio buttons. * * @param ce change event */ public void stateChanged(ChangeEvent ce) { palTimecodeRB.setEnabled(timecodeCB.isSelected()); ntscTimecodeRB.setEnabled(timecodeCB.isSelected()); } /** * 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; for (int i = 0; i < v.size(); i++) { t = (TierImpl) v.get(i); // add all if (i == 0) { 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(); // add more upButton = new JButton(); downButton = new JButton(); timeCodesLabel = new JLabel(); timeFormatLabel = new JLabel(); btCheckBox = new JCheckBox(); etCheckBox = new JCheckBox(); durCheckBox = new JCheckBox(); hhmmssmsCheckBox = new JCheckBox(); ssmsCheckBox = new JCheckBox(); msCheckBox = new JCheckBox(); timecodeCB = new JCheckBox(); palTimecodeRB = new JRadioButton(); ntscTimecodeRB = new JRadioButton(); ButtonGroup group = new ButtonGroup(); correctTimesCB = new JCheckBox(); 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"); } 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 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); // options 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(restrictCheckBox, gridBagConstraints); gridBagConstraints = new GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 1; gridBagConstraints.gridwidth = 3; gridBagConstraints.fill = GridBagConstraints.HORIZONTAL; gridBagConstraints.weightx = 1.0; gridBagConstraints.anchor = GridBagConstraints.WEST; gridBagConstraints.insets = insets; optionsPanel.add(correctTimesCB, gridBagConstraints); JPanel fill = new JPanel(); Dimension fillDim = new Dimension(30, 10); fill.setPreferredSize(fillDim); gridBagConstraints = new GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 2; gridBagConstraints.gridwidth = 3; gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -