]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiToolbar.h
fix completion painting for RTL (inline completion and completion list)
[lyx.git] / src / frontends / qt4 / GuiToolbar.h
index 62efaff76a008209e9b9ad384a48e1c1dfd5406a..ec0b4cec2872a030bf19567d3fabd432f581a316 100644 (file)
 
 #include "Session.h"
 
+#include <QAbstractProxyModel>
+#include <QComboBox>
 #include <QList>
 #include <QToolBar>
 
-class QComboBox;
+class QSortFilterProxyModel;
+class QStandardItemModel;
 
 namespace lyx {
 
-class FuncRequest;
-class ToolbarItem;
+class DocumentClass;
+class Inset;
 
 namespace frontend {
 
-class GuiCommandBuffer;
-class GuiLayoutBox;
-class GuiViewBase;
 class Action;
-
+class GuiCommandBuffer;
+class GuiLayoutFilterModel;
+class GuiToolbar;
+class GuiView;
+class LayoutItemDelegate;
+class ToolbarInfo;
+class ToolbarItem;
 
 class GuiLayoutBox : public QComboBox
 {
        Q_OBJECT
 public:
-       GuiLayoutBox(GuiViewBase &);
+       GuiLayoutBox(GuiToolbar * bar, GuiView &);
 
        /// select the right layout in the combobox.
        void set(docstring const & layout);
-       /// Populate the layout combox.
-       void updateContents();
+       /// 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);
+
+       ///
+       void showPopup();
+       
+       ///
+       bool eventFilter(QObject * o, QEvent * e);
+       ///
+       QString const & filter() { return filter_; }
 
 private Q_SLOTS:
-       void selected(const QString & str);
+       ///
+       void selected(int index);
+       ///
+       void setIconSize(QSize size);
 
 private:
-       GuiViewBase & owner_;
+       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_;
+       ///
+       LayoutItemDelegate * layoutItemDelegate_;
+       ///
+       unsigned visibleCategories_;
+       ///
+       bool inShowPopup_;
 };
 
 
@@ -59,36 +112,70 @@ 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_; }
-       /// Set the focus on the command buffer, if any.
-       void focusCommandBuffer();
+       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<Action *> actions_;
-       GuiViewBase & owner_;
-
+       /// initial visibility flags
+       int visibility_;
+       ///
+       bool allowauto_;
+       ///
+       GuiView & owner_;
+       ///
        GuiLayoutBox * layout_;
+       ///
        GuiCommandBuffer * command_buffer_;
+       ///
+       ToolbarInfo const & tbinfo_;
+       ///
+       bool filled_;
 };
 
-/// 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