]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURLDialog.h
some more random changes, added Timeout (make clean if LyX crashes !!)
[lyx.git] / src / frontends / qt2 / QURLDialog.h
1 /**
2  * \file QURLDialog.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef QURLDIALOG_H
10 #define QURLDIALOG_H
11  
12 #include "ui/QURLDialogBase.h"
13
14 class QURL;
15
16 class QURLDialog : public QURLDialogBase
17 { Q_OBJECT
18
19 public:
20         QURLDialog(QURL * form, QWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags fl = 0);
21         ~QURLDialog();
22
23 public slots:
24         void apply_adaptor();
25         void close_adaptor();
26
27 protected:
28         void closeEvent(QCloseEvent *);
29
30 private:
31         QURL * form_;
32 };
33
34 #endif // QURLDIALOG_H