]> git.lyx.org Git - lyx.git/blob - src/insets/insetbibitem.C
Remove a whole heap of redundant functions from classes derived from
[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
23 #include "frontends/font_metrics.h"
24
25 #include "support/lstrings.h"
26 #include "support/tostr.h"
27
28 using lyx::support::prefixIs;
29 using lyx::support::strToInt;
30
31 using std::max;
32 using std::string;
33 using std::auto_ptr;
34
35
36 int InsetBibitem::key_counter = 0;
37 string const key_prefix = "key-";
38
39
40 InsetBibitem::InsetBibitem(InsetCommandParams const & p)
41         : InsetCommand(p, "bibitem"), counter(1)
42 {
43         if (getContents().empty())
44                 setContents(key_prefix + tostr(++key_counter));
45 }
46
47
48 auto_ptr<InsetBase> InsetBibitem::clone() const
49 {
50         auto_ptr<InsetBibitem> b(new InsetBibitem(params()));
51         b->setCounter(counter);
52         return auto_ptr<InsetBase>(b);
53 }
54
55
56 DispatchResult
57 InsetBibitem::priv_dispatch(FuncRequest const & cmd,
58                             idx_type & idx, pos_type & pos)
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                         return DispatchResult(true, true);
67                 setParams(p);
68                 cmd.view()->update();
69                 cmd.view()->fitCursor();
70                 return DispatchResult(true, true);
71         }
72
73         default:
74                 return InsetCommand::priv_dispatch(cmd, idx, pos);
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
108         if (prefixIs(getContents(), key_prefix)) {
109                 int key = strToInt(getContents().substr(key_prefix.length()));
110                 key_counter = max(key_counter, key);
111         }
112 }
113
114
115 string const InsetBibitem::getBibLabel() const
116 {
117         return getOptions().empty() ? tostr(counter) : getOptions();
118 }
119
120
121 string const InsetBibitem::getScreenLabel(Buffer const &) const
122 {
123         return getContents() + " [" + getBibLabel() + ']';
124 }
125
126
127 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
128 int bibitemMaxWidth(BufferView * bv, LyXFont const &)
129 {
130         int w = 0;
131         // Ha, now we are mainly at 1.2.0 and it is still here (Jug)
132         // Does look like a hack? It is! (but will change at 0.13)
133         ParagraphList::iterator it = bv->buffer()->paragraphs().begin();
134         ParagraphList::iterator end = bv->buffer()->paragraphs().end();
135         for (; it != end; ++it) {
136                 if (it->bibitem()) {
137 #warning metrics broken!
138                         int const wx = it->bibitem()->width();
139                         if (wx > w)
140                                 w = wx;
141                 }
142         }
143         return w;
144 }
145
146
147 // ale070405
148 string const bibitemWidest(Buffer const & buffer)
149 {
150         int w = 0;
151         // Does look like a hack? It is! (but will change at 0.13)
152
153         InsetBibitem const * bitem = 0;
154         LyXFont font;
155
156         ParagraphList::const_iterator it = buffer.paragraphs().begin();
157         ParagraphList::const_iterator end = buffer.paragraphs().end();
158
159         for (; it != end; ++it) {
160                 if (it->bibitem()) {
161                         int const wx =
162                                 font_metrics::width(it->bibitem()->getBibLabel(),
163                                                     font);
164                         if (wx > w) {
165                                 w = wx;
166                                 bitem = it->bibitem();
167                         }
168                 }
169         }
170
171         if (bitem && !bitem->getBibLabel().empty())
172                 return bitem->getBibLabel();
173
174         return "99";
175 }