diff options
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r-- | src/PatchageModule.hpp | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp new file mode 100644 index 0000000..99527ac --- /dev/null +++ b/src/PatchageModule.hpp @@ -0,0 +1,67 @@ +/* This file is part of Patchage. + * Copyright 2007-2014 David Robillard <http://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 <string> + +#include <gtkmm/menu_elems.h> + +#include "ganv/Module.hpp" +#include "ganv/Port.hpp" + +#include "Configuration.hpp" + +class Patchage; +class PatchagePort; + +class PatchageModule : public Ganv::Module +{ +public: + PatchageModule(Patchage* app, + const std::string& name, + ModuleType type, + double x = 0, + double y = 0); + ~PatchageModule(); + + void split(); + void join(); + + bool show_menu(GdkEventButton* ev); + void update_menu(); + + PatchagePort* get_port(const std::string& name); + + void load_location(); + void menu_disconnect_all(); + void show_dialog() {} + void store_location(double x, double y); + + ModuleType type() const { return _type; } + const std::string& name() const { return _name; } + +protected: + bool on_event(GdkEvent* ev); + + Patchage* _app; + Gtk::Menu* _menu; + std::string _name; + ModuleType _type; +}; + +#endif // PATCHAGE_PATCHAGEMODULE_HPP |