]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibitem.h
Controller-view split of Graphics and Index popups.
[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 public:
28         ///
29         ControlBibitem(LyXView &, Dialogs &);
30
31 private:
32         /// Dispatch the changed parameters to the kernel.
33         virtual void applyParamsToInset();
34         /// not needed.
35         virtual void applyParamsNoInset() {}
36 };
37
38 #endif // CONTROLBIBITEM_H