lyx_mirror/src/frontends/qt4/GuiSpellchecker.h
Stephan Witt 1a681aaf24 #6917 move forward after adding a word to personal dictionary or the list of ignored words
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35525 a592a061-630c-0410-9148-cb99ea01b6c8
2010-09-28 15:09:06 +00:00

78 lines
1.6 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; }
bool needBufferOpen() const { return true; }
///}
/// move to next position after current word
void forward();
/// check text until next misspelled/unknown word
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