/* This file is part of Ingen. * Copyright (C) 2007 Dave Robillard * * Ingen is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. * * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include "PluginModel.hpp" #include "PatchModel.hpp" namespace Ingen { namespace Client { #ifdef HAVE_SLV2 SLV2World PluginModel::_slv2_world = NULL; SLV2Plugins PluginModel::_slv2_plugins = NULL; #endif string PluginModel::default_node_name(SharedPtr parent) { string default_name = Raul::Path::nameify(_name); string name; char num_buf[3]; for (uint i=0; i < 99; ++i) { name = default_name; if (i != 0) { snprintf(num_buf, 3, "%d", i+1); name += num_buf; } if (!parent->get_node(name)) break; } return name; } #ifdef HAVE_SLV2 void* PluginModel::gui() { assert(_type == LV2); SLV2Values gui = slv2_plugin_get_guis(_slv2_plugin); if (slv2_values_size(gui) > 0) { printf("\tGUI:\n"); for (unsigned i=0; i < slv2_values_size(gui); ++i) { printf("\t\t%s\n", slv2_value_as_uri(slv2_values_get_at(gui, i))); SLV2Value binary = slv2_plugin_get_gui_library_uri(_slv2_plugin, slv2_values_get_at(gui, i)); printf("\t\t\tType: %s\n", slv2_gui_type_get_uri(slv2_value_as_gui_type( slv2_values_get_at(gui, i)))); if (binary) printf("\t\t\tBinary: %s\n", slv2_value_as_uri(binary)); slv2_value_free(binary); } } slv2_values_free(gui); return NULL; } #endif } // namespace Client } // namespace Ingen