]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormUrl.h
Introduce LFUN_PRINT.
[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
16 #include "FormDialogView.h"
17
18 class ControlCommand;
19 struct FD_url;
20
21 /** This class provides an XForms implementation of the Url Dialog.
22  */
23 class FormUrl : public FormController<ControlCommand, FormView<FD_url> > {
24 public:
25         ///
26         FormUrl(Dialog &);
27 private:
28         /// Apply from dialog (modify or create inset)
29         virtual void apply();
30         /// Build the dialog
31         virtual void build();
32         /// Update dialog before showing it
33         virtual void update();
34 };
35
36 #endif // FORMURL_H