mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
b5abe94a28
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5813 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
997 B
C++
48 lines
997 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QSpellcheckerDialog.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef QSPELLCHECKERDIALOG_H
|
|
#define QSPELLCHECKERDIALOG_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ui/QSpellcheckerDialogBase.h"
|
|
|
|
class QSpellchecker;
|
|
|
|
class QSpellcheckerDialog : public QSpellcheckerDialogBase {
|
|
Q_OBJECT
|
|
public:
|
|
QSpellcheckerDialog(QSpellchecker * form);
|
|
public slots:
|
|
virtual void suggestionChanged(const QString &);
|
|
|
|
protected slots:
|
|
virtual void stop();
|
|
virtual void acceptClicked();
|
|
virtual void spellcheckClicked();
|
|
virtual void addClicked();
|
|
virtual void replaceClicked();
|
|
virtual void ignoreClicked();
|
|
virtual void replaceChanged(const QString &);
|
|
virtual void reject();
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
QSpellchecker * form_;
|
|
};
|
|
|
|
#endif // QSPELLCHECKERDIALOG_H
|