]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURLDialog.h
keynav fixes
[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);
21         ~QURLDialog();
22
23         virtual void show();
24  
25 public slots:
26         void changed_adaptor();
27
28 protected:
29         void closeEvent(QCloseEvent *);
30
31 private:
32         QURL * form_;
33 };
34
35 #endif // QURLDIALOG_H