// -*- C++ -*- /** * \file QLToolbar.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Lars Gullik Bjønnes * \author John Levon * \author Jean-Marc Lasgouttes * \author Angus Leeming * \author Abdelrazak Younes * * Full author contact details are available in file CREDITS. */ #ifndef QLTOOLBAR_H #define QLTOOLBAR_H #include "frontends/Toolbars.h" #include "Session.h" #include #include #include class QComboBox; namespace lyx { class FuncRequest; namespace frontend { class QCommandBuffer; class QLayoutBox; class GuiView; class Action; class QLayoutBox : public QObject, public LayoutBox { Q_OBJECT public: QLayoutBox(QToolBar *, GuiView &); /// select the right layout in the combox. void set(docstring const & layout); /// Populate the layout combox. void update(); /// Erase the layout list. void clear(); /// Display the layout list. void open(); /// void setEnabled(bool); private Q_SLOTS: void selected(const QString & str); private: QComboBox * combo_; GuiView & owner_; }; class QLToolbar : public QToolBar, public Toolbar { Q_OBJECT public: QLToolbar(ToolbarInfo const &, GuiView &); //~QLToolbar(); void add(ToolbarItem const & item); void hide(bool); void show(bool); bool isVisible() const; void saveInfo(ToolbarSection::ToolbarInfo & info); void update(); LayoutBox * layout() const { return layout_.get(); } /// void focusCommandBuffer(); Q_SIGNALS: void updated(); private: QCommandBuffer * command_buffer_; std::vector ActionVector; GuiView & owner_; boost::scoped_ptr layout_; }; /// return a full path of an XPM for the given action std::string const getIcon(FuncRequest const & f, bool unknown = true); } // namespace frontend } // namespace lyx #endif // NOT QLTOOLBAR_H