]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiSymbols.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiSymbols.h
index 85622a51499e1cfaeedc645be2940b017273e3a4..1ddcc1413c9df10673c2263cb93604632ba72671 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 Jürgen Spitzmüller
+ * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -16,9 +16,8 @@
 #include "ui_SymbolsUi.h"
 
 #include <map>
-#include <set>
-
-class QListWidgetItem;
+#include <string>
+#include <vector>
 
 namespace lyx {
 namespace frontend {
@@ -36,15 +35,15 @@ public:
        void dispatchParams();
        void enableView(bool enable);
        bool isBufferDependent() const { return true; }
-       virtual FuncCode getLfun() const { return LFUN_SELF_INSERT; }
+       FuncCode getLfun() const { return LFUN_SELF_INSERT; }
        //@}
 
 public Q_SLOTS:
        void on_applyPB_clicked();
        void on_okPB_clicked();
        void on_closePB_clicked();
-       void on_symbolsLW_itemActivated(QListWidgetItem *);
-       void on_symbolsLW_itemClicked(QListWidgetItem * item);
+       void on_symbolsLW_activated(QModelIndex const & index);
+       void on_symbolsLW_clicked(QModelIndex const & index);
        void on_categoryCO_activated(QString const & text);
        void on_categoryFilterCB_toggled(bool);
        void on_chosenLE_returnPressed();
@@ -60,13 +59,17 @@ private:
        /// the encoding at cursor position
        std::string encoding_;
        /// which blocks do we actually include?
-       typedef std::map<QString, QListWidgetItem *> UsedBlocks;
+       typedef std::map<QString, int> UsedBlocks;
        ///
        UsedBlocks used_blocks;
        /// list of all symbols
-       typedef std::set<char_type> SymbolsList;
+       typedef std::vector<char_type> SymbolsList;
        ///
        SymbolsList symbols_;
+       /// custom model for symbol list view
+       class Model;
+       friend class Model;
+       Model * model_;
 };
 
 } // namespace frontend