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