mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
369f14fa8e
- cache symbols list (speedup). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22866 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.8 KiB
C++
77 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiSymbols.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jürgen Spitzmüller
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUISYMBOLSDIALOG_H
|
|
#define GUISYMBOLSDIALOG_H
|
|
|
|
#include "DialogView.h"
|
|
#include "ui_SymbolsUi.h"
|
|
|
|
#include <map>
|
|
#include <set>
|
|
|
|
class QListWidgetItem;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiSymbols : public DialogView, public Ui::SymbolsUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiSymbols(GuiView & lv);
|
|
|
|
/// Dialog inherited methods
|
|
//@{
|
|
void updateView();
|
|
void dispatchParams();
|
|
void enableView(bool enable);
|
|
bool isBufferDependent() const { return true; }
|
|
virtual kb_action 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_categoryCO_activated(QString const & text);
|
|
void on_categoryFilterCB_toggled(bool);
|
|
void on_chosenLE_returnPressed();
|
|
void on_chosenLE_textChanged(QString const &);
|
|
|
|
private:
|
|
/** update the widgets (symbol browser, category combo)
|
|
* \p combo indicates if the combo box has to be refreshed
|
|
* as well (which is rather expensive)
|
|
**/
|
|
void updateSymbolList(bool update_combo = true);
|
|
/// get the unicode block associated with \p c
|
|
QString const getBlock(char_type c) const;
|
|
/// the encoding at cursor position
|
|
std::string encoding_;
|
|
/// which blocks do we actually include?
|
|
typedef std::map<QString, QListWidgetItem *> UsedBlocks;
|
|
///
|
|
UsedBlocks used_blocks;
|
|
/// list of all symbols
|
|
typedef std::set<char_type> SymbolsList;
|
|
///
|
|
SymbolsList symbols_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUISYMBOLSDIALOG_H
|