]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibitem.C
Add the missing template instatiations!
[lyx.git] / src / frontends / controllers / ControlBibitem.C
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.C
11  * \author John Levon, moz@compsoc.man.ac.uk
12  * \author Angus Leeming <a.leeming@ic.ac.uk>
13  */
14
15 #include <algorithm>
16
17 #ifdef __GNUG__
18 #pragma implementation
19 #endif
20
21 #include <config.h>
22 #include "ViewBase.h"
23 #include "ButtonControllerBase.h"
24 #include "ControlBibitem.h"
25 #include "Dialogs.h"
26 #include "LyXView.h"
27 #include "buffer.h"
28 #include "BufferView.h"
29
30 using SigC::slot;
31
32 ControlBibitem::ControlBibitem(LyXView & lv, Dialogs & d)
33         : ControlCommand(lv, d)
34 {
35         d_.showBibitem.connect(slot(this, &ControlBibitem::showInset));
36 }
37
38
39 void ControlBibitem::applyParamsToInset()
40 {
41         // FIXME:
42         // confirm, is this only necessary for FormBibTeX ???
43         if (params().getContents() != inset()->params().getContents())
44                 lv_.view()->ChangeCitationsIfUnique(inset()->params().getContents(),
45                                                     params().getContents());
46
47         inset()->setParams(params());
48         lv_.view()->updateInset(inset(), true);
49
50         // We need to do a redraw because the maximum
51         // InsetBibKey width could have changed
52         lv_.view()->redraw();
53         lv_.view()->fitCursor();
54 }