]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QURLDialog.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / QURLDialog.h
index 59bc0e567a5ed43388c929f1aced0bc5eaf73d9d..865e4a79506d21bcc1f80d8f37797ca9e0c06ff5 100644 (file)
@@ -1,31 +1,36 @@
+// -*- C++ -*-
 /**
  * \file QURLDialog.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
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QURLDIALOG_H
 #define QURLDIALOG_H
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include "ui/QURLDialogBase.h"
 
 class QURL;
 
-class QURLDialog : public QURLDialogBase
-{ Q_OBJECT
-
+class QURLDialog : public QURLDialogBase {
+       Q_OBJECT
 public:
        QURLDialog(QURL * form);
        ~QURLDialog();
 
+       virtual void show();
 public slots:
        void changed_adaptor();
-
 protected:
        void closeEvent(QCloseEvent *);
-
 private:
        QURL * form_;
 };