]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QThesaurusDialog.h
partial fonts fix. Like Juergen said we really need our own dialog.
[lyx.git] / src / frontends / qt2 / QThesaurusDialog.h
index 42b331942861a4991b81b51561d7f692e8f6272e..cca4c2e45b45ce30747dce4318a81b1d4e1b20e5 100644 (file)
@@ -1,38 +1,40 @@
+// -*- C++ -*-
 /**
  * \file QThesaurusDialog.h
- * 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
  */
 
 #ifndef QTHESAURUSDIALOG_H
 #define QTHESAURUSDIALOG_H
-#include <config.h>
+
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include "ui/QThesaurusDialogBase.h"
 
 class QThesaurus;
+class QListViewItem;
 
-class QThesaurusDialog : public QThesaurusDialogBase
-{ Q_OBJECT
-
+class QThesaurusDialog : public QThesaurusDialogBase {
+       Q_OBJECT
 public:
        QThesaurusDialog(QThesaurus * form);
 
        void updateLists();
 protected slots:
        virtual void change_adaptor();
        virtual void entryChanged();
        virtual void replaceClicked();
-       virtual void selectionChanged(const QString &);
-       virtual void selectionClicked(const QString &);
-
+       virtual void selectionChanged(QListViewItem *);
+       virtual void selectionClicked(QListViewItem *);
 protected:
        virtual void closeEvent(QCloseEvent * e);
-
 private:
        QThesaurus * form_;
 };