]> git.lyx.org Git - lyx.git/blob - src/insets/insetbibitem.C
12d1a4ad884971387e2acdf711246cb92e7458a8
[lyx.git] / src / insets / insetbibitem.C
1 /**
2  * \file insetbibitem.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  *
8  * Full author contact details are available in file CREDITS
9  */
10 #include <config.h>
11
12 #include "insetbibitem.h"
13 #include "buffer.h"
14 #include "BufferView.h"
15 #include "funcrequest.h"
16 #include "lyxlex.h"
17
18 #include "frontends/font_metrics.h"
19
20 #include "support/tostr.h"
21 #include "support/lstrings.h"
22
23 using namespace lyx::support;
24
25 using std::max;
26
27
28 int InsetBibitem::key_counter = 0;
29 string const key_prefix = "key-";
30
31
32 InsetBibitem::InsetBibitem(InsetCommandParams const & p)
33         : InsetCommand(p), counter(1)
34 {
35         if (getContents().empty())
36                 setContents(key_prefix + tostr(++key_counter));
37 }
38
39
40 InsetBibitem::~InsetBibitem()
41 {
42         InsetCommandMailer mailer("bibitem", *this);
43         mailer.hideDialog();
44 }
45
46
47 InsetBase * InsetBibitem::clone() const
48 {
49         InsetBibitem * b = new InsetBibitem(params());
50         b->setCounter(counter);
51         return b;
52 }
53
54
55 dispatch_result InsetBibitem::localDispatch(FuncRequest const & cmd)
56 {
57         switch (cmd.action) {
58
59         case LFUN_INSET_EDIT:
60                 InsetCommandMailer("bibitem", *this).showDialog(cmd.view());
61                 return DISPATCHED;
62
63         case LFUN_INSET_MODIFY: {
64                 InsetCommandParams p;
65                 InsetCommandMailer::string2params(cmd.argument, p);
66                 if (p.getCmdName().empty())
67                         return DISPATCHED;
68
69                 if (view() && p.getContents() != params().getContents()) {
70                         view()->ChangeCitationsIfUnique(params().getContents(),
71                                                         p.getContents());
72                 }
73
74                 setParams(p);
75                 cmd.view()->updateInset(this);
76                 cmd.view()->fitCursor();
77                 return DISPATCHED;
78         }
79
80         default:
81                 return InsetCommand::localDispatch(cmd);
82         }
83 }
84
85
86 void InsetBibitem::setCounter(int c)
87 {
88         counter = c;
89 }
90
91
92 // I'm sorry but this is still necessary because \bibitem is used also
93 // as a LyX 2.x command, and lyxlex is not enough smart to understand
94 // real LaTeX commands. Yes, that could be fixed, but would be a waste
95 // of time cause LyX3 won't use lyxlex anyway.  (ale)
96 void InsetBibitem::write(Buffer const *, std::ostream & os) const
97 {
98         os << "\n\\bibitem ";
99         if (!getOptions().empty())
100                 os << '[' << getOptions() << ']';
101         os << '{' << getContents() << "}\n";
102 }
103
104
105 // This is necessary here because this is written without begin_inset
106 // This should be changed!!! (Jug)
107 void InsetBibitem::read(Buffer const *, LyXLex & lex)
108 {
109         if (lex.eatLine()) {
110                 scanCommand(lex.getString());
111         } else {
112                 lex.printError("InsetCommand: Parse error: `$$Token'");
113         }
114
115         if (prefixIs(getContents(), key_prefix)) {
116                 int key = strToInt(getContents().substr(key_prefix.length()));
117                 key_counter = max(key_counter, key);
118         }
119 }
120
121
122 string const InsetBibitem::getBibLabel() const
123 {
124         return getOptions().empty() ? tostr(counter) : getOptions();
125 }
126
127
128 string const InsetBibitem::getScreenLabel(Buffer const *) const
129 {
130         return getContents() + " [" + getBibLabel() + ']';
131 }
132
133
134 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
135 int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
136 {
137         int w = 0;
138         // Ha, now we are mainly at 1.2.0 and it is still here (Jug)
139         // Does look like a hack? It is! (but will change at 0.13)
140         ParagraphList::iterator it = bv->buffer()->paragraphs.begin();
141         ParagraphList::iterator end = bv->buffer()->paragraphs.end();
142         for (; it != end; ++it) {
143                 if (it->bibitem()) {
144 #warning metrics broken!
145                         int const wx = it->bibitem()->width();
146                         if (wx > w)
147                                 w = wx;
148                 }
149         }
150         return w;
151 }
152
153
154 // ale070405
155 string const bibitemWidest(Buffer const * buffer)
156 {
157         int w = 0;
158         // Does look like a hack? It is! (but will change at 0.13)
159
160         InsetBibitem const * bitem = 0;
161         LyXFont font;
162
163         ParagraphList::const_iterator it = buffer->paragraphs.begin();
164         ParagraphList::const_iterator end = buffer->paragraphs.end();
165
166         for (; it != end; ++it) {
167                 if (it->bibitem()) {
168                         int const wx =
169                                 font_metrics::width(it->bibitem()->getBibLabel(),
170                                                     font);
171                         if (wx > w) {
172                                 w = wx;
173                                 bitem = it->bibitem();
174                         }
175                 }
176         }
177
178         if (bitem && !bitem->getBibLabel().empty())
179                 return bitem->getBibLabel();
180
181         return "99";
182 }