mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
fef95cecbd
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33381 a592a061-630c-0410-9148-cb99ea01b6c8
76 lines
1.5 KiB
C++
76 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiSpellchecker.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Kalle Dalheimer
|
|
* \author Edwin Leuven
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUISPELLCHECKER_H
|
|
#define GUISPELLCHECKER_H
|
|
|
|
#include "DockView.h"
|
|
|
|
class QListWidgetItem;
|
|
|
|
namespace lyx {
|
|
|
|
class docstring_list;
|
|
|
|
namespace frontend {
|
|
|
|
class GuiSpellchecker : public DockView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiSpellchecker(GuiView & parent);
|
|
~GuiSpellchecker();
|
|
|
|
private Q_SLOTS:
|
|
void on_closePB_clicked();
|
|
void on_findNextPB_clicked();
|
|
void on_replaceAllPB_clicked();
|
|
void on_suggestionsLW_itemClicked(QListWidgetItem *);
|
|
void on_replaceCO_highlighted(const QString & str);
|
|
void on_languageCO_activated(int index);
|
|
void on_ignoreAllPB_clicked();
|
|
void on_addPB_clicked();
|
|
void on_ignorePB_clicked();
|
|
void on_replacePB_clicked();
|
|
|
|
private:
|
|
/// update from controller
|
|
void updateSuggestions(docstring_list & words);
|
|
|
|
///{
|
|
void updateView();
|
|
bool initialiseParams(std::string const & data);
|
|
void clearParams() {}
|
|
void dispatchParams() {}
|
|
bool isBufferDependent() const { return true; }
|
|
///}
|
|
|
|
/// check text until next misspelled/unknown word
|
|
/// returns true when finished
|
|
void check();
|
|
/// show count of checked words at normal exit
|
|
void showSummary();
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
struct Private;
|
|
Private * const d;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUISPELLCHECKER_H
|