]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibitem.h
add Lsstream.h
[lyx.git] / src / frontends / controllers / ControlBibitem.h
1 /* This file is part of
2  * ====================================================== 
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2001 The LyX Team.
7  *
8  * ======================================================
9  *
10  * \file ControlBibitem.h
11  * \author John Levon, moz@compsoc.man.ac.uk
12  * \author Angus Leeming <a.leeming@ic.ac.uk>
13  */
14
15 #ifndef CONTROLBIBITEM_H
16 #define CONTROLBIBITEM_H
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
21
22 #include "ControlCommand.h"
23
24 /** A controller for Bibitem dialogs.
25  */
26 class ControlBibitem : public ControlCommand
27 {
28 public:
29         ///
30         ControlBibitem(LyXView &, Dialogs &);
31
32 private:
33         /// Dispatch the changed parameters to the kernel.
34         virtual void applyParamsToInset();
35         /// not needed.
36         virtual void applyParamsNoInset() {}
37         /// not needed.
38         virtual void clearDaughterParams() {}
39 };
40
41 #endif // CONTROLBIBITEM_H