summaryrefslogtreecommitdiffstats
path: root/src/PatchageCanvas.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 18:31:45 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 18:31:45 +0100
commit98e2535b82ab601081a56c8a22d789d2da25cfd8 (patch)
tree5627e1219725342edd6aba36cd48ba24a256ba1c /src/PatchageCanvas.hpp
parent178d1cbe1dfc9e7b66c36cbb75590e1cee419174 (diff)
downloadpatchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.tar.gz
patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.tar.bz2
patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.zip
Use more reasonable class names
Diffstat (limited to 'src/PatchageCanvas.hpp')
-rw-r--r--src/PatchageCanvas.hpp94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/PatchageCanvas.hpp b/src/PatchageCanvas.hpp
deleted file mode 100644
index b823727..0000000
--- a/src/PatchageCanvas.hpp
+++ /dev/null
@@ -1,94 +0,0 @@
-/* This file is part of Patchage.
- * Copyright 2007-2020 David Robillard <d@drobilla.net>
- *
- * Patchage 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.
- *
- * Patchage 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 Patchage. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef PATCHAGE_PATCHAGECANVAS_HPP
-#define PATCHAGE_PATCHAGECANVAS_HPP
-
-#include "patchage_config.h"
-
-#include "PatchageEvent.hpp"
-#include "PatchageModule.hpp"
-#include "PortID.hpp"
-#include "warnings.hpp"
-
-PATCHAGE_DISABLE_GANV_WARNINGS
-#include "ganv/Canvas.hpp"
-PATCHAGE_RESTORE_WARNINGS
-
-#include <map>
-#include <string>
-#include <utility>
-
-namespace patchage {
-
-class Patchage;
-class PatchageModule;
-class PatchagePort;
-class Connector;
-
-class PatchageCanvas : public Ganv::Canvas
-{
-public:
- PatchageCanvas(Connector& connector, int width, int height);
-
- PatchageModule* create_module(Patchage& patchage,
- const ClientID& id,
- const ClientInfo& info);
-
- PatchagePort*
- create_port(Patchage& patchage, const PortID& id, const PortInfo& info);
-
- PatchageModule* find_module(const ClientID& id, SignalDirection type);
- PatchagePort* find_port(const PortID& id);
-
- void remove_module(const ClientID& id);
- void remove_module(PatchageModule* module);
-
- void index_port(const PortID& id, PatchagePort* port)
- {
- _port_index.insert(std::make_pair(id, port));
- }
-
- void remove_ports(bool (*pred)(const PatchagePort*));
-
- void add_module(const ClientID& id, PatchageModule* module);
-
- bool make_connection(Ganv::Node* tail, Ganv::Node* head);
-
- void remove_port(const PortID& id);
-
- void clear() override;
-
-private:
- using PortIndex = std::map<const PortID, PatchagePort*>;
- using ModuleIndex = std::multimap<const ClientID, PatchageModule*>;
-
- friend void disconnect_edge(GanvEdge*, void*);
-
- bool on_event(GdkEvent* ev);
- bool on_connection_event(Ganv::Edge* c, GdkEvent* ev);
-
- void on_connect(Ganv::Node* port1, Ganv::Node* port2);
- void on_disconnect(Ganv::Node* port1, Ganv::Node* port2);
-
- Connector& _connector;
- PortIndex _port_index;
- ModuleIndex _module_index;
-};
-
-} // namespace patchage
-
-#endif // PATCHAGE_PATCHAGECANVAS_HPP