/* This file is part of Machina. * Copyright 2007-2011 David Robillard * * Machina 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 3 of the License, or * (at your option) any later version. * * Machina 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 more details. * * You should have received a copy of the GNU General Public License * along with Machina. If not, see . */ #ifndef MACHINA_NODEVIEW_HPP #define MACHINA_NODEVIEW_HPP #include "ganv/Circle.hpp" #include "client/ClientObject.hpp" #include "machina/types.hpp" class NodeView : public Ganv::Circle , public Machina::Client::ClientObject::View { public: NodeView(Gtk::Window* window, Canvas& canvas, SharedPtr node, double x, double y); SharedPtr node() { return _node; } void show_label(bool show); void update_state(bool show_labels); void set_default_colors(); sigc::signal& signal_clicked() { return _signal_clicked; } private: bool on_event(GdkEvent* ev); bool on_double_click(GdkEventButton* ev); void on_property(Machina::URIInt key, const Raul::Atom& value); void on_action_property(Machina::URIInt key, const Raul::Atom& value); void set_selected(gboolean selected); bool node_is(Raul::Forge& forge, Machina::URIInt key); Gtk::Window* _window; SharedPtr _node; uint32_t _default_border_color; uint32_t _default_fill_color; SharedPtr _enter_action; sigc::connection _enter_action_connection; sigc::signal _signal_clicked; }; #endif // MACHINA_NODEVIEW_HPP