]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormBrowser.h
1 // -*- C++ -*-
2 /**
3  * \file FormBrowser.h
4  * Read the file COPYING
5  *
6  * \author John Levon
7  * \author Angus Leeming 
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMBROWSER_H
13 #define FORMBROWSER_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBase.h"
20
21 /**
22  * This class provides an XForms implementation of a read only
23  * text browser.
24  */
25 struct FD_browser;
26
27 class FormBrowser : public FormDB<FD_browser> {
28 public:
29         ///
30         FormBrowser(string const &, bool allowResize = true);
31 private:
32         /// Build the dialog.
33         virtual void build();
34 };
35
36 #endif // FORMBROWSER_H