]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormUrl.h
(Lars) Remove symbolic links on "make distclean".
[lyx.git] / src / frontends / xforms / FormUrl.h
1 // -*- C++ -*-
2 /**
3  * \file FormUrl.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMURL_H
13 #define FORMURL_H
14
15 #include "FormDialogView.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class ControlCommand;
21 struct FD_url;
22
23 /** This class provides an XForms implementation of the Url Dialog.
24  */
25 class FormUrl : public FormController<ControlCommand, FormView<FD_url> > {
26 public:
27         ///
28         FormUrl(Dialog &);
29 private:
30         /// Apply from dialog (modify or create inset)
31         virtual void apply();
32         /// Build the dialog
33         virtual void build();
34         /// Update dialog before showing it
35         virtual void update();
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // FORMURL_H