]> git.lyx.org Git - lyx.git/blob - src/insets/insetbibitem.C
Merge the unicode branch into trunk.
[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
11 #include <config.h>
12
13 #include "insetbibitem.h"
14
15 #include "buffer.h"
16 #include "BufferView.h"
17 #include "dispatchresult.h"
18 #include "funcrequest.h"
19 #include "lyxfont.h"
20 #include "lyxlex.h"
21 #include "paragraph.h"
22 #include "ParagraphList.h"
23
24 #include "frontends/font_metrics.h"
25
26 #include "support/lstrings.h"
27 #include "support/std_ostream.h"
28 #include "support/convert.h"
29
30 using lyx::docstring;
31 using lyx::support::prefixIs;
32
33 using std::max;
34 using std::string;
35 using std::auto_ptr;
36 using std::ostream;
37
38 int InsetBibitem::key_counter = 0;
39 string const key_prefix = "key-";
40
41
42 InsetBibitem::InsetBibitem(InsetCommandParams const & p)
43         : InsetCommand(p, "bibitem"), counter(1)
44 {
45         if (getContents().empty())
46                 setContents(key_prefix + convert<string>(++key_counter));
47 }
48
49
50 auto_ptr<InsetBase> InsetBibitem::doClone() const
51 {
52         auto_ptr<InsetBibitem> b(new InsetBibitem(params()));
53         b->setCounter(counter);
54         return auto_ptr<InsetBase>(b);
55 }
56
57
58 void InsetBibitem::doDispatch(LCursor & cur, FuncRequest & cmd)
59 {
60         switch (cmd.action) {
61
62         case LFUN_INSET_MODIFY: {
63                 InsetCommandParams p;
64                 InsetCommandMailer::string2params("bibitem", cmd.argument, p);
65                 if (!p.getCmdName().empty())
66                         setParams(p);
67                 else
68                         cur.noUpdate();
69                 break;
70         }
71
72         default:
73                 InsetCommand::doDispatch(cur, cmd);
74                 break;
75         }
76 }
77
78
79 void InsetBibitem::setCounter(int c)
80 {
81         counter = c;
82 }
83
84
85 // I'm sorry but this is still necessary because \bibitem is used also
86 // as a LyX 2.x command, and lyxlex is not enough smart to understand
87 // real LaTeX commands. Yes, that could be fixed, but would be a waste
88 // of time cause LyX3 won't use lyxlex anyway.  (ale)
89 void InsetBibitem::write(Buffer const &, std::ostream & os) const
90 {
91         os << "\n\\bibitem ";
92         if (!getOptions().empty())
93                 os << '[' << getOptions() << ']';
94         os << '{' << getContents() << "}\n";
95 }
96
97
98 // This is necessary here because this is written without begin_inset
99 // This should be changed!!! (Jug)
100 void InsetBibitem::read(Buffer const &, LyXLex & lex)
101 {
102         if (lex.eatLine())
103                 scanCommand(lex.getString());
104         else
105                 lex.printError("InsetCommand: Parse error: `$$Token'");
106
107         if (prefixIs(getContents(), key_prefix)) {
108                 int const key = convert<int>(getContents().substr(key_prefix.length()));
109                 key_counter = max(key_counter, key);
110         }
111 }
112
113
114 string const InsetBibitem::getBibLabel() const
115 {
116         return getOptions().empty() ? convert<string>(counter) : getOptions();
117 }
118
119
120 string const InsetBibitem::getScreenLabel(Buffer const &) const
121 {
122         return getContents() + " [" + getBibLabel() + ']';
123 }
124
125 int InsetBibitem::plaintext(Buffer const &, ostream & os,
126                             OutputParams const &) const
127 {
128         os << '[' << getCounter() << "] ";
129         return 0;
130 }
131
132
133 // ale070405
134 string const bibitemWidest(Buffer const & buffer)
135 {
136         int w = 0;
137         // Does look like a hack? It is! (but will change at 0.13)
138
139         InsetBibitem const * bitem = 0;
140         LyXFont font;
141
142         ParagraphList::const_iterator it = buffer.paragraphs().begin();
143         ParagraphList::const_iterator end = buffer.paragraphs().end();
144
145         for (; it != end; ++it) {
146                 if (it->bibitem()) {
147                         string const label = it->bibitem()->getBibLabel();
148                         docstring const dlab(label.begin(), label.end());
149                     
150                         int const wx =
151                                 font_metrics::width(dlab, font);
152                         if (wx > w) {
153                                 w = wx;
154                                 bitem = it->bibitem();
155                         }
156                 }
157         }
158
159         if (bitem && !bitem->getBibLabel().empty())
160                 return bitem->getBibLabel();
161
162         return "99";
163 }