]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormUrl.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormUrl.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormUrl.h
4  * Read the file COPYING
5  *
6  * \author Angus Leeming 
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMURL_H
12 #define FORMURL_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 class ControlUrl;
21 struct FD_url;
22
23 /** This class provides an XForms implementation of the Url Dialog.
24  */
25 class FormUrl : public FormCB<ControlUrl, FormDB<FD_url> > {
26 public:
27         ///
28         FormUrl();
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 #endif // FORMURL_H