📄 selectionpanel.java
字号:
/* * File: SelectionPanel.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;import mpi.util.TimeFormatter;import java.awt.FlowLayout;import javax.swing.JLabel;import javax.swing.JPanel;/** * A few labels to present a few things from a selection - begin time - end * time - duration time */public class SelectionPanel extends JPanel implements ElanLocaleListener, SelectionListener { private JLabel selectionLabel; private JLabel beginLabel; private JLabel endLabel; private JLabel lengthLabel; private long begin; private long end; private ViewerManager2 vm; /** * Creates a new SelectionPanel instance * * @param theVM DOCUMENT ME! */ public SelectionPanel(ViewerManager2 theVM) { vm = theVM; init(); } private void init() { FlowLayout flowLayout = new FlowLayout(FlowLayout.LEFT, 0, 0); setLayout(flowLayout); // declare first to enable set length lengthLabel = new JLabel(); lengthLabel.setFont(Constants.SMALLFONT); selectionLabel = new JLabel(); selectionLabel.setFont(Constants.SMALLFONT); add(selectionLabel); beginLabel = new JLabel(); beginLabel.setFont(Constants.SMALLFONT); setBegin(0); add(beginLabel); JLabel separator = new JLabel(" - "); separator.setFont(Constants.SMALLFONT); add(separator); endLabel = new JLabel(); endLabel.setFont(Constants.SMALLFONT); setEnd(0); add(endLabel); JLabel spaces = new JLabel(" "); spaces.setFont(Constants.SMALLFONT); add(spaces); add(lengthLabel); ElanLocale.addElanLocaleListener(vm.getTranscription(), this); updateLocale(); vm.getSelection().addSelectionListener(this); } /** * DOCUMENT ME! * * @param str DOCUMENT ME! */ public void setNameLabel(String str) { selectionLabel.setText(str + ": "); } /** * DOCUMENT ME! * * @param begin DOCUMENT ME! */ public void setBegin(long begin) { this.begin = begin; beginLabel.setText(TimeFormatter.toString(begin)); setLength(); } /** * DOCUMENT ME! * * @param end DOCUMENT ME! */ public void setEnd(long end) { this.end = end; endLabel.setText(TimeFormatter.toString(end)); setLength(); } // private void setLength(long length) private void setLength() { lengthLabel.setText("" + (end - begin)); } /** * method from ElanLocaleListener */ public void updateLocale() { setNameLabel(ElanLocale.getString( "MediaPlayerControlPanel.Selectionpanel.Name")); } /** * DOCUMENT ME! */ public void updateSelection() { long begin = vm.getSelection().getBeginTime(); long end = vm.getSelection().getEndTime(); // make sure it does not look ugly in the panel if selectionBegin == selectionEnd if (begin == end) { begin = 0; end = 0; } setBegin(begin); setEnd(end); }}//end of SelectionPanel
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -