]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormBibitem.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file FormBibitem.h
4  * Read the file COPYING
5  *
6  * \author John Levon
7  * \author Angus Leeming 
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMBIBITEM_H
13 #define FORMBIBITEM_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBase.h"
20
21 class ControlBibitem;
22 struct FD_bibitem;
23
24 /**
25  * For bibliography entry editing
26  */
27 class FormBibitem : public FormCB<ControlBibitem, FormDB<FD_bibitem> > {
28 public:
29         ///
30         FormBibitem();
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 #endif // FORMBIBITEM_H