]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBibtex.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormBibtex.h
1 // -*- C++ -*-
2 /**
3  * \file FormBibtex.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef FORMBIBTEX_H
14 #define FORMBIBTEX_H
15
16
17 #include "FormDialogView.h"
18
19 class ControlBibtex;
20 struct FD_bibtex;
21
22 /**
23  * For bibtex database setting
24  */
25 class FormBibtex : public FormController<ControlBibtex, FormView<FD_bibtex> > {
26 public:
27         ///
28         FormBibtex(Dialog &);
29 private:
30         /// Set the Params variable for the Controller.
31         virtual void apply();
32         /// Build the dialog.
33         virtual void build();
34         /// Update dialog before/whilst showing it.
35         virtual void update();
36         /// Filter the inputs on callback from xforms
37         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
38 };
39
40 #endif // FORMBIBTEX_H