]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURLDialog.h
dont use pragma impementation and interface anymore
[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
16 #include "ui/QURLDialogBase.h"
17
18 class QURL;
19
20 class QURLDialog : public QURLDialogBase {
21         Q_OBJECT
22 public:
23         QURLDialog(QURL * form);
24         ~QURLDialog();
25
26         virtual void show();
27 public slots:
28         void changed_adaptor();
29 protected:
30         void closeEvent(QCloseEvent *);
31 private:
32         QURL * form_;
33 };
34
35 #endif // QURLDIALOG_H