]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormBrowser.h
1 // -*- C++ -*-
2 /*
3  * \file FormBrowser.h
4  *
5  * (C) 2001 LyX Team
6  * John Levon, moz@compsoc.man.ac.uk
7  * \author Angus Leeming, a.leeming@.ac.uk
8  */
9
10 #ifndef FORMBROWSER_H
11 #define FORMBROWSER_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBase.h"
18
19 /**
20  * This class provides an XForms implementation of a read only
21  * text browser.
22  */
23 struct FD_form_browser;
24
25 class FormBrowser : public FormDB<FD_form_browser> {
26 public:
27         ///
28         FormBrowser(ControlButtons &, string const &, bool allowResize=true);
29
30 private:
31         /// Build the dialog.
32         virtual void build();
33         /// generated build function
34         FD_form_browser * build_browser();
35 };
36
37 #endif // FORMBROWSER_H