jm.gui.sketch.SketchRuler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmusic Show documentation
Show all versions of jmusic Show documentation
JMusic - Java Music Library
The newest version!
/*
:40 2001
Copyright (C) 2000 Andrew Sorensen & Andrew Brown
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 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package jm.gui.sketch;
import java.awt.*;
import java.awt.event.*;
/**
* A jMusic tool which disketchScorelays a score as a simple
* 'piano roll' disketchScorelay in a window.
* The tool disketchScorelays a jMusic class as a simple piano roll view. To use it write:
* new ViewScore(scoreName);
* Where scoreName is the jMusic Score object.
* Alternately:
* new ViewScore(scoreName, xpos, ypos);
* Where xpos and ypos are intergers sketchScoreecifying the topleft position of the window.
* This is useful if you want to use ViewScore in conjunction with some other GUI interface
* which is already positioned in the top left corner of the screen.
*
* @author Andrew Brown and Andrew Troedson
* @version 1.0, Sun Feb 25 18:43
*/
//--------------
//Ruler class!!
//--------------
public class SketchRuler extends Canvas implements MouseListener, MouseMotionListener, KeyListener {
//attributes
private int startX;
private int height = 15;
private int barNumbCount = 2;
private SketchScore sketchScore;
private Font font = new Font("Helvetica", Font.PLAIN, 10);
public SketchRuler(SketchScore sketchScore) {
super();
this.sketchScore = sketchScore;
this.setSize((int) (sketchScore.score.getEndTime() * sketchScore.beatWidth), height);
this.setBackground(Color.lightGray);
this.addMouseListener(this);
this.addMouseMotionListener(this);
this.addKeyListener(this);
this.setCursor(new Cursor(13));
}
/**
* Report on the set height of this panel
*/
public int getHeight() {
return height;
}
public void paint(Graphics g) {
double beatWidth = sketchScore.beatWidth;
g.setFont(font);
for (int i = 0; i < (sketchScore.getSketchScoreArea().getNewWidth()); i++) {
int xLoc = (int) Math.round(i * beatWidth);
if (i % barNumbCount == 0) {
g.drawLine(xLoc, 0, xLoc, height);
if (beatWidth > 15) g.drawString("" + i, xLoc + 2, height - 2);
} else {
g.drawLine(xLoc, height / 2, xLoc, height);
}
}
}
// get the position of inital mouse click
public void mousePressed(MouseEvent e) {
//System.out.println("Pressed");
this.setCursor(new Cursor(10));
startX = e.getX();
}
//Mouse Listener stubs
public void mouseClicked(MouseEvent e) {
}
public void mouseEntered(MouseEvent e) {
}
public void mouseExited(MouseEvent e) {
}
public void mouseReleased(MouseEvent e) {
this.setCursor(new Cursor(13));
repaint();
}
//mouseMotionListener stubs
public void mouseMoved(MouseEvent e) {
}
public void mouseDragged(MouseEvent e) {
//System.out.println("Dragged");
double beatWidth = sketchScore.beatWidth;
beatWidth += (double) ((double) e.getX() - (double) startX) / 5.0;
if (beatWidth < 1.0) beatWidth = 1.0;
if (beatWidth > 256.0) beatWidth = 256.0;
//System.out.println("beatWidth = "+beatWidth);
sketchScore.beatWidth = beatWidth;
startX = e.getX();
sketchScore.update();
}
// key listener stubs
public void keyPressed(KeyEvent e) {
}
public void keyReleased(KeyEvent e) {
}
public void keyTyped(KeyEvent e) {
if (e.getKeyChar() == '\b') {
repaint();
}
}
}