]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormSpellchecker.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormSpellchecker.h
index f4654d7581fed0b7f2afa76d43e919b604220517..f5fc7058feb002deacb23ec3c02eda29ceb44d8d 100644 (file)
@@ -1,19 +1,17 @@
 // -*- C++ -*-
 /**
  * \file FormSpellchecker.h
- * See the file COPYING.
+ * 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
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMSPELLCHECKER_H
 #define FORMSPELLCHECKER_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "FormBase.h"
 
@@ -22,26 +20,21 @@ struct FD_spellchecker;
 
 /** This class provides an XForms implementation of the FormSpellchecker Dialog.
  */
-class FormSpellchecker : public FormCB<ControlSpellchecker, FormDB<FD_spellchecker> > {
+class FormSpellchecker
+       : public FormCB<ControlSpellchecker, FormDB<FD_spellchecker> > {
 public:
        ///
        FormSpellchecker();
 private:
        /// not needed.
-       void apply() {}
+       virtual void apply() {}
        /// Build the dialog
-       void build();
-       ///
-       void update();
-
-       /// enable/disable widgets when start/stop
-       void stop(bool);
-
-       /// update progress bar, set suggestions, exit message
-       void partialUpdate(int);
+       virtual void build();
+       /// not needed.
+       virtual void update() {}
 
-       /// show an error message
-       void showMessage(const char * msg);
+       /// set suggestions and exit message
+       virtual void partialUpdate(int);
 
        /// Filter the inputs
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);