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