]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBrowser.C
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormBrowser.C
1 /**
2  * \file FormBrowser.C
3  * See the file COPYING.
4  *
5  * \author John Levon
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "FormBrowser.h"
17 #include "forms/form_browser.h"
18 #include "xformsBC.h"
19
20 FormBrowser::FormBrowser(string const & t, bool allowResize)
21         : FormDB<FD_browser>(t, allowResize)
22 {}
23
24
25 void FormBrowser::build()
26 {
27         dialog_.reset(build_browser(this));
28
29         // Manage the close button
30         bc().setCancel(dialog_->button_close);
31 }