]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.h
Nothing but a changed email address (trying to factor my tree in in small steps)
[lyx.git] / src / frontends / xforms / FormBrowser.h
1 // -*- C++ -*-
2 /*
3  * \file FormBrowser.h
4  * Copyright 2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author John Levon, moz@compsoc.man.ac.uk
8  * \author Angus Leeming <leeming@lyx.org>
9  */
10
11 #ifndef FORMBROWSER_H
12 #define FORMBROWSER_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 /**
21  * This class provides an XForms implementation of a read only
22  * text browser.
23  */
24 struct FD_browser;
25
26 class FormBrowser : public FormDB<FD_browser> {
27 public:
28         ///
29         FormBrowser(string const &, bool allowResize = true);
30 private:
31         /// Build the dialog.
32         virtual void build();
33 };
34
35 #endif // FORMBROWSER_H