]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormUrl.h
No longer pass Controller & or Dialogs & to the View c-tors.
[lyx.git] / src / frontends / xforms / FormUrl.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormUrl.h
4  * Copyright 2000-2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Angus Leeming, a.leeming@ic.ac.uk
8  */
9
10 #ifndef FORMURL_H
11 #define FORMURL_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBase.h"
18
19 class ControlUrl;
20 struct FD_url;
21
22 /** This class provides an XForms implementation of the Url Dialog.
23  */
24 class FormUrl : public FormCB<ControlUrl, FormDB<FD_url> > {
25 public:
26         ///
27         FormUrl();
28 private:
29         /// Apply from dialog (modify or create inset)
30         virtual void apply();
31         /// Build the dialog
32         virtual void build();
33         /// Update dialog before showing it
34         virtual void update();
35 };
36
37 #endif // FORMURL_H