]> ruin.nu Git - moosique.git/blobdiff - MooTrackView.java
Fixed the move function (still buggy tho)
[moosique.git] / MooTrackView.java
index a591d374853bd246647f16dd0c087ce38f58e335..bd7d7bb0b9c5a88aaf1d9909f046b27f3e0e8cc5 100644 (file)
@@ -134,7 +134,7 @@ public class MooTrackView extends JPanel {
 
                // Calculates coordinates.
                x = insets.left;
-               y = insets.top + (int)(mn.getTick() / ticksPerSixteenth) * NOTE_HEIGHT;
+               y = insets.top + Math.round(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);
@@ -318,6 +318,24 @@ public class MooTrackView extends JPanel {
                }
        }
 
+       /**
+        * Moves the current selection, if the mouse was pressed on a note element
+        * and then released in another row.
+        * @param srcY  the y-coordinate of the point in which the mouse button was pressed
+        * @param destY the y-coordinate of the point in which the mouse button was released
+        */
+       public void maybeMoveSelectedNotes(int srcY, int destY) {
+               int srcRow = (srcY - insets.top) / NOTE_HEIGHT;
+               int destRow = (destY - insets.top) / NOTE_HEIGHT;
+               long timeDiff = (long)(ticksPerSixteenth * (destRow - srcRow));
+               Iterator it = selection.iterator();
+               while(it.hasNext()) {
+                       MooNoteElement elem = (MooNoteElement)it.next();
+                       elem.getNote().setTick(elem.getNote().getTick() + timeDiff);
+                       layoutElement(elem, true);
+               }
+       }
+
        /**
         * Shows a popup-menu with options for the current selection of note elements.
         * @param c     the component over which to display the menu
@@ -380,13 +398,6 @@ public class MooTrackView extends JPanel {
                        maybeShowPopup(e);
                }
 
-               /**
-                * Selects the notes within the area that was selected.
-                */
-               public void mouseDragged(MouseEvent e) {
-                       
-               }
-
                /**
                 * Shows the menu if an OS-specific popup-trigger was activated.
                 */