a-fluidsynth: implement LV2_BANKPATCH__notify
[ardour.git] / gtk2_ardour / video_server_dialog.h
index e6216cfed790b4ba78b2685506a70285a1e1e12e..b53a45c17db77d37e4af9685f2255d65f30927ad 100644 (file)
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 */
-#ifdef WITH_VIDEOTIMELINE
-
 #ifndef __gtk_ardour_video_server_dialog_h__
 #define __gtk_ardour_video_server_dialog_h__
 
 #include <string>
 
-#include <gtkmm.h>
+#include <gtkmm/adjustment.h>
+#include <gtkmm/button.h>
+#include <gtkmm/checkbutton.h>
+#include <gtkmm/comboboxtext.h>
+#include <gtkmm/entry.h>
+#include <gtkmm/label.h>
+#include <gtkmm/spinbutton.h>
 
 #include "ardour/types.h"
 #include "ardour/template_utils.h"
  */
 class VideoServerDialog : public ArdourDialog
 {
-  public:
+public:
        VideoServerDialog (ARDOUR::Session*);
        ~VideoServerDialog ();
 
        std::string get_exec_path () { return path_entry.get_text(); }
-       std::string get_docroot () { return docroot_entry.get_text(); }
+       std::string get_docroot ();
        std::string get_listenaddr () { return listenaddr_combo.get_active_text();}
        int get_listenport () { return listenport_spinner.get_value_as_int();}
        int get_cachesize () { return cachesize_spinner.get_value_as_int();}
        bool show_again () { return showagain_checkbox.get_active();}
 
-  private:
+private:
        void on_show ();
        void open_path_dialog ();
        void open_docroot_dialog ();
@@ -68,5 +72,3 @@ class VideoServerDialog : public ArdourDialog
 };
 
 #endif /* __gtk_ardour_video_server_dialog_h__ */
-
-#endif /* WITH_VIDEOTIMELINE */