mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
first pass at internal sends. this is a very tentative work in progress, and it is possible that major changes may follow in the near future. it is certainly not complete, but the fundamental changes to Port/Buffer operation merit a commit at this point
git-svn-id: svn://localhost/ardour2/branches/3.0@4464 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
ee62ee07d3
commit
70b939da4f
48 changed files with 679 additions and 404 deletions
|
|
@ -151,14 +151,22 @@ PixFader::on_button_release_event (GdkEventButton* ev)
|
|||
/* no motion - just a click */
|
||||
|
||||
if (ev->state & Gdk::SHIFT_MASK) {
|
||||
cerr << "SV A\n";
|
||||
adjustment.set_value (default_value);
|
||||
cerr << "SV A OUT\n";
|
||||
} else if (ev->state & fine_scale_modifier) {
|
||||
cerr << "SV B\n";
|
||||
adjustment.set_value (adjustment.get_lower());
|
||||
cerr << "SV B OUT\n";
|
||||
} else if ((_orien == VERT && ev_pos < span - display_span()) || (_orien == HORIZ && ev_pos > span - display_span())) {
|
||||
/* above the current display height, remember X Window coords */
|
||||
cerr << "SV C\n";
|
||||
adjustment.set_value (adjustment.get_value() + adjustment.get_step_increment());
|
||||
cerr << "SV C OUT\n";
|
||||
} else {
|
||||
cerr << "SV D\n";
|
||||
adjustment.set_value (adjustment.get_value() - adjustment.get_step_increment());
|
||||
cerr << "SV D OUT\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue