]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibitem.h
Really dull and boring header shit
[lyx.git] / src / frontends / controllers / ControlBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file ControlBibitem.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 CONTROLBIBITEM_H
13 #define CONTROLBIBITEM_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ControlCommand.h"
20
21 /** A controller for Bibitem dialogs.
22  */
23 class ControlBibitem : public ControlCommand {
24 public:
25         ///
26         ControlBibitem(LyXView &, Dialogs &);
27
28 private:
29         /// Dispatch the changed parameters to the kernel.
30         virtual void applyParamsToInset();
31         /// not needed.
32         virtual void applyParamsNoInset() {}
33 };
34
35 #endif // CONTROLBIBITEM_H