X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiSymbols.h;h=1ddcc1413c9df10673c2263cb93604632ba72671;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=85622a51499e1cfaeedc645be2940b017273e3a4;hpb=f23773c8c5f8f1ab2b3be4b5deea562fe0672325;p=lyx.git diff --git a/src/frontends/qt4/GuiSymbols.h b/src/frontends/qt4/GuiSymbols.h index 85622a5149..1ddcc1413c 100644 --- a/src/frontends/qt4/GuiSymbols.h +++ b/src/frontends/qt4/GuiSymbols.h @@ -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 -#include - -class QListWidgetItem; +#include +#include 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 UsedBlocks; + typedef std::map UsedBlocks; /// UsedBlocks used_blocks; /// list of all symbols - typedef std::set SymbolsList; + typedef std::vector SymbolsList; /// SymbolsList symbols_; + /// custom model for symbol list view + class Model; + friend class Model; + Model * model_; }; } // namespace frontend