]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QRefDialog.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / QRefDialog.h
index 314879f1a630fc23e3ccdf7a2d28f9ac4299a533..81ea9bd23dd36cabba77f15f20eb3d95b206b7ea 100644 (file)
@@ -1,38 +1,39 @@
+// -*- C++ -*-
 /**
  * \file QRefDialog.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author Kalle Dalheimer
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QREFDIALOG_H
 #define QREFDIALOG_H
 
-#include <config.h>
+#ifdef __GNUG__
+#pragma interface
+#endif
 
 #include "ui/QRefDialogBase.h"
 
 class QRef;
 
-class QRefDialog : public QRefDialogBase
-{ Q_OBJECT
-
+class QRefDialog : public QRefDialogBase {
+       Q_OBJECT
 public:
        QRefDialog(QRef * form);
-
 public slots:
        void changed_adaptor();
        void gotoClicked();
-       void refHighlighted(const QString &);
-       void refSelected(const QString &);
+       void refHighlighted(QString const &);
+       void refSelected(QString const &);
        void sortToggled(bool);
        void updateClicked();
-
 protected:
        void closeEvent(QCloseEvent * e);
-
 private:
        QRef * form_;
 };