Added missing files.

git-svn-id: http://svn.drobilla.net/lad@127 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-09-10 20:37:52 +00:00
parent dfe695186d
commit 1dbedf6996
4 changed files with 300 additions and 0 deletions

View File

@ -0,0 +1,85 @@
/* This file is part of Ingen. Copyright (C) 2006 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 "ModelEngineInterface.h"
#include "PatchModel.h"
#include "PresetModel.h"
namespace Ingen {
namespace Client {
/** Load a node.
*/
void
ModelEngineInterface::create_node_from_model(const NodeModel* nm)
{
// Load by URI
if (nm->plugin()->uri().length() > 0) {
create_node(nm->path().c_str(),
nm->plugin()->type_string(),
nm->plugin()->uri().c_str(),
nm->polyphonic());
// Load by libname, label
} else {
//assert(nm->plugin()->lib_name().length() > 0);
assert(nm->plugin()->plug_label().length() > 0);
create_node(nm->path(),
nm->plugin()->type_string(),
nm->plugin()->lib_name().c_str(),
nm->plugin()->plug_label().c_str(),
nm->polyphonic());
}
set_all_metadata(nm);
}
/** Create a patch.
*/
void
ModelEngineInterface::create_patch_from_model(const PatchModel* pm)
{
create_patch(pm->path().c_str(), pm->poly());
set_all_metadata(pm);
}
/** Set all pieces of metadata in a model.
*/
void
ModelEngineInterface::set_all_metadata(const ObjectModel* m)
{
for (map<string, string>::const_iterator i = m->metadata().begin(); i != m->metadata().end(); ++i)
set_metadata(m->path(), (*i).first, (*i).second.c_str());
}
/** Set a preset by setting all relevant controls for a patch.
*/
void
ModelEngineInterface::set_preset(const Path& patch_path, const PresetModel* const pm)
{
for (list<ControlModel>::const_iterator i = pm->controls().begin(); i != pm->controls().end(); ++i) {
set_port_value_queued((*i).port_path(), (*i).value());
}
}
} // namespace Client
} // namespace Ingen

View File

@ -0,0 +1,53 @@
/* This file is part of Ingen. Copyright (C) 2006 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
*/
#ifndef DIRECTRESPONDER_H
#define DIRECTRESPONDER_H
#include "util/CountedPtr.h"
#include "interface/ClientInterface.h"
#include "Responder.h"
namespace Ingen {
/** Responder for Direct clients (directly calls methods on a ClientInterface).
*/
class DirectResponder : public Responder
{
public:
DirectResponder(CountedPtr<ClientInterface> client, int32_t id)
: _client(client), _id(id)
{}
void set_id(int32_t id) { _id = id; }
void respond_ok() { _client->response(_id, true, ""); }
void respond_error(const string& msg) { _client->response(_id, false, msg); }
CountedPtr<ClientInterface> client() { return _client; }
private:
CountedPtr<ClientInterface> _client;
int32_t _id;
};
} // namespace Ingen
#endif // DIRECTRESPONDER_H

View File

@ -0,0 +1,106 @@
/* This file is part of Ingen. Copyright (C) 2006 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 "BreadCrumbBox.h"
#include "BreadCrumb.h"
namespace Ingenuity {
BreadCrumbBox::BreadCrumbBox()
: Gtk::HBox()
, _active_path("/")
, _full_path("/")
, _enable_signal(true)
{
}
/** Destroys current breadcrumbs and rebuilds from scratch.
*
* (Needs to be called when a patch is cleared to eliminate children crumbs)
*/
void
BreadCrumbBox::build(Path path)
{
bool old_enable_signal = _enable_signal;
_enable_signal = false;
// Moving to a parent path, just switch the active button
if (path.length() < _full_path.length() && _full_path.substr(0, path.length()) == path) {
for (std::list<BreadCrumb*>::iterator i = _breadcrumbs.begin(); i != _breadcrumbs.end(); ++i)
(*i)->set_active( ((*i)->path() == path) );
_active_path = path;
_enable_signal = old_enable_signal;
return;
}
// Otherwise rebuild from scratch
_full_path = path;
_active_path = path;
// Empty existing breadcrumbs
for (std::list<BreadCrumb*>::iterator i = _breadcrumbs.begin(); i != _breadcrumbs.end(); ++i)
remove(**i);
_breadcrumbs.clear();
// Add root
BreadCrumb* but = manage(new BreadCrumb("/"));
but->signal_toggled().connect(sigc::bind(sigc::mem_fun(
this, &BreadCrumbBox::breadcrumb_clicked), but));
pack_start(*but, false, false, 1);
_breadcrumbs.push_front(but);
but->set_active(but->path() == _active_path);
// Add the others
while (path != "/") {
BreadCrumb* but = manage(new BreadCrumb(path));
but->signal_toggled().connect(sigc::bind(sigc::mem_fun(
this, &BreadCrumbBox::breadcrumb_clicked), but));
pack_start(*but, false, false, 1);
_breadcrumbs.push_front(but);
but->set_active(but->path() == _active_path);
path = path.parent();
}
show_all_children();
_enable_signal = old_enable_signal;
}
void
BreadCrumbBox::breadcrumb_clicked(BreadCrumb* crumb)
{
if (_enable_signal) {
_enable_signal = false;
if (!crumb->get_active()) {
assert(_active_path == crumb->path());
// Tried to turn off the current active button, bad user!
crumb->set_active(true);
} else {
signal_patch_selected.emit(crumb->path());
if (crumb->path() != _active_path)
crumb->set_active(false);
}
_enable_signal = true;
}
}
} // namespace Ingenuity

View File

@ -0,0 +1,56 @@
/* This file is part of Ingen. Copyright (C) 2006 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
*/
#ifndef BREADCRUMBBOX_H
#define BREADCRUMBBOX_H
#include <list>
#include <gtkmm.h>
#include <libglademm/xml.h>
#include <libglademm.h>
#include "util/Path.h"
namespace Ingenuity {
class PatchController;
class BreadCrumb;
/** Collection of breadcrumb buttons forming a path.
*
* \ingroup Ingenuity
*/
class BreadCrumbBox : public Gtk::HBox
{
public:
BreadCrumbBox();
void build(Path path);
sigc::signal<void, const Path&> signal_patch_selected;
private:
void breadcrumb_clicked(BreadCrumb* crumb);
Path _active_path;
Path _full_path;
bool _enable_signal;
std::list<BreadCrumb*> _breadcrumbs;
};
} // namespace Ingenuity
#endif // BREADCRUMBBOX_H