]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBibitem.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file FormBibitem.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 FORMBIBITEM_H
14 #define FORMBIBITEM_H
15
16
17 #include "FormDialogView.h"
18
19 class ControlCommand;
20 struct FD_bibitem;
21
22 /**
23  * For bibliography entry editing
24  */
25 class FormBibitem : public FormController<ControlCommand, FormView<FD_bibitem> > {
26 public:
27         ///
28         FormBibitem(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 // FORMBIBITEM_H