mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 04:39:33 +01:00
Bootstrap Strip Export Dialog
This commit is contained in:
parent
ed5b7a6fcd
commit
cbbe96a698
7 changed files with 91 additions and 0 deletions
|
|
@ -61,6 +61,7 @@
|
|||
#include "gui_object.h"
|
||||
#include "gui_thread.h"
|
||||
#include "keyeditor.h"
|
||||
#include "strip_export_dialog.h"
|
||||
#include "strip_import_dialog.h"
|
||||
#include "library_download_dialog.h"
|
||||
#include "location_ui.h"
|
||||
|
|
@ -999,6 +1000,14 @@ ARDOUR_UI::create_rtawindow ()
|
|||
return rtawindow;
|
||||
}
|
||||
|
||||
void ARDOUR_UI::export_strips ()
|
||||
{
|
||||
if (_session) {
|
||||
StripExportDialog esd (*editor, _session);
|
||||
esd.run();
|
||||
}
|
||||
}
|
||||
|
||||
void ARDOUR_UI::import_strips ()
|
||||
{
|
||||
if (_session) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue