]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.h
change some __GNUG_ to __GNUG__
[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_form_browser;
25
26 class FormBrowser : public FormDB<FD_form_browser> {
27 public:
28         ///
29         FormBrowser(ControlButtons &, string const &, bool allowResize=true);
30
31 private:
32         /// Build the dialog.
33         virtual void build();
34         /// generated build function
35         FD_form_browser * build_browser();
36 };
37
38 #endif // FORMBROWSER_H