]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.h
get rid of broken_header.h and some unneeded tests
[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 #include "FormDialogView.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 struct FD_browser;
22
23 /**
24  * This class provides an XForms implementation of a read only
25  * text browser.
26  */
27
28 class FormBrowser : public FormView<FD_browser> {
29 public:
30         ///
31         FormBrowser(Dialog &, std::string const &, bool allowResize = true);
32 private:
33         /// Build the dialog.
34         virtual void build();
35 };
36
37 } // namespace frontend
38 } // namespace lyx
39
40 #endif // FORMBROWSER_H