/*
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
#include
#include
#include
#include "ObjectMenu.hpp"
#include "ingen/client/BlockModel.hpp"
#include "ingen/types.hpp"
namespace Ingen {
namespace GUI {
/** Menu for a Node.
*
* \ingroup GUI
*/
class NodeMenu : public ObjectMenu
{
public:
NodeMenu(BaseObjectType* cobject,
const Glib::RefPtr& xml);
void init(App& app, SPtr block);
bool has_control_inputs();
sigc::signal signal_popup_gui;
sigc::signal signal_embed_gui;
protected:
SPtr block() const {
return dynamic_ptr_cast(_object);
}
void on_menu_disconnect();
void on_menu_embed_gui();
void on_menu_enabled();
void on_menu_randomize();
void on_preset_activated(const std::string& uri);
Gtk::MenuItem* _popup_gui_menuitem;
Gtk::CheckMenuItem* _embed_gui_menuitem;
Gtk::CheckMenuItem* _enabled_menuitem;
Gtk::MenuItem* _randomize_menuitem;
Gtk::Menu* _presets_menu;
};
} // namespace GUI
} // namespace Ingen
#endif // INGEN_GUI_NODEMENU_HPP