summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_report.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-12 21:15:43 +0100
committerRobin Gareus <robin@gareus.org>2016-02-12 21:15:43 +0100
commit8509b5fddc538853a80c97dfdb5b425996bf9662 (patch)
tree1e7f366332eddbd94f1ce12f2611e8e8c369a554 /gtk2_ardour/export_report.h
parentc905a98a1a344cafdb7907196edcb96000d8826e (diff)
Add Auditioned to Export Report Dialog.
Diffstat (limited to 'gtk2_ardour/export_report.h')
-rw-r--r--gtk2_ardour/export_report.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/gtk2_ardour/export_report.h b/gtk2_ardour/export_report.h
index 20bc1614af..180b6a4167 100644
--- a/gtk2_ardour/export_report.h
+++ b/gtk2_ardour/export_report.h
@@ -20,6 +20,7 @@
#include <gtkmm/notebook.h>
#include "gtkmm2ext/cairo_widget.h"
+#include "gtkmm2ext/gui_thread.h"
#include "ardour/export_status.h"
@@ -56,8 +57,14 @@ public:
int run ();
private:
- void open_clicked (std::string);
+ void open_folder (std::string);
+ void audition (std::string, unsigned int);
+ void stop_audition ();
+ void audition_active (bool);
- StatusPtr status;
- Gtk::Notebook pages;
+ StatusPtr status;
+ Gtk::Notebook pages;
+ ARDOUR::Session* _session;
+ Gtk::Button* stop_btn;
+ PBD::ScopedConnectionList auditioner_connections;
};