]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURL.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QURL.h
1 // -*- C++ -*-
2 /**
3  * \file QURL.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 QURL_H
13 #define QURL_H
14
15
16 #include "QDialogView.h"
17
18 class ControlCommand;
19 class QURLDialog;
20
21
22 class QURL :
23         public QController<ControlCommand, QView<QURLDialog> >
24 {
25 public:
26         friend class QURLDialog;
27         QURL(Dialog &);
28 protected:
29         virtual bool isValid();
30 private:
31         /// apply dialog
32         virtual void apply();
33         /// build dialog
34         virtual void build_dialog();
35         /// update dialog
36         virtual void update_contents();
37 };
38
39 #endif // QURL_H