mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
remove accumulated debug output
This commit is contained in:
parent
a0f2ae4833
commit
4151ec1907
3 changed files with 0 additions and 23 deletions
|
|
@ -3998,20 +3998,14 @@ CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c)
|
||||||
{
|
{
|
||||||
Drag::start_grab (event, c);
|
Drag::start_grab (event, c);
|
||||||
|
|
||||||
cerr << "start CD event type " << event->type << " @ " << event->button.x << " PH @ " << _editor->playhead_cursor->current_sample() << endl;
|
|
||||||
|
|
||||||
setup_snap_delta (MusicSample (_editor->playhead_cursor->current_sample(), 0));
|
setup_snap_delta (MusicSample (_editor->playhead_cursor->current_sample(), 0));
|
||||||
|
|
||||||
_grab_zoom = _editor->samples_per_pixel;
|
_grab_zoom = _editor->samples_per_pixel;
|
||||||
|
|
||||||
MusicSample where (_editor->canvas_event_sample (event) + snap_delta (event->button.state), 0);
|
MusicSample where (_editor->canvas_event_sample (event) + snap_delta (event->button.state), 0);
|
||||||
|
|
||||||
cerr << "where is " << _editor->canvas_event_sample (event) << " + " << snap_delta (event->button.state) << " = " << where.sample << endl;
|
|
||||||
|
|
||||||
_editor->snap_to_with_modifier (where, event);
|
_editor->snap_to_with_modifier (where, event);
|
||||||
|
|
||||||
cerr << "after snap " << where.sample << endl;
|
|
||||||
|
|
||||||
_editor->_dragging_playhead = true;
|
_editor->_dragging_playhead = true;
|
||||||
_editor->_control_scroll_target = where.sample;
|
_editor->_control_scroll_target = where.sample;
|
||||||
|
|
||||||
|
|
@ -4047,8 +4041,6 @@ CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cerr << "fake locate to " << where.sample << endl;
|
|
||||||
|
|
||||||
fake_locate (where.sample - snap_delta (event->button.state));
|
fake_locate (where.sample - snap_delta (event->button.state));
|
||||||
|
|
||||||
_last_y_delta = 0;
|
_last_y_delta = 0;
|
||||||
|
|
@ -4059,11 +4051,6 @@ CursorDrag::motion (GdkEvent* event, bool)
|
||||||
{
|
{
|
||||||
MusicSample where (_editor->canvas_event_sample (event) + snap_delta (event->button.state), 0);
|
MusicSample where (_editor->canvas_event_sample (event) + snap_delta (event->button.state), 0);
|
||||||
|
|
||||||
#ifndef NDEBUG
|
|
||||||
cerr << "cursor drag motion event type " << event->type << " x = " << event->motion.x << " spp " << _editor->get_current_zoom()
|
|
||||||
<< " would be " << event->motion.x * _editor->get_current_zoom() << " @ " << _editor->canvas_event_sample (event) << " + " << snap_delta (event->button.state) << " = " << where.sample << endl;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
_editor->snap_to_with_modifier (where, event);
|
_editor->snap_to_with_modifier (where, event);
|
||||||
|
|
||||||
if (where.sample != last_pointer_sample()) {
|
if (where.sample != last_pointer_sample()) {
|
||||||
|
|
@ -4107,8 +4094,6 @@ CursorDrag::motion (GdkEvent* event, bool)
|
||||||
void
|
void
|
||||||
CursorDrag::finished (GdkEvent* event, bool movement_occurred)
|
CursorDrag::finished (GdkEvent* event, bool movement_occurred)
|
||||||
{
|
{
|
||||||
PBD::stacktrace (std::cerr, 40);
|
|
||||||
|
|
||||||
_editor->_dragging_playhead = false;
|
_editor->_dragging_playhead = false;
|
||||||
|
|
||||||
_cursor.track_canvas_item().ungrab();
|
_cursor.track_canvas_item().ungrab();
|
||||||
|
|
@ -4121,9 +4106,6 @@ CursorDrag::finished (GdkEvent* event, bool movement_occurred)
|
||||||
|
|
||||||
Session* s = _editor->session ();
|
Session* s = _editor->session ();
|
||||||
if (s) {
|
if (s) {
|
||||||
#ifndef NDEBUG
|
|
||||||
cerr << "cursor drag finished, reqL with " << _editor->playhead_cursor->current_sample() << endl;
|
|
||||||
#endif
|
|
||||||
s->request_locate (_editor->playhead_cursor->current_sample (), _was_rolling ? MustRoll : MustStop);
|
s->request_locate (_editor->playhead_cursor->current_sample (), _was_rolling ? MustRoll : MustStop);
|
||||||
_editor->_pending_locate_request = true;
|
_editor->_pending_locate_request = true;
|
||||||
s->request_resume_timecode_transmission ();
|
s->request_resume_timecode_transmission ();
|
||||||
|
|
|
||||||
|
|
@ -179,8 +179,6 @@ Editor::canvas_event_sample (GdkEvent const * event, double* pcx, double* pcy) c
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
cerr << "Event coords " << x << ", " << y << " zoom = " << samples_per_pixel << " loc = " << pixel_to_sample_from_event (x) << endl;
|
|
||||||
|
|
||||||
if (pcx) {
|
if (pcx) {
|
||||||
*pcx = x;
|
*pcx = x;
|
||||||
}
|
}
|
||||||
|
|
@ -1653,7 +1651,6 @@ Editor::button_release_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemT
|
||||||
switch (item_type) {
|
switch (item_type) {
|
||||||
/* see comments in button_press_handler */
|
/* see comments in button_press_handler */
|
||||||
case PlayheadCursorItem:
|
case PlayheadCursorItem:
|
||||||
std::cerr << "in middle of playhead cursor event handler\n";
|
|
||||||
case MarkerItem:
|
case MarkerItem:
|
||||||
case GainLineItem:
|
case GainLineItem:
|
||||||
case AutomationLineItem:
|
case AutomationLineItem:
|
||||||
|
|
|
||||||
|
|
@ -769,8 +769,6 @@ GtkCanvas::deliver_event (GdkEvent* event)
|
||||||
|
|
||||||
Item* parent = item->parent ();
|
Item* parent = item->parent ();
|
||||||
|
|
||||||
DEBUG_TRACE (PBD::DEBUG::CanvasEvents, string_compose ("consider delivery to %1 %2 (ignored = ? %3)\n", item->whatami(), item->name.empty() ? "[unknown]" : item->name, item->ignore_events()));
|
|
||||||
|
|
||||||
if (!item->ignore_events () &&
|
if (!item->ignore_events () &&
|
||||||
item->Event (event)) {
|
item->Event (event)) {
|
||||||
/* this item has just handled the event */
|
/* this item has just handled the event */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue