Delete trailing whitespace

git-svn-id: svn://localhost/ardour2/branches/3.0@9656 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2011-06-01 17:00:29 +00:00
parent a473d630eb
commit ed626628b5
221 changed files with 2322 additions and 2322 deletions

View file

@ -56,7 +56,7 @@ EditorSummary::EditorSummary (Editor* e)
Region::RegionPropertyChanged.connect (region_property_connection, invalidator (*this), boost::bind (&CairoWidget::set_dirty, this), gui_context());
_editor->playhead_cursor->PositionChanged.connect (position_connection, invalidator (*this), ui_bind (&EditorSummary::playhead_position_changed, this, _1), gui_context());
add_events (Gdk::POINTER_MOTION_MASK);
add_events (Gdk::POINTER_MOTION_MASK);
}
/** Connect to a session.
@ -148,7 +148,7 @@ EditorSummary::render (cairo_t* cr)
}
/* compute start and end points for the summary */
framecnt_t const session_length = _session->current_end_frame() - _session->current_start_frame ();
double const theoretical_start = _session->current_start_frame() - session_length * _overhang_fraction;
_start = theoretical_start > 0 ? theoretical_start : 0;
@ -161,7 +161,7 @@ EditorSummary::render (cairo_t* cr)
++N;
}
}
if (N == 0) {
_track_height = 16;
} else {
@ -189,7 +189,7 @@ EditorSummary::render (cairo_t* cr)
cairo_move_to (cr, 0, y + _track_height / 2);
cairo_line_to (cr, _width, y + _track_height / 2);
cairo_stroke (cr);
StreamView* s = (*i)->view ();
if (s) {
@ -201,7 +201,7 @@ EditorSummary::render (cairo_t* cr)
y + _track_height / 2
));
}
y += _track_height;
}
@ -355,7 +355,7 @@ EditorSummary::get_editor (pair<double, double>* x, pair<double, double>* y) con
{
assert (x);
assert (y);
x->first = (_editor->leftmost_position () - _start) * _x_scale;
x->second = x->first + _editor->current_page_frames() * _x_scale;
@ -377,7 +377,7 @@ EditorSummary::get_position (double x, double y) const
int y_edge_size = (_view_rectangle_y.second - _view_rectangle_y.first) / 4;
y_edge_size = min (y_edge_size, 8);
y_edge_size = max (y_edge_size, 1);
bool const near_left = (std::abs (x - _view_rectangle_x.first) < x_edge_size);
bool const near_right = (std::abs (x - _view_rectangle_x.second) < x_edge_size);
bool const near_top = (std::abs (y - _view_rectangle_y.first) < y_edge_size);
@ -525,7 +525,7 @@ EditorSummary::on_button_release_event (GdkEventButton*)
_zoom_dragging = false;
_editor->_dragging_playhead = false;
_editor->set_follow_playhead (_old_follow_playhead, false);
return true;
}
@ -598,7 +598,7 @@ EditorSummary::set_editor (double const x, double const y)
return;
}
set_editor_x (x);
set_editor_y (y);
}
@ -614,7 +614,7 @@ EditorSummary::set_editor (pair<double,double> const & x, double const y)
/* see comment in other set_editor () */
return;
}
set_editor_x (x);
set_editor_y (y);
}
@ -658,10 +658,10 @@ EditorSummary::set_editor_x (pair<double, double> const & x)
((x.second - x.first) / _x_scale) /
_editor->frame_to_unit (_editor->current_page_frames())
);
if (nx != _editor->get_current_zoom ()) {
_editor->reset_zoom (nx);
}
}
}
/** Set the top of the y range visible in the editor.
@ -674,13 +674,13 @@ EditorSummary::set_editor_y (double const y)
double y1 = summary_y_to_editor (y);
double const eh = _editor->canvas_height() - _editor->get_canvas_timebars_vsize ();
double y2 = y1 + eh;
double const full_editor_height = _editor->full_canvas_height - _editor->get_canvas_timebars_vsize();
if (y2 > full_editor_height) {
y1 -= y2 - full_editor_height;
}
if (y1 < 0) {
y1 = 0;
}
@ -709,7 +709,7 @@ EditorSummary::set_editor_y (pair<double, double> const & y)
double partial_height = 0;
/* Height of any tracks that are fully in the desired range */
double scale_height = 0;
_editor->_routes->suspend_redisplay ();
for (TrackViewList::const_iterator i = _editor->track_views.begin(); i != _editor->track_views.end(); ++i) {
@ -717,7 +717,7 @@ EditorSummary::set_editor_y (pair<double, double> const & y)
if ((*i)->hidden()) {
continue;
}
double const h = (*i)->effective_height ();
total_height += h;
@ -738,7 +738,7 @@ EditorSummary::set_editor_y (pair<double, double> const & y)
enough tracks to fill it.
*/
double const ch = min (total_height, _editor->canvas_height() - _editor->get_canvas_timebars_vsize());
/* hence required scale factor of the complete tracks to fit the required y range;
the amount of space they should take up divided by the amount they currently take up.
*/
@ -747,7 +747,7 @@ EditorSummary::set_editor_y (pair<double, double> const & y)
yc = y;
/* Scale complete tracks within the range to make it fit */
for (TrackViewList::const_iterator i = _editor->track_views.begin(); i != _editor->track_views.end(); ++i) {
if ((*i)->hidden()) {
@ -763,7 +763,7 @@ EditorSummary::set_editor_y (pair<double, double> const & y)
}
_editor->_routes->resume_redisplay ();
set_editor_y (y.first);
}
@ -780,11 +780,11 @@ EditorSummary::summary_y_to_editor (double y) const
{
double ey = 0;
for (TrackViewList::const_iterator i = _editor->track_views.begin (); i != _editor->track_views.end(); ++i) {
if ((*i)->hidden()) {
continue;
}
double const h = (*i)->effective_height ();
if (y < _track_height) {
/* in this track */
@ -803,7 +803,7 @@ EditorSummary::editor_y_to_summary (double y) const
{
double sy = 0;
for (TrackViewList::const_iterator i = _editor->track_views.begin (); i != _editor->track_views.end(); ++i) {
if ((*i)->hidden()) {
continue;
}