]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURLDialog.h
Some string(widget->text()) fixes. Weirdness
[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 public:
26         QURLDialog(QURL * form);
27         ~QURLDialog();
28
29         virtual void show();
30 public slots:
31         void changed_adaptor();
32 protected:
33         void closeEvent(QCloseEvent *);
34 private:
35         QURL * form_;
36 };
37
38 #endif // QURLDIALOG_H