]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBibitem.h
Change glob() API to accept a dir parameter.
[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 #include "FormDialogView.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class ControlCommand;
22 struct FD_bibitem;
23
24 /**
25  * For bibliography entry editing
26  */
27 class FormBibitem : public FormController<ControlCommand, FormView<FD_bibitem> > {
28 public:
29         ///
30         FormBibitem(Dialog &);
31 private:
32         /// Set the Params variable for the Controller.
33         virtual void apply();
34         /// Build the dialog.
35         virtual void build();
36         /// Update dialog before/whilst showing it.
37         virtual void update();
38         /// Filter the inputs on callback from xforms
39         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
40 };
41
42 } // namespace frontend
43 } // namespace lyx
44
45 #endif // FORMBIBITEM_H