summaryrefslogtreecommitdiffstats
path: root/src/libs/client/PluginModel.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
committerDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
commitbb1c49dfa484db080938cff6f8f70167c9026a1c (patch)
tree6f6382fcbfddfead6d5c32d19977aed8020d32e4 /src/libs/client/PluginModel.h
parentf0f64e4425acfb8b8633a47faa70f87fc32a4399 (diff)
downloadingen-bb1c49dfa484db080938cff6f8f70167c9026a1c.tar.gz
ingen-bb1c49dfa484db080938cff6f8f70167c9026a1c.tar.bz2
ingen-bb1c49dfa484db080938cff6f8f70167c9026a1c.zip
Consistently rename all C++ files .cpp/.hpp.
Fix (some) inclusion guard names to not clash with other libs. git-svn-id: http://svn.drobilla.net/lad/ingen@613 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/PluginModel.h')
-rw-r--r--src/libs/client/PluginModel.h131
1 files changed, 0 insertions, 131 deletions
diff --git a/src/libs/client/PluginModel.h b/src/libs/client/PluginModel.h
deleted file mode 100644
index 6da388d6..00000000
--- a/src/libs/client/PluginModel.h
+++ /dev/null
@@ -1,131 +0,0 @@
-/* This file is part of Ingen.
- * Copyright (C) 2007 Dave Robillard <http://drobilla.net>
- *
- * 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
- */
-
-#ifndef PLUGINMODEL_H
-#define PLUGINMODEL_H
-
-#include "../../../../config/config.h"
-#include <string>
-#include <iostream>
-#include <raul/Path.h>
-#include <raul/SharedPtr.h>
-#ifdef HAVE_SLV2
-#include <slv2/slv2.h>
-#endif
-using std::string; using std::cerr; using std::endl;
-
-namespace Ingen {
-namespace Client {
-
-class PatchModel;
-
-
-/** Model for a plugin available for loading.
- *
- * \ingroup IngenClient
- */
-class PluginModel
-{
-public:
- enum Type { Internal=0, LV2, DSSI, LADSPA, Patch };
-
- PluginModel(const string& uri, const string& type_uri, const string& name)
- : _uri(uri)
- , _name(name)
- {
- set_type_from_uri(type_uri);
-#ifdef HAVE_SLV2
- _slv2_plugin = slv2_plugins_get_by_uri(_slv2_plugins, uri.c_str());
-#endif
- }
-
- Type type() const { return _type; }
- void type(Type t) { _type = t; }
- const string& uri() const { return _uri; }
- void uri(const string& s) { _uri = s; }
- const string& name() const { return _name; }
- void name(const string& s) { _name = s; }
-
- /*const char* const type_string() const {
- if (_type == LV2) return "LV2";
- else if (_type == LADSPA) return "LADSPA";
- else if (_type == DSSI) return "DSSI";
- else if (_type == Internal) return "Internal";
- else if (_type == Patch) return "Patch";
- else return "";
- }*/
-
- const char* const type_uri() const {
- if (_type == LV2) return "ingen:LV2";
- else if (_type == LADSPA) return "ingen:LADSPA";
- else if (_type == DSSI) return "ingen:DSSI";
- else if (_type == Internal) return "ingen:Internal";
- else if (_type == Patch) return "ingen:Patch";
- else return "";
- }
-
- /** DEPRECATED */
- void set_type(const string& type_string) {
- if (type_string == "LV2") _type = LV2;
- else if (type_string == "LADSPA") _type = LADSPA;
- else if (type_string == "DSSI") _type = DSSI;
- else if (type_string == "Internal") _type = Internal;
- else if (type_string == "Patch") _type = Patch;
- }
-
- void set_type_from_uri(const string& type_uri) {
- if (type_uri.substr(0, 6) != "ingen:") {
- cerr << "INVALID TYPE STRING!" << endl;
- } else {
- set_type(type_uri.substr(6));
- }
- }
-
- string default_node_name(SharedPtr<PatchModel> parent);
-
-#ifdef HAVE_SLV2
- SLV2Plugin slv2_plugin() { return _slv2_plugin; }
- static SLV2World slv2_world() { return _slv2_world; }
-
- static void set_slv2_world(SLV2World world) {
- _slv2_world = world;
- slv2_world_load_all(_slv2_world);
- _slv2_plugins = slv2_world_get_all_plugins(_slv2_world);
- }
-
- void* gui();
-#endif
-
-private:
- Type _type;
- string _uri;
- string _name;
-
-#ifdef HAVE_SLV2
- static SLV2World _slv2_world;
- static SLV2Plugins _slv2_plugins;
-
- SLV2Plugin _slv2_plugin;
-#endif
-};
-
-
-} // namespace Client
-} // namespace Ingen
-
-#endif // PLUGINMODEL_H
-