/*
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_NODEMENU_HPP
#define INGEN_GUI_NODEMENU_HPP
#include "ObjectMenu.hpp"
#include "ingen/URI.hpp"
#include
#include
#include
#include
namespace Glib {
template class RefPtr;
} // namespace Glib
namespace Gtk {
class Builder;
class CheckMenuItem;
class Menu;
class MenuItem;
} // namespace Gtk
namespace ingen {
namespace client {
class BlockModel;
} // namespace client
namespace gui {
class App;
/** Menu for a Node.
*
* \ingroup GUI
*/
class NodeMenu : public ObjectMenu
{
public:
NodeMenu(BaseObjectType* cobject,
const Glib::RefPtr& xml);
void init(App& app, const std::shared_ptr& block);
bool has_control_inputs();
sigc::signal signal_popup_gui;
sigc::signal signal_embed_gui;
protected:
std::shared_ptr block() const;
void add_preset(const URI& uri, const std::string& label);
void on_menu_disconnect() override;
void on_menu_embed_gui();
void on_menu_enabled();
void on_menu_randomize();
void on_save_preset_activated();
void on_preset_activated(const std::string& uri);
Gtk::MenuItem* _popup_gui_menuitem{nullptr};
Gtk::CheckMenuItem* _embed_gui_menuitem{nullptr};
Gtk::CheckMenuItem* _enabled_menuitem{nullptr};
Gtk::MenuItem* _randomize_menuitem{nullptr};
Gtk::Menu* _presets_menu{nullptr};
sigc::connection _preset_connection;
};
} // namespace gui
} // namespace ingen
#endif // INGEN_GUI_NODEMENU_HPP