mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
promote Playlist::RegionList to ARDOUR::RegionList; fix timefx on multiple regions, even regions of mixed type. this mostly involved some trivial code changes but to make the code simpler and less error prone, the API switched away from using RegionSelection (list of regionviews that catches regionviews vanishing) and used RegionList (lists of regions, no semantics) instead.
git-svn-id: svn://localhost/ardour2/branches/3.0@11362 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
fc3be1d42c
commit
33c61757fc
12 changed files with 112 additions and 87 deletions
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtkmm.h>
|
||||
|
||||
#include "ardour/playlist.h"
|
||||
|
||||
#include "ardour_dialog.h"
|
||||
#include "region_selection.h"
|
||||
#include "progress_reporter.h"
|
||||
|
|
@ -40,8 +42,8 @@ public:
|
|||
Gtk::SpinButton pitch_octave_spinner;
|
||||
Gtk::SpinButton pitch_semitone_spinner;
|
||||
Gtk::SpinButton pitch_cent_spinner;
|
||||
RegionSelection regions;
|
||||
Gtk::ProgressBar progress_bar;
|
||||
ARDOUR::RegionList regions;
|
||||
|
||||
/* SoundTouch */
|
||||
Gtk::CheckButton quick_button;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue