📄 mediaplayercontrolslider.java
字号:
/* * File: MediaPlayerControlSlider.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.eudico.client.annotator.viewer.AbstractViewer;import mpi.eudico.client.mediacontrol.ControllerEvent;import mpi.eudico.client.mediacontrol.StopEvent;import mpi.eudico.client.mediacontrol.TimeEvent;import java.awt.Dimension;import java.awt.Graphics;import java.awt.Graphics2D;import java.awt.RenderingHints;import java.awt.event.MouseAdapter;import java.awt.event.MouseEvent;import java.awt.event.MouseMotionAdapter;/** * Class which makes up a mediaplayer control slider Used for setting media * time, making selections */class MediaPlayerControlSlider extends AbstractViewer { private static Dimension SLIDERDIMENSION = new Dimension(600, 30); private int x1; //value of slider is x3 //x1 is left coordinate of horizontal lines //x2 is right coordinate of horizontal lines //x3 is x-coordinate of vertical line private int x2; //value of slider is x3 //x1 is left coordinate of horizontal lines //x2 is right coordinate of horizontal lines //x3 is x-coordinate of vertical line private int x3; //value of slider is x3 //x1 is left coordinate of horizontal lines //x2 is right coordinate of horizontal lines //x3 is x-coordinate of vertical line private int y1 = 10; //y1 is y-coordinate of highest horizontal line private int y2 = 28; //y2 is y-coordinate of lowest horizontal line private boolean bDraggedInMediaSlider = false; private int dragStart = -1; private int dragEnd = -1; private float sliderValue; /** * Constructor */ MediaPlayerControlSlider() { super(); setPreferredSize(SLIDERDIMENSION); //setBorder(BorderFactory.createLineBorder(Color.black)); setValue(0); addMouseListener(new MediaPlayerControlSliderMouseListener()); addMouseMotionListener(new MediaPlayerControlSliderMouseMotionListener()); } //called from ElanFrame when it is resized // public static void setSliderDimension(int width) // { // SLIDERDIMENSION = new Dimension(width - 20, 30); // } public void setBDraggedInMediaSlider(boolean b) { bDraggedInMediaSlider = b; } /** * DOCUMENT ME! * * @return DOCUMENT ME! */ public boolean getBDraggedInMediaSlider() { return bDraggedInMediaSlider; } /** * DOCUMENT ME! * * @param dragStart DOCUMENT ME! */ public void setDragStart(int dragStart) { this.dragStart = dragStart; } /** * DOCUMENT ME! * * @return DOCUMENT ME! */ public int getDragStart() { return dragStart; } /** * DOCUMENT ME! * * @param dragEnd DOCUMENT ME! */ public void setDragEnd(int dragEnd) { this.dragEnd = dragEnd; } /** * DOCUMENT ME! * * @return DOCUMENT ME! */ public int getDragEnd() { return dragEnd; } /** * Sets minimum size of the slider See also getPreferredSize * * @param xcoord DOCUMENT ME! */ // public Dimension getMinimumSize() // { // return SLIDERDIMENSION; // } /** * Sets minimum size of the slider See also getMinimumSize * * @param xcoord DOCUMENT ME! */ // public Dimension getPreferredSize() // { // return SLIDERDIMENSION; // } /** * Sets media time when clicked on the slider * * @param xcoord DOCUMENT ME! */ public void updateMediaTime(int xcoord) { long lngTime = (long) ((getMediaDuration() * xcoord) / getWidth()); if (lngTime > getMediaDuration()) { lngTime = getMediaDuration(); } else if (lngTime < 0) { lngTime = 0; } setMediaTime(lngTime); } /** * Sets the value of the slider * * @param value_in The value the slider should be set at */ public void setValue(float value_in) { sliderValue = value_in; // float f = value_in * (getWidth() - 1); // int value = Math.round(f); // if (value < 0) { value = 0; } // if (value > getWidth() - 1) { value = getWidth() - 1; } // x3 = value; // x1 = x3 - 5; // x2 = x3 + 5; // if (x2 > getWidth() - 1) { x2 = getWidth() - 1; } repaint(); } /** * Handles the painting of the slider Consists of a vertical bar, a * crosshair and maybe a selection * * @param g DOCUMENT ME! */ public void paintComponent(Graphics g) { Graphics2D g2 = (Graphics2D) g; g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON); g2.setColor(Constants.MEDIAPLAYERCONTROLSLIDERSELECTIONCOLOR); // g2.draw3DRect(0, 15, SLIDERDIMENSION.width, 4, false); g2.draw3DRect(0, 15, getWidth(), 4, false); //painting of selection in slider int selectedBeginTime = (int) getSelectionBeginTime(); int selectedEndTime = (int) getSelectionEndTime(); int duration = (int) getMediaDuration(); if (duration == 0) { return; } if (selectedBeginTime != selectedEndTime) { // int begin = (int)((SLIDERDIMENSION.width * selectedBeginTime) / duration); // int end = (int)((SLIDERDIMENSION.width * selectedEndTime) / duration); int begin = (int) ((getWidth() * selectedBeginTime) / duration); int end = (int) ((getWidth() * selectedEndTime) / duration); g2.fillRect(begin, 15, end - begin, 4); //blue rectangle outside of selection //g2.setColor(Color.blue.darker()); //g2.drawRect(begin - 1, 15 - 1, end - begin + 1, 4 + 1); } //painting of crosshair float f = sliderValue * (getWidth() - 1); int value = (int) Math.floor(f); if (value < 0) { value = 0; } if (value > (getWidth() - 1)) { value = getWidth() - 1; } x3 = value; x1 = x3 - 5; x2 = x3 + 5; if (x2 > (getWidth() - 1)) { x2 = getWidth() - 1; } g2.setColor(Constants.MEDIAPLAYERCONTROLSLIDERCROSSHAIRCOLOR); g2.drawLine(x1, y1, x2, y1); //highest horizontal line g2.drawLine(x1, y2, x2, y2); //lowest horizontal line g2.drawLine(x3, y1, x3, y2); //vertical line } /** * DOCUMENT ME! */ public void updateLocale() { } /** * DOCUMENT ME! */ public void updateActiveAnnotation() { } /** * DOCUMENT ME! */ public void updateSelection() { repaint(); } /** * DOCUMENT ME! * * @param event DOCUMENT ME! */ public void controllerUpdate(ControllerEvent event) { if (event instanceof TimeEvent || event instanceof StopEvent) { Dimension d = getPreferredSize(); float position = (getMediaTime() * 1.0f) / (getMediaDuration() * 1.0f); setValue(position); } } /** * Used for handling mouse events on the slider */ private class MediaPlayerControlSliderMouseListener extends MouseAdapter { /** * Creates a new MediaPlayerControlSliderMouseListener instance */ MediaPlayerControlSliderMouseListener() { } /** * DOCUMENT ME! * * @param e DOCUMENT ME! */ public void mousePressed(MouseEvent e) { int intX = e.getX(); updateMediaTime(intX); setDragStart(intX); } /** * DOCUMENT ME! * * @param e DOCUMENT ME! */ public void mouseReleased(MouseEvent e) { setBDraggedInMediaSlider(false); setDragStart(-1); setDragEnd(-1); } } //end of MediaPlayerControlSliderMouseListener /** * Used for handling drag mouse events on the slider */ private class MediaPlayerControlSliderMouseMotionListener extends MouseMotionAdapter { /** * DOCUMENT ME! * * @param e DOCUMENT ME! */ public void mouseDragged(MouseEvent e) { if (!e.isShiftDown()) { updateMediaTime(e.getX()); return; } setBDraggedInMediaSlider(true); setDragEnd(e.getX()); int duration = (int) getMediaDuration(); long lngBeginSelectionTime = (duration * getDragStart()) / getWidth(); long lngEndSelectionTime = (duration * getDragEnd()) / getWidth(); //used when dragging the mouse from right to left if (lngBeginSelectionTime > lngEndSelectionTime) { long temp = lngBeginSelectionTime; lngBeginSelectionTime = lngEndSelectionTime; lngEndSelectionTime = temp; } setSelection(lngBeginSelectionTime, lngEndSelectionTime); updateMediaTime(getDragEnd()); } } //end of MediaPlayerControlSliderMouseMotionListener}//end of MediaPlayerControlSlider
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -