]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibitem.h
reverse last change
[lyx.git] / src / frontends / controllers / ControlBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file ControlBibitem.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 CONTROLBIBITEM_H
14 #define CONTROLBIBITEM_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ControlCommand.h"
21
22 /** A controller for Bibitem dialogs.
23  */
24 class ControlBibitem : public ControlCommand {
25 public:
26         ///
27         ControlBibitem(LyXView &, Dialogs &);
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