Bootstrap Strip Export Dialog

This commit is contained in:
Robin Gareus 2025-11-17 16:24:30 +01:00
parent ed5b7a6fcd
commit cbbe96a698
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
7 changed files with 91 additions and 0 deletions

View file

@ -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) {