summaryrefslogtreecommitdiff
path: root/gtk2_ardour/engine_dialog.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-09-09 13:17:53 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-09-09 15:17:42 -0400
commit56465fda106a7350741d476282abee68da94b9bb (patch)
tree1cd16f7b2247170dd85a4a333d8a61b308eb8df2 /gtk2_ardour/engine_dialog.h
parentcd6a9cfe38e78665e9de8c51392098bcbf4cc39b (diff)
move engine dialog from a widget to an actual dialog; emit Session::AudioEngineSetupRequired when loading a session if it is necessary
Diffstat (limited to 'gtk2_ardour/engine_dialog.h')
-rw-r--r--gtk2_ardour/engine_dialog.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/engine_dialog.h b/gtk2_ardour/engine_dialog.h
index 553563cafb..deaa0afa54 100644
--- a/gtk2_ardour/engine_dialog.h
+++ b/gtk2_ardour/engine_dialog.h
@@ -33,7 +33,9 @@
#include <gtkmm/buttonbox.h>
#include <gtkmm/button.h>
-class EngineControl : public Gtk::VBox {
+#include "ardour_dialog.h"
+
+class EngineControl : public ArdourDialog {
public:
EngineControl ();
~EngineControl ();
@@ -144,6 +146,10 @@ class EngineControl : public Gtk::VBox {
void save_state ();
static bool print_channel_count (Gtk::SpinButton*);
+
+ void build_notebook ();
+
+ void on_response (int);
};
#endif /* __gtk2_ardour_engine_dialog_h__ */