mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
0be0fcfd59
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7598 a592a061-630c-0410-9148-cb99ea01b6c8
44 lines
915 B
C++
44 lines
915 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FormSpellchecker.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FORMSPELLCHECKER_H
|
|
#define FORMSPELLCHECKER_H
|
|
|
|
|
|
#include "FormBase.h"
|
|
|
|
class ControlSpellchecker;
|
|
struct FD_spellchecker;
|
|
|
|
/** This class provides an XForms implementation of the FormSpellchecker Dialog.
|
|
*/
|
|
class FormSpellchecker
|
|
: public FormCB<ControlSpellchecker, FormDB<FD_spellchecker> > {
|
|
public:
|
|
///
|
|
FormSpellchecker();
|
|
private:
|
|
/// not needed.
|
|
virtual void apply() {}
|
|
/// Build the dialog
|
|
virtual void build();
|
|
/// not needed.
|
|
virtual void update() {}
|
|
|
|
/// set suggestions and exit message
|
|
virtual void partialUpdate(int);
|
|
|
|
/// Filter the inputs
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
|
};
|
|
|
|
#endif // FORMSPELLCHECKER_H
|