]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURLDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QURLDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QURLDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QURLDIALOG_H
13 #define QURLDIALOG_H
14
15 #include "ui/QURLDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QURL;
21
22 class QURLDialog : public QURLDialogBase {
23         Q_OBJECT
24 public:
25         QURLDialog(QURL * form);
26         ~QURLDialog();
27
28         virtual void show();
29 public slots:
30         void changed_adaptor();
31 protected:
32         void closeEvent(QCloseEvent *);
33 private:
34         QURL * form_;
35 };
36
37 } // namespace frontend
38 } // namespace lyx
39
40 #endif // QURLDIALOG_H