]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlBibtex.C
Update/cursor and drawing fixes.
[lyx.git] / src / frontends / controllers / ControlBibtex.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 ControlBibtex.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 "ControlBibtex.h"
25 #include "Dialogs.h"
26 #include "LyXView.h"
27 #include "buffer.h"
28 #include "BufferView.h"
29
30 using SigC::slot;
31
32 ControlBibtex::ControlBibtex(LyXView & lv, Dialogs & d)
33         : ControlCommand(lv, d)
34 {
35         d_.showBibtex.connect(slot(this, &ControlBibtex::showInset));
36 }
37
38 void ControlBibtex::applyParamsToInset()
39 {
40         if (params().getContents() != inset()->params().getContents())
41                 lv_.view()->ChangeCitationsIfUnique(inset()->params().getContents(),
42                                                     params().getContents());
43
44         inset()->setParams(params());
45         lv_.view()->updateInset(inset(), true);
46
47         // We need to do a redraw because the maximum
48         // InsetBibKey width could have changed
49         lv_.view()->redraw();
50         lv_.view()->fitCursor();
51 }
52
53
54 void ControlBibtex::applyParamsNoInset()
55 {}