]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QSpellchecker.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QSpellchecker.C
index f84d2221aad6179ada684eaed697e823511edb0a..04818920c9e607a6be682aa65d6ebc5667e32c0f 100644 (file)
@@ -1,30 +1,38 @@
 /**
  * \file QSpellchecker.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
+
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "ControlSpellchecker.h"
 #include "QSpellcheckerDialog.h"
 #include "QSpellchecker.h"
 #include "Qt2BC.h"
 #include "gettext.h"
+#include "debug.h"
 
 #include <qprogressbar.h>
-#include <qmessagebox.h> 
+#include <qmessagebox.h>
 #include <qlineedit.h>
 #include <qpushbutton.h>
 #include <qlistbox.h>
 #include <qcombobox.h>
 
 typedef Qt2CB<ControlSpellchecker, Qt2DB<QSpellcheckerDialog> > base_class;
-QSpellchecker::QSpellchecker(ControlSpellchecker & c)
-       : base_class(c, _("Spellchecker"))
+
+
+QSpellchecker::QSpellchecker()
+       : base_class(_("Spellchecker"))
 {
 }
 
@@ -37,15 +45,16 @@ void QSpellchecker::build_dialog()
        dialog_->wordED->setReadOnly(true);
 }
 
+
 void QSpellchecker::update_contents()
 {
        dialog_->wordED->setText("");
        dialog_->replaceCO->clear();
        dialog_->suggestionsLB->clear();
+       dialog_->spellcheckPR->setProgress(0.0);
 }
+
+
 void QSpellchecker::accept()
 {
        controller().ignoreAll();
@@ -54,7 +63,7 @@ void QSpellchecker::accept()
 
 void QSpellchecker::add()
 {
-       controller().insert(); 
+       controller().insert();
 }
 
 
@@ -70,15 +79,9 @@ void QSpellchecker::replace()
 }
 
 
-void QSpellchecker::options()
-{
-       controller().options();
-}
-
-
 void QSpellchecker::spellcheck()
 {
-       controller().check(); 
+       controller().check();
        dialog_->spellcheckPB->setEnabled(false);
 }
 
@@ -87,31 +90,35 @@ void QSpellchecker::stop()
 {
        controller().stop();
        dialog_->spellcheckPB->setEnabled(true);
-       hide(); 
+       hide();
 }
 
+
 void QSpellchecker::partialUpdate(int id)
 {
        switch (id) {
        case 0:
                dialog_->spellcheckPR->setProgress(controller().getProgress());
                break;
-       case 1:
-       {
+       case 1: {
                dialog_->wordED->setText(controller().getWord().c_str());
                dialog_->suggestionsLB->clear();
+
                string w;
                while (!(w = controller().getSuggestion()).empty()) {
                        dialog_->suggestionsLB->insertItem(w.c_str());
                }
        }
                break;
        case 2:
                dialog_->spellcheckPB->setEnabled(true);
                hide();
-               QMessageBox::information(0, _("Spellcheck complete"), controller().getMessage().c_str() , _("OK"));
+               lyxerr << controller().getMessage() << endl; 
+               QMessageBox::information(0, _("Spellcheck complete"),
+                                        controller().getMessage().c_str(),
+                                        _("OK"));
                break;
        }
 }