/*
This file is part of Ingen.
Copyright 2007-2012 David Robillard
Ingen is free software: you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or 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 Affero General Public License for details.
You should have received a copy of the GNU Affero General Public License
along with Ingen. If not, see .
*/
#include
#include
#include "PatchPortModule.hpp"
#include "ingen/Interface.hpp"
#include "ingen/shared/LV2URIMap.hpp"
#include "ingen/client/PatchModel.hpp"
#include "ingen/client/NodeModel.hpp"
#include "App.hpp"
#include "Configuration.hpp"
#include "WidgetFactory.hpp"
#include "PatchCanvas.hpp"
#include "PatchWindow.hpp"
#include "Port.hpp"
#include "PortMenu.hpp"
#include "RenameWindow.hpp"
#include "WindowFactory.hpp"
using namespace std;
using namespace Raul;
namespace Ingen {
using namespace Client;
using namespace Shared;
namespace GUI {
PatchPortModule::PatchPortModule(PatchCanvas& canvas,
SharedPtr model)
: Ganv::Module(canvas, "", 0, 0, false) // FIXME: coords?
, _model(model)
{
assert(model);
assert(PtrCast(model->parent()));
set_stacked(model->polyphonic());
model->signal_property().connect(
sigc::mem_fun(this, &PatchPortModule::property_changed));
signal_moved().connect(
sigc::mem_fun(this, &PatchPortModule::store_location));
}
PatchPortModule*
PatchPortModule::create(PatchCanvas& canvas,
SharedPtr model,
bool human)
{
PatchPortModule* ret = new PatchPortModule(canvas, model);
Port* port = Port::create(canvas.app(), *ret, model, human, true);
ret->set_port(port);
for (GraphObject::Properties::const_iterator m = model->properties().begin();
m != model->properties().end(); ++m)
ret->property_changed(m->first, m->second);
return ret;
}
App&
PatchPortModule::app() const
{
return ((PatchCanvas*)canvas())->app();
}
bool
PatchPortModule::show_menu(GdkEventButton* ev)
{
return _port->show_menu(ev);
}
void
PatchPortModule::store_location(double ax, double ay)
{
const Atom x(app().forge().make(static_cast(ax)));
const Atom y(app().forge().make(static_cast(ay)));
const URIs& uris = app().uris();
const Atom& existing_x = _model->get_property(uris.ingen_canvasX);
const Atom& existing_y = _model->get_property(uris.ingen_canvasY);
if (x != existing_x && y != existing_y) {
Resource::Properties remove;
remove.insert(make_pair(uris.ingen_canvasX, uris.wildcard));
remove.insert(make_pair(uris.ingen_canvasY, uris.wildcard));
Resource::Properties add;
add.insert(make_pair(uris.ingen_canvasX,
Resource::Property(x, Resource::INTERNAL)));
add.insert(make_pair(uris.ingen_canvasY,
Resource::Property(y, Resource::INTERNAL)));
app().engine()->delta(_model->path(), remove, add);
}
}
void
PatchPortModule::show_human_names(bool b)
{
const URIs& uris = app().uris();
const Atom& name = _model->get_property(uris.lv2_name);
if (b && name.type() == uris.forge.String)
set_name(name.get_string());
else
set_name(_model->symbol().c_str());
}
void
PatchPortModule::set_name(const std::string& n)
{
_port->set_label(n.c_str());
}
void
PatchPortModule::property_changed(const URI& key, const Atom& value)
{
const URIs& uris = app().uris();
if (value.type() == uris.forge.Float) {
if (key == uris.ingen_canvasX) {
move_to(value.get_float(), get_y());
} else if (key == uris.ingen_canvasY) {
move_to(get_x(), value.get_float());
}
} else if (value.type() == uris.forge.String) {
if (key == uris.lv2_name
&& app().configuration()->name_style() == Configuration::HUMAN) {
set_name(value.get_string());
} else if (key == uris.lv2_symbol
&& app().configuration()->name_style() == Configuration::PATH) {
set_name(value.get_string());
}
} else if (value.type() == uris.forge.Bool) {
if (key == uris.ingen_polyphonic) {
set_stacked(value.get_bool());
} else if (key == uris.ingen_selected) {
if (value.get_bool() != get_selected()) {
set_selected(value.get_bool());
}
}
}
}
void
PatchPortModule::set_selected(gboolean b)
{
if (b != get_selected()) {
Module::set_selected(b);
if (app().signal())
app().engine()->set_property(
_model->path(),
app().uris().ingen_selected,
app().forge().make(b));
}
}
} // namespace GUI
} // namespace Ingen