]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiToolbar.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiToolbar.h
index 5d4c310959f96a6ed5439ca1e9a823d4023637ef..31146ee3999c7fff26c43d695a62e35bf0c5010e 100644 (file)
@@ -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
 
 #include "Session.h"
 
-#include <QAbstractProxyModel>
-#include <QComboBox>
 #include <QList>
 #include <QToolBar>
-
-class QSortFilterProxyModel;
-class QStandardItemModel;
+#include <QToolButton>
 
 namespace lyx {
 
@@ -38,76 +34,35 @@ class GuiCommandBuffer;
 class GuiLayoutFilterModel;
 class GuiToolbar;
 class GuiView;
-class LayoutItemDelegate;
+class LayoutBox;
 class ToolbarInfo;
 class ToolbarItem;
 
-class GuiLayoutBox : public QComboBox
+class MenuButton : public QToolButton
 {
        Q_OBJECT
 public:
-       GuiLayoutBox(GuiToolbar * bar, GuiView &);
-
-       /// select the right layout in the combobox.
-       void set(docstring const & layout);
-       /// Populate the layout combobox.
-       void updateContents(bool reset);
-       /// Add Item to Layout box according to sorting settings from preferences
-       void addItemSort(docstring const & item, docstring const & category,
-               bool sorted, bool sortedByCat, bool unknown);
-
        ///
-       void showPopup();
-       
+       MenuButton(GuiToolbar * bar, ToolbarItem const & item,
+               bool const sticky = false);
        ///
-       bool eventFilter(QObject * o, QEvent * e);
-       ///
-       QString const & filter() { return filter_; }
-
-private Q_SLOTS:
-       ///
-       void selected(int index);
-       ///
-       void setIconSize(QSize size);
+       void mousePressEvent(QMouseEvent * e);
 
 private:
-       friend class LayoutItemDelegate;
-
-       ///
-       void resetFilter();
-       ///
-       void setFilter(QString const & s);
-       ///
-       QString charFilterRegExp(QString const & filter);
-       ///
-       void countCategories();
-       
-       ///
-       GuiView & owner_;
        ///
        GuiToolbar * bar_;
        ///
-       DocumentClass const * text_class_;
-       ///
-       Inset const * inset_;
-       
-       /// the layout model: 1st column translated, 2nd column raw layout name
-       QStandardItemModel * model_;
-       /// the proxy model filtering \c model_
-       GuiLayoutFilterModel * filterModel_;
-       /// the (model-) index of the last successful selection
-       int lastSel_;
-       /// the character filter
-       QString filter_;
+       ToolbarItem const & tbitem_;
        ///
-       LayoutItemDelegate * layoutItemDelegate_;
-       ///
-       unsigned visibleCategories_;
+       bool initialized_;
+
+private Q_SLOTS:
        ///
-       bool inShowPopup_;
+       void actionTriggered(QAction * action);
 };
 
 
+
 class GuiToolbar : public QToolBar
 {
        Q_OBJECT
@@ -167,8 +122,6 @@ private:
        ///
        GuiView & owner_;
        ///
-       GuiLayoutBox * layout_;
-       ///
        GuiCommandBuffer * command_buffer_;
        ///
        ToolbarInfo const & tbinfo_;