Translations from Petter, now in the correct branch. Now only for €19.99.
[ardour.git] / gtk2_ardour / generic_pluginui.cc
index ed185c33bc0699c3b655dd2f73ad7cc68e0a0215..4b64098dc0f21862086804d7bc8466274080de8d 100644 (file)
@@ -38,7 +38,9 @@
 #include <ardour/plugin.h>
 #include <ardour/plugin_insert.h>
 #include <ardour/ladspa_plugin.h>
+#ifdef HAVE_LV2
 #include <ardour/lv2_plugin.h>
+#endif
 
 #include <lrdf.h>
 
@@ -84,7 +86,7 @@ GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrol
 
        smaller_hbox->pack_start (*latency_label, false, false, 10);
        smaller_hbox->pack_start (latency_gui, false, false, 10);
-       smaller_hbox->pack_start (combo, false, false);
+       smaller_hbox->pack_start (preset_combo, false, false);
        smaller_hbox->pack_start (save_button, false, false);
 
        constraint_hbox->set_spacing (5);
@@ -385,8 +387,9 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<Automat
        if (plugin->parameter_is_input (port_index)) {
 
                boost::shared_ptr<LadspaPlugin> lp;
+#ifdef HAVE_LV2
                boost::shared_ptr<LV2Plugin> lv2p;
-
+#endif
                if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
                        
                        // FIXME: not all plugins have a numeric unique ID
@@ -409,6 +412,7 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<Automat
                                return control_ui;
                        }
 
+#ifdef HAVE_LV2
                } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
 
                        SLV2Port port = lv2p->slv2_port(port_index);
@@ -428,6 +432,7 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<Automat
                                slv2_scale_points_free(points);
                                return control_ui;
                        }
+#endif
                }
                        
                if (desc.toggled) {
@@ -757,7 +762,9 @@ GenericPluginUI::setup_scale_values(guint32 port_index, ControlUI* cui)
 {
        vector<string> enums;
        boost::shared_ptr<LadspaPlugin> lp;
+#ifdef HAVE_LV2
        boost::shared_ptr<LV2Plugin> lv2p;
+#endif
 
        if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
                // all LADPSA plugins have a numeric unique ID
@@ -777,6 +784,7 @@ GenericPluginUI::setup_scale_values(guint32 port_index, ControlUI* cui)
                        lrdf_free_setting_values(defaults);
                }
 
+#ifdef HAVE_LV2
        } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
 
                SLV2Port port = lv2p->slv2_port(port_index);
@@ -797,6 +805,7 @@ GenericPluginUI::setup_scale_values(guint32 port_index, ControlUI* cui)
                }
 
                slv2_scale_points_free(points);
+#endif
        }