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