]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSymbols.h
33eff14fa0d60a2b516d87ae9d91ef33224bc1a5
[lyx.git] / src / frontends / qt4 / GuiSymbols.h
1 // -*- C++ -*-
2 /**
3  * \file GuiSymbols.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GUISYMBOLSDIALOG_H
13 #define GUISYMBOLSDIALOG_H
14
15 #include "DialogView.h"
16 #include "ui_SymbolsUi.h"
17 #include "Encoding.h"
18
19 class QListWidgetItem;
20 class Encoding;
21
22 namespace lyx {
23 namespace frontend {
24
25 class GuiSymbols : public DialogView, public Ui::SymbolsUi
26 {
27         Q_OBJECT
28
29 public:
30         GuiSymbols(GuiView & lv);
31
32         /// Dialog inherited methods
33         //@{
34         void updateView();
35         void dispatchParams();
36         bool initialiseParams(std::string const & data);
37         void clearParams() {}
38         bool isBufferDependent() const { return true; }
39         //@}
40
41 public Q_SLOTS:
42         void on_applyPB_clicked();
43         void on_okPB_clicked();
44         void on_closePB_clicked();
45         void on_symbolsLW_itemActivated(QListWidgetItem *);
46         void on_symbolsLW_itemClicked(QListWidgetItem * item);
47         void on_categoryCO_activated(QString const & text);
48         void on_chosenLE_returnPressed();
49         void on_chosenLE_textChanged(QString const &);
50
51 private:
52         /// update the widgets (symbol browser, category combo)
53         void updateSymbolList();
54         /// get the unicode block associated with \p c
55         QString const getBlock(char_type c) const;
56         /// the encoding at cursor position
57         std::string encoding_;
58         /// which blocks do we actually include?
59         typedef std::map<QString, QListWidgetItem *> UsedBlocks;
60         ///
61         UsedBlocks used_blocks;
62 };
63
64 } // namespace frontend
65 } // namespace lyx
66
67 #endif // GUISYMBOLSDIALOG_H