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