summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-12-30 13:41:16 +0000
committerCarl Hetherington <carl@carlh.net>2011-12-30 13:41:16 +0000
commit42aea0b9fd7877420b58233c7c5979c04a02b1f1 (patch)
tree863d264d1d4a93465ea276b2ee2f75547120f5c8 /gtk2_ardour
parent976e16340615caa446bf2d1987ced37118e249b3 (diff)
Clean up comments to create_note_at, since it no longers snaps its length parameter. Move the 1 tick shortening out of the method for the same reason. Make sure that create drags make notes with a minimum length of 1 tick (#4600).
git-svn-id: svn://localhost/ardour2/branches/3.0@11116 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_drag.cc8
-rw-r--r--gtk2_ardour/midi_region_view.cc38
-rw-r--r--gtk2_ardour/midi_region_view.h2
3 files changed, 24 insertions, 24 deletions
diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc
index d03084e2d0..02e5f91f7d 100644
--- a/gtk2_ardour/editor_drag.cc
+++ b/gtk2_ardour/editor_drag.cc
@@ -4446,11 +4446,15 @@ NoteCreateDrag::finished (GdkEvent* event, bool had_movement)
framecnt_t length = abs (_note[0] - _note[1]);
framecnt_t const g = grid_frames (start);
+ double const one_tick = 1 / Timecode::BBT_Time::ticks_per_bar_division;
+
if (_editor->snap_mode() == SnapNormal && length < g) {
- length = g;
+ length = g - one_tick;
}
- _region_view->create_note_at (start, _drag_rect->property_y1(), _region_view->region_frames_to_region_beats (length), true, false);
+ double const length_beats = max (one_tick, _region_view->region_frames_to_region_beats (length));
+
+ _region_view->create_note_at (start, _drag_rect->property_y1(), length_beats, false);
}
double
diff --git a/gtk2_ardour/midi_region_view.cc b/gtk2_ardour/midi_region_view.cc
index 43532f145c..0437b4b938 100644
--- a/gtk2_ardour/midi_region_view.cc
+++ b/gtk2_ardour/midi_region_view.cc
@@ -482,7 +482,12 @@ MidiRegionView::button_release (GdkEventButton* ev)
beats = 1;
}
- create_note_at (editor.pixel_to_frame (event_x), event_y, beats, true, true);
+ /* Shorten the length by 1 tick so that we can add a new note at the next
+ grid snap without it overlapping this one.
+ */
+ beats -= 1.0 / Timecode::BBT_Time::ticks_per_bar_division;
+
+ create_note_at (editor.pixel_to_frame (event_x), event_y, beats, true);
}
break;
@@ -496,7 +501,12 @@ MidiRegionView::button_release (GdkEventButton* ev)
beats = 1;
}
- create_note_at (editor.pixel_to_frame (event_x), event_y, beats, true, true);
+ /* Shorten the length by 1 tick so that we can add a new note at the next
+ grid snap without it overlapping this one.
+ */
+ beats -= 1.0 / Timecode::BBT_Time::ticks_per_bar_division;
+
+ create_note_at (editor.pixel_to_frame (event_x), event_y, beats, true);
break;
}
@@ -778,12 +788,11 @@ MidiRegionView::show_list_editor ()
/** Add a note to the model, and the view, at a canvas (click) coordinate.
* \param t time in frames relative to the position of the region
* \param y vertical position in pixels
- * \param length duration of the note in beats, which will be snapped to the grid
- * \param sh true to make the note 1 frame shorter than the snapped version of \a length.
- * \param snap_x true to snap x to the grid, otherwise false.
+ * \param length duration of the note in beats
+ * \param snap_t true to snap t to the grid, otherwise false.
*/
void
-MidiRegionView::create_note_at (framepos_t t, double y, double length, bool sh, bool snap_x)
+MidiRegionView::create_note_at (framepos_t t, double y, double length, bool snap_t)
{
MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
MidiStreamView* const view = mtv->midi_view();
@@ -794,27 +803,14 @@ MidiRegionView::create_note_at (framepos_t t, double y, double length, bool sh,
assert(note <= 127.0);
// Start of note in frames relative to region start
- if (snap_x) {
+ if (snap_t) {
framecnt_t grid_frames;
t = snap_frame_to_grid_underneath (t, grid_frames);
}
- assert (t >= 0);
+ assert (t >= 0);
assert (length != 0);
- if (sh) {
- /* shorten the note down, but rather than using 1 frame (which
- would be the highest resolution, use 1 tick since all
- musical data is essentially quantized to this unit. it
- is bigger, but not by enough to make any difference.
-
- old single frame code:
-
- length = region_frames_to_region_beats (region_beats_to_region_frames (length) - 1);
- */
- length -= 1.0/Timecode::BBT_Time::ticks_per_bar_division;
- }
-
const boost::shared_ptr<NoteType> new_note (new NoteType (mtv->get_channel_for_add (),
region_frames_to_region_beats(t + _region->start()),
length,
diff --git a/gtk2_ardour/midi_region_view.h b/gtk2_ardour/midi_region_view.h
index b42b7e5a36..6e0a3b4a36 100644
--- a/gtk2_ardour/midi_region_view.h
+++ b/gtk2_ardour/midi_region_view.h
@@ -290,7 +290,7 @@ public:
void trim_front_starting ();
void trim_front_ending ();
- void create_note_at (framepos_t, double, double, bool, bool);
+ void create_note_at (framepos_t, double, double, bool);
protected:
/** Allows derived types to specify their visibility requirements