]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QURL.h
No longer pass Controller & or Dialogs & to the View c-tors.
[lyx.git] / src / frontends / qt2 / QURL.h
1 /**
2  * \file QURL.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef QURL_H
10 #define QURL_H
11
12 #include "Qt2Base.h"
13
14 class ControlUrl;
15 class QURLDialog;
16
17
18 class QURL :
19         public Qt2CB<ControlUrl, Qt2DB<QURLDialog> >
20 {
21         friend class QURLDialog;
22 public:
23         QURL();
24
25 protected:
26         virtual bool isValid();
27
28 private:
29         /// apply dialog
30         virtual void apply();
31         /// build dialog
32         virtual void build_dialog();
33         /// update dialog
34         virtual void update_contents();
35 };
36
37 #endif // QURL_H