add note onset detection to the ferret, c/o the aubio-based Onset VAMP plugin (REQUIR...
[ardour.git] / gtk2_ardour / ardour_dialog.h
index 0b93dfb37b25b3d384c4d62fb896b2dc0b6aae4d..f2859717e0ce7c88c02e1fee68ba282799c67e99 100644 (file)
@@ -26,7 +26,7 @@
 
 namespace ARDOUR {
        class Session;
-};
+}
 
 /*
  * This virtual parent class is so that each dialog box uses the
@@ -36,12 +36,14 @@ namespace ARDOUR {
 class ArdourDialog : public Gtk::Dialog
 {
   public:
-       ArdourDialog (std::string title, bool modal = false);
+       ArdourDialog (std::string title, bool modal = false, bool use_separator = false);
+       ArdourDialog (Gtk::Window& parent, std::string title, bool modal = false, bool use_separator = false);
        ~ArdourDialog();
 
        bool on_enter_notify_event (GdkEventCrossing*);
        bool on_leave_notify_event (GdkEventCrossing*);
        void on_unmap ();
+       void on_show ();
 
        ARDOUR::Session *session;
 
@@ -55,3 +57,4 @@ class ArdourDialog : public Gtk::Dialog
 };
 
 #endif // __ardour_dialog_h__
+