]> ruin.nu Git - moosique.git/blobdiff - MooTrackView.java
inte helt klar
[moosique.git] / MooTrackView.java
index f8fe20c4b7400ade41c0b8ea990957d27290b59e..4b033c1f4184fe7c8395b7092d4301eb74fdd0b9 100644 (file)
@@ -20,12 +20,14 @@ public class MooTrackView extends JPanel {
        private JMenuItem menuItem;
        private ArrayList rects;
        protected static int viewLength = 0;
+       protected static int extraHeight = 0;
        public static final int NOTE_HEIGHT = 10, NOTE_WIDTH = 40, VIEW_WIDTH = 200;
 
        public MooTrackView (Track track) {
                super(true);
                this.track = track;
 
+               extraHeight = Toolkit.getDefaultToolkit().getScreenSize().height - 150;
                // Configures panel
                setBackground(Color.white);
                setBorder(BorderFactory.createLineBorder(Color.black));
@@ -35,13 +37,9 @@ public class MooTrackView extends JPanel {
                // Creates temporary variables
                MidiEvent note;
                MooNoteElement elem;
-               int extraHeight = Toolkit.getDefaultToolkit().getScreenSize().height - 150;
-               int x, y, height;
-               int beatsPerSixteenth = Moosique.getSequence().getResolution() / 4;
                rects = new ArrayList(track.size() / 2);
 
                // Places note elements
-               Insets insets = getInsets();
                for (int i = 0; i < track.size(); i++) {
                        note = track.get(i);
                        if (note instanceof MooNote) {
@@ -50,18 +48,12 @@ public class MooTrackView extends JPanel {
                                elem = new MooNoteElement(this, mn);
                                add(elem);
 
+                               layoutElement(elem,false);
+
                                // Moves the note element to the appropriate place.
-                               x = insets.left;
-                               y = insets.top + (int)(mn.getTick() / beatsPerSixteenth) * NOTE_HEIGHT;
-                               height = (mn.getDuration() / beatsPerSixteenth) * NOTE_HEIGHT;
-                               if (height == 0) height = NOTE_HEIGHT;
-                               Rectangle r = new Rectangle(x, y, NOTE_WIDTH, height);
-                               while(isOccupied(r)) r.translate(NOTE_WIDTH, 0);
-                               elem.setBounds(r);
-                               rects.add(r);
-                               if (viewLength < (y + height)) viewLength = y + height;
                        }
                        setPreferredSize(new Dimension(VIEW_WIDTH, viewLength + extraHeight));
+
                }
                validate();
 
@@ -74,6 +66,38 @@ public class MooTrackView extends JPanel {
                addMouseListener(new PopupListener());
        }
 
+       public void layoutElement(MooNoteElement elem, boolean old){
+               Rectangle r = new Rectangle();
+               if(old){
+                       r =     elem.getBounds(r);
+                       for (Iterator i = rects.iterator(); i.hasNext();){
+                               Object ob = i.next();
+                               if (r.equals(ob)){
+                                       rects.remove(ob);
+                                       break;
+                               }
+                       }
+               }
+
+               int ticksPerSixteenth = Moosique.getSequence().getResolution() / 4;
+               MooNote mn = elem.getNote();
+               Insets insets = getInsets();
+               int x, y, height;
+               x = insets.left;
+               y = insets.top + (int)(mn.getTick() / ticksPerSixteenth) * NOTE_HEIGHT;
+               height = (mn.getDuration() / ticksPerSixteenth) * NOTE_HEIGHT;
+               if (height == 0) height = NOTE_HEIGHT;
+               r = new Rectangle(x, y, NOTE_WIDTH, height);
+               while(isOccupied(r)) r.translate(NOTE_WIDTH, 0);
+               elem.setBounds(r);
+               rects.add(r);
+               if (viewLength < (y + height)){
+                       viewLength = y + height;
+                       if(old)setPreferredSize(new Dimension(VIEW_WIDTH, viewLength + extraHeight));
+               }
+
+       }
+
        public Track getTrack() {
                return track;
        }