]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormSpellchecker.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormSpellchecker.h
index 88a56d5b9ba340112333e352277e8749abf5b453..4a43cb4e5446e8bee4a7da057ad0ab06318f9cb0 100644 (file)
@@ -6,14 +6,16 @@
  *
  * \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
 
+#include "FormDialogView.h"
 
-#include "FormBase.h"
+namespace lyx {
+namespace frontend {
 
 class ControlSpellchecker;
 struct FD_spellchecker;
@@ -21,17 +23,17 @@ struct FD_spellchecker;
 /** This class provides an XForms implementation of the FormSpellchecker Dialog.
  */
 class FormSpellchecker
-       : public FormCB<ControlSpellchecker, FormDB<FD_spellchecker> > {
+       : public FormController<ControlSpellchecker, FormView<FD_spellchecker> > {
 public:
        ///
-       FormSpellchecker();
+       FormSpellchecker(Dialog &);
 private:
        /// not needed.
        virtual void apply() {}
        /// Build the dialog
        virtual void build();
-       /// not needed.
-       virtual void update() {}
+       ///
+       virtual void update();
 
        /// set suggestions and exit message
        virtual void partialUpdate(int);
@@ -40,4 +42,7 @@ private:
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // FORMSPELLCHECKER_H