// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_LIVECODE_TOOLBAR_H #define SEEN_LIVECODE_TOOLBAR_H /** * @file * Livecode aux toolbar */ /* Authors: * Sol Bekic * Copyright (C) 2019 Authors * * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "toolbar.h" class SPDesktop; namespace Inkscape { namespace UI { namespace Widget { class ComboBoxEntryToolItem; } namespace Toolbar { class LivecodeToolbar : public Toolbar { private: UI::Widget::ComboBoxEntryToolItem *_active_script; Gtk::ToolButton *_select_library; bool _freeze; void active_script_value_changed(); void select_library_pressed(); protected: LivecodeToolbar(SPDesktop *desktop); public: static GtkWidget *create(SPDesktop *desktop); }; } } } #endif /* !SEEN_LIVECODE_TOOLBAR_H */