]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QIndexDialog.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / QIndexDialog.h
index 5cf64868e80ee3a26ec63f8597e6fd0ae403f946..5ee70d21dbc32190bd6860914a3357cd6174e2cf 100644 (file)
@@ -1,32 +1,35 @@
+// -*- C++ -*-
 /**
  * \file QIndexDialog.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 QINDEXDIALOG_H
 #define QINDEXDIALOG_H
 
-#include <config.h>
+#ifdef __GNUG__
+#pragma interface
+#endif
 
 #include "ui/QIndexDialogBase.h"
 
 class QIndex;
 
-class QIndexDialog : public QIndexDialogBase
-{ Q_OBJECT
-
+class QIndexDialog : public QIndexDialogBase {
+       Q_OBJECT
 public:
        QIndexDialog(QIndex * form);
 
+       virtual void show();
 protected slots:
        virtual void change_adaptor();
-
 protected:
        virtual void closeEvent(QCloseEvent * e);
-
 private:
        QIndex * form_;
 };