]> ruin.nu Git - moosique.git/blobdiff - MooTrackView.java
no message
[moosique.git] / MooTrackView.java
index ed2bcc62fbc39c13147bf8ea6bf80bde221401e8..abf79cada0137b25a9d684b29c4efe2ebe1f4a07 100644 (file)
@@ -1,67 +1,64 @@
 import javax.swing.*;
-import java.awt.event.MouseListener;
-import java.awt.event.MouseEvent;
-import java.awt.event.MouseMotionAdapter;
-import java.awt.event.MouseMotionListener;
-import java.awt.Dimension;
+import java.awt.event.*;
 import java.awt.*;
-//import java.awt.Graphics;
-//import java.awt.Graphics2D;
-//import java.awt.Rectangle;
 
 /**
- * 
+ * Graphical representation of a MIDI track.
  * 
  * @author  Andersson, Andreen, Lanneskog, Pehrson
  * @version 1
  */
  
-public class MooTrackView extends JPanel{
+public class MooTrackView extends JPanel {
 
        private MooTrackTitle title;
-       private noteView notes;
-       
+       private NoteArea notes;
+       private Rectangle box;
+       //private Rectangle box2;
        /** 
         * Creates 
         */
        public MooTrackView () {
-       this.addMouseMotionListener(doScrollRectToVisible);
-       setLayout(new GridLayout(2,0));
-       notes = new noteView();
-       
-       add(trackTitle());
-       add(noteEdit());
-       }
-       
-       MouseMotionListener doScrollRectToVisible = new MouseMotionAdapter() {
-       public void mouseDragged(MouseEvent e) {
-               Rectangle r = new Rectangle(e.getX(), e.getY(), 1, 1);
-               ((JPanel)e.getSource()).scrollRectToVisible(r);
-       }
-       };
+               setLayout(new BorderLayout());
+               this.setBorder(BorderFactory.createLineBorder(Color.black));
+               add(trackTitle(), BorderLayout.NORTH);
+               add(noteView(), BorderLayout.CENTER);
+               }
        
        private JPanel trackTitle () {
-               setPreferredSize(new Dimension(PANEL_WIDTH, TITLE_HEIGHT));
                title = new MooTrackTitle();
+               title.setPreferredSize(new Dimension(PANEL_WIDTH, TITLE_HEIGHT));
+               title.setBorder(BorderFactory.createLineBorder(Color.black));
                return title;
        }
-       
-       private JPanel noteEdit () {
-               setPreferredSize(new Dimension(PANEL_WIDTH, NOTEVIEW_HEIGHT));
-               notes = new noteView();
+
+       private JPanel noteView () {
+               notes = new NoteArea(); 
                notes.setBackground(Color.white);
-               notes.setBorder(BorderFactory.createLineBorder(Color.black));
-               return notes;
+               notes.setBorder(BorderFactory.createLineBorder(Color.black));   
+               return notes;           
        }
        
-       class noteView extends JPanel {
-               public noteView () {
-                       setLayout(new FlowLayout());
+       class NoteArea extends JPanel {
+               public void RectanglePanel() {
+                       setPreferredSize(new Dimension(20, 20));
                }
                
-       }       
+               public void paintComponent(Graphics g) {
+                       super.paintComponent(g);
+                       Graphics2D g2 = (Graphics2D)g;
+                       for (int c=0;c<1000;c=c+20) {
+                               int r=0;
+                               for (r=0;r<200;r=r+20) {
+                                       box = new Rectangle(r,c,20,20);
+                                       g2.setColor(Color.gray);
+                                       g2.draw(box);
+                               }
+                       }
+               }
+       }
 
        private static final int PANEL_WIDTH = 65;
-       private static final int TITLE_HEIGHT = 50;
+       private static final int TITLE_HEIGHT = 40;
        private static final int NOTEVIEW_HEIGHT = 200;
 }