diff options
author | David Robillard <d@drobilla.net> | 2020-11-29 18:31:45 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-29 18:31:45 +0100 |
commit | 98e2535b82ab601081a56c8a22d789d2da25cfd8 (patch) | |
tree | 5627e1219725342edd6aba36cd48ba24a256ba1c /src/CanvasModule.hpp | |
parent | 178d1cbe1dfc9e7b66c36cbb75590e1cee419174 (diff) | |
download | patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.tar.gz patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.tar.bz2 patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.zip |
Use more reasonable class names
Diffstat (limited to 'src/CanvasModule.hpp')
-rw-r--r-- | src/CanvasModule.hpp | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/src/CanvasModule.hpp b/src/CanvasModule.hpp new file mode 100644 index 0000000..c5ed699 --- /dev/null +++ b/src/CanvasModule.hpp @@ -0,0 +1,87 @@ +/* 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_PATCHAGEMODULE_HPP +#define PATCHAGE_PATCHAGEMODULE_HPP + +#include "ClientID.hpp" +#include "SignalDirection.hpp" +#include "warnings.hpp" + +PATCHAGE_DISABLE_GANV_WARNINGS +#include "ganv/Module.hpp" +#include "ganv/Port.hpp" +PATCHAGE_RESTORE_WARNINGS + +#include <gtkmm/menu_elems.h> + +#include <string> + +namespace patchage { + +struct PortID; + +class CanvasPort; +class Patchage; + +class CanvasModule : public Ganv::Module +{ +public: + CanvasModule(Patchage* app, + const std::string& name, + SignalDirection type, + ClientID id, + double x = 0, + double y = 0); + + CanvasModule(const CanvasModule&) = delete; + CanvasModule& operator=(const CanvasModule&) = delete; + + CanvasModule(CanvasModule&&) = delete; + CanvasModule& operator=(CanvasModule&&) = delete; + + ~CanvasModule() override; + + void split(); + void join(); + + bool show_menu(GdkEventButton* ev); + void update_menu(); + + CanvasPort* get_port(const PortID& id); + + void load_location(); + void menu_disconnect_all(); + void show_dialog() {} + void store_location(double x, double y); + + SignalDirection type() const { return _type; } + ClientID id() const { return _id; } + const std::string& name() const { return _name; } + +protected: + bool on_event(GdkEvent* ev) override; + + Patchage* _app; + Gtk::Menu* _menu; + std::string _name; + SignalDirection _type; + ClientID _id; +}; + +} // namespace patchage + +#endif // PATCHAGE_PATCHAGEMODULE_HPP |