diff options
Diffstat (limited to 'src/gui/RenameWindow.hpp')
-rw-r--r-- | src/gui/RenameWindow.hpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/gui/RenameWindow.hpp b/src/gui/RenameWindow.hpp new file mode 100644 index 00000000..3b50f04e --- /dev/null +++ b/src/gui/RenameWindow.hpp @@ -0,0 +1,64 @@ +/* + This file is part of Ingen. + Copyright 2007-2015 David Robillard <http://drobilla.net/> + + 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 <http://www.gnu.org/licenses/>. +*/ + +#ifndef INGEN_GUI_RENAMEWINDOW_HPP +#define INGEN_GUI_RENAMEWINDOW_HPP + +#include "Window.hpp" + +#include "ingen/client/ObjectModel.hpp" +#include "ingen/types.hpp" + +#include <gtkmm/builder.h> +#include <gtkmm/button.h> +#include <gtkmm/entry.h> +#include <gtkmm/label.h> + +namespace ingen { +namespace gui { + +/** Rename window. Handles renaming of any (Ingen) object. + * + * \ingroup GUI + */ +class RenameWindow : public Window +{ +public: + RenameWindow(BaseObjectType* cobject, + const Glib::RefPtr<Gtk::Builder>& xml); + + void present(SPtr<const client::ObjectModel> object); + +private: + void set_object(SPtr<const client::ObjectModel> object); + + void values_changed(); + void cancel_clicked(); + void ok_clicked(); + + SPtr<const client::ObjectModel> _object; + + Gtk::Entry* _symbol_entry; + Gtk::Entry* _label_entry; + Gtk::Label* _message_label; + Gtk::Button* _cancel_button; + Gtk::Button* _ok_button; +}; + +} // namespace gui +} // namespace ingen + +#endif // INGEN_GUI_RENAMEWINDOW_HPP |