]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.h
2002-07-02 Lars Gullik Bj�nnes <larsbj@birdstep.com>
[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, a.leeming@ic.ac.uk
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(ControlButtons &, Dialogs &,
30                     string const &, bool allowResize = true);
31 private:
32         /// Build the dialog.
33         virtual void build();
34 };
35
36 #endif // FORMBROWSER_H