]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURLDialog.h
Lots and lots of little trivial bits.
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QURLDialogBase.h"
20
21 class QURL;
22
23 class QURLDialog : public QURLDialogBase
24 { Q_OBJECT
25
26 public:
27         QURLDialog(QURL * form);
28         ~QURLDialog();
29
30         virtual void show();
31
32 public slots:
33         void changed_adaptor();
34
35 protected:
36         void closeEvent(QCloseEvent *);
37
38 private:
39         QURL * form_;
40 };
41
42 #endif // QURLDIALOG_H