X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiToolbar.h;h=31146ee3999c7fff26c43d695a62e35bf0c5010e;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=7751474d3f842a468f1584c1b3ac176293edb58a;hpb=fc742ab7d205aea3a7519e47ae022a455a498dcd;p=lyx.git diff --git a/src/frontends/qt4/GuiToolbar.h b/src/frontends/qt4/GuiToolbar.h index 7751474d3f..31146ee399 100644 --- a/src/frontends/qt4/GuiToolbar.h +++ b/src/frontends/qt4/GuiToolbar.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * \author John Levon * \author Jean-Marc Lasgouttes * \author Angus Leeming @@ -16,78 +16,119 @@ #ifndef GUITOOLBAR_H #define GUITOOLBAR_H -#include "GuiCommandBuffer.h" - #include "Session.h" #include #include -#include +#include namespace lyx { -class FuncRequest; -class ToolbarItem; +class DocumentClass; +class Inset; namespace frontend { -class GuiViewBase; class Action; +class GuiCommandBuffer; +class GuiLayoutFilterModel; +class GuiToolbar; +class GuiView; +class LayoutBox; +class ToolbarInfo; +class ToolbarItem; - -class GuiLayoutBox : public QComboBox +class MenuButton : public QToolButton { Q_OBJECT public: - GuiLayoutBox(GuiViewBase &); + /// + MenuButton(GuiToolbar * bar, ToolbarItem const & item, + bool const sticky = false); + /// + void mousePressEvent(QMouseEvent * e); - /// select the right layout in the combobox. - void set(docstring const & layout); - /// Populate the layout combox. - void updateContents(); +private: + /// + GuiToolbar * bar_; + /// + ToolbarItem const & tbitem_; + /// + bool initialized_; private Q_SLOTS: - void selected(const QString & str); - -private: - GuiViewBase & owner_; + /// + void actionTriggered(QAction * action); }; + class GuiToolbar : public QToolBar { Q_OBJECT public: - GuiToolbar(ToolbarInfo const &, GuiViewBase &); + /// + GuiToolbar(ToolbarInfo const &, GuiView &); + + /// + void setVisibility(int visibility); /// Add a button to the bar. void add(ToolbarItem const & item); - /** update toolbar information - * ToolbarInfo will then be saved by session - */ - void saveInfo(ToolbarSection::ToolbarInfo & info); + + /// Session key. + /** + * This key must be used for any session setting. + **/ + QString sessionKey() const; + /// Save session settings. + void saveSession() const; + /// Restore session settings. + void restoreSession(); + /// Refresh the contents of the bar. - void updateContents(); - GuiLayoutBox * layout() const { return layout_; } + void update(bool in_math, bool in_table, bool review, + bool in_mathmacrotemplate); + + /// + void toggle(); + /// GuiCommandBuffer * commandBuffer() { return command_buffer_; } + /// + Action * addItem(ToolbarItem const & item); + Q_SIGNALS: + /// void updated(); private: - Action * addItem(ToolbarItem const & item); + // load flags with saved values + void initFlags(); + /// + void fill(); + /// + void showEvent(QShowEvent *); + /// + QString name_; + /// QList actions_; - GuiViewBase & owner_; - - GuiLayoutBox * layout_; + /// initial visibility flags + int visibility_; + /// + bool allowauto_; + /// + GuiView & owner_; + /// GuiCommandBuffer * command_buffer_; + /// + ToolbarInfo const & tbinfo_; + /// + bool filled_; }; -/// return a full path of an .png for the given action -std::string const getIcon(FuncRequest const & f, bool unknown = true); - } // namespace frontend } // namespace lyx