From a7d83f19b08eb4c6f79a82fe60c2b86db13f4420 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 24 Nov 2018 13:44:03 +0100 Subject: Squashed 'waflib/' changes from 6e726eb1..5ea8f99f 5ea8f99f Improve test output spacing 0e23b29f Raise exception when test suite fails to ensure non-zero exit status d6de073b Show run time of unit tests 5b655541 Add short configure option for ultra-strict flags 4687ba6d Use gtest-like test output 258903d9 Fix failure count in test group summaries da07e738 Fix verbose tests with Python 3 git-subtree-dir: waflib git-subtree-split: 5ea8f99f6e1246079c1fe6bb590c38a53aadd40d --- src/gui/GraphCanvas.hpp | 159 ------------------------------------------------ 1 file changed, 159 deletions(-) delete mode 100644 src/gui/GraphCanvas.hpp (limited to 'src/gui/GraphCanvas.hpp') diff --git a/src/gui/GraphCanvas.hpp b/src/gui/GraphCanvas.hpp deleted file mode 100644 index a7340744..00000000 --- a/src/gui/GraphCanvas.hpp +++ /dev/null @@ -1,159 +0,0 @@ -/* - This file is part of Ingen. - Copyright 2007-2015 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 . -*/ - -#ifndef INGEN_GUI_GRAPHCANVAS_HPP -#define INGEN_GUI_GRAPHCANVAS_HPP - -#include -#include -#include - -#include "lilv/lilv.h" - -#include "ganv/Canvas.hpp" -#include "ganv/Module.hpp" -#include "ingen/Node.hpp" -#include "ingen/client/ArcModel.hpp" -#include "ingen/types.hpp" -#include "raul/Path.hpp" - -#include "NodeModule.hpp" - -namespace Ingen { - -namespace Client { class GraphModel; } - -namespace GUI { - -class NodeModule; -class PluginMenu; - -/** Graph canvas widget. - * - * \ingroup GUI - */ -class GraphCanvas : public Ganv::Canvas -{ -public: - GraphCanvas(App& app, - SPtr graph, - int width, - int height); - - virtual ~GraphCanvas() {} - - App& app() { return _app; } - - void build(); - void show_human_names(bool b); - void show_port_names(bool b); - bool show_port_names() const { return _show_port_names; } - - void add_plugin(SPtr p); - void remove_plugin(const URI& uri); - void add_block(SPtr bm); - void remove_block(SPtr bm); - void add_port(SPtr pm); - void remove_port(SPtr pm); - void connection(SPtr arc); - void disconnection(SPtr arc); - - void get_new_module_location(double& x, double& y); - - void clear_selection(); - void destroy_selection(); - void copy_selection(); - void paste(); - - void show_menu(bool position, unsigned button, uint32_t time); - - bool on_event(GdkEvent* event); - -private: - enum class ControlType { NUMBER, BUTTON }; - void generate_port_name( - const std::string& sym_base, std::string& symbol, - const std::string& name_base, std::string& name); - - void menu_add_port(const std::string& sym_base, - const std::string& name_base, - const URI& type, - bool is_output); - - void menu_load_plugin(); - void menu_new_graph(); - void menu_load_graph(); - void menu_properties(); - void load_plugin(WPtr weak_plugin); - - void build_menus(); - - void auto_menu_position(int& x, int& y, bool& push_in); - - typedef std::multimap LV2Children; - - Properties get_initial_data(Resource::Graph ctx=Resource::Graph::DEFAULT); - - Ganv::Port* get_port_view(SPtr port); - - void connect(Ganv::Node* tail, - Ganv::Node* head); - - void disconnect(Ganv::Node* tail, - Ganv::Node* head); - - App& _app; - SPtr _graph; - - typedef std::map, Ganv::Module*> Views; - Views _views; - - int _auto_position_count; - std::pair _auto_position_scroll_offsets; - - int _menu_x; - int _menu_y; - int _paste_count; - - // Track pasted objects so they can be selected when they arrive - std::set _pastees; - - Gtk::Menu* _menu; - Gtk::Menu* _internal_menu; - PluginMenu* _plugin_menu; - Gtk::MenuItem* _menu_add_audio_input; - Gtk::MenuItem* _menu_add_audio_output; - Gtk::MenuItem* _menu_add_control_input; - Gtk::MenuItem* _menu_add_control_output; - Gtk::MenuItem* _menu_add_cv_input; - Gtk::MenuItem* _menu_add_cv_output; - Gtk::MenuItem* _menu_add_event_input; - Gtk::MenuItem* _menu_add_event_output; - Gtk::MenuItem* _menu_load_plugin; - Gtk::MenuItem* _menu_load_graph; - Gtk::MenuItem* _menu_new_graph; - Gtk::MenuItem* _menu_properties; - Gtk::CheckMenuItem* _menu_edit; - - bool _human_names; - bool _show_port_names; - bool _menu_dirty; -}; - -} // namespace GUI -} // namespace Ingen - -#endif // INGEN_GUI_GRAPHCANVAS_HPP -- cgit v1.2.1