]> git.lyx.org Git - lyx.git/blob - src/insets/insetbib.C
4898652810f4fe19373f4d06badbb878f1615741
[lyx.git] / src / insets / insetbib.C
1 #include <config.h>
2
3 #include <fstream>
4 using std::ifstream;
5
6 #include <cstdlib>
7
8 #ifdef __GNUG__
9 #pragma implementation
10 #endif
11
12 #include FORMS_H_LOCATION  
13 #include "insetbib.h"
14 #include "combox.h"
15 #include "buffer.h"
16 #include "debug.h"
17 #include "lyx_gui_misc.h"
18 #include "BufferView.h"
19 #include "gettext.h"
20 #include "bibforms.h"
21 #include "lyxtext.h"
22 #include "support/filetools.h"
23
24 extern BufferView * current_view;
25
26 FD_citation_form * citation_form = 0;
27 FD_bibitem_form * bibitem_form = 0;
28 static Combox * bibcombox = 0;
29
30 void BibitemUpdate(Combox *);
31 FD_citation_form * create_form_citation_form(void);
32 FD_bibitem_form * create_form_bibitem_form(void);
33
34
35 extern "C" void bibitem_cb(FL_OBJECT *, long data)
36 {
37         switch (data) {
38         case 1: // OK, citation
39         {
40                 InsetCitation::Holder * holder =
41                         static_cast<InsetCitation::Holder*>
42                         (citation_form->citation_form->u_vdata);
43                 if(!holder->view->buffer()->isReadonly()) {
44                         
45                         InsetCitation * inset = holder->inset;
46                         inset->setContents(bibcombox->getline());
47                         inset->setOptions(fl_get_input(citation_form->label));
48                         fl_hide_form(citation_form->citation_form);
49                         // shouldn't mark the buffer dirty unless something
50                         // was actually altered
51                         holder->view->updateInset(inset, true);
52                         break;
53                 }
54                 // fall through to Cancel on RO-mode
55         }       
56         case 0: fl_hide_form(citation_form->citation_form);
57                 break;
58         case 3: // OK, bibitem
59         {
60                 InsetBibKey::Holder * holder =
61                         static_cast<InsetBibKey::Holder*>
62                         (bibitem_form->bibitem_form->u_vdata);
63                 
64                 if(!holder->view->buffer()->isReadonly()) {
65                         InsetBibKey * inset = holder->inset;
66                         inset->setContents(fl_get_input(bibitem_form->key));
67                         inset->setOptions(fl_get_input(bibitem_form->label));
68                         fl_hide_form(bibitem_form->bibitem_form);
69                         // Does look like a hack? It is! (but will change at 0.13)
70                         holder->view->text->RedoParagraph();
71                         holder->view->update(1);
72                         break;
73                 } // fall through to Cancel on RO-mode
74         }
75         case 2: // Cancel, bibitem
76                 fl_hide_form(bibitem_form->bibitem_form); // Cancel, bibitem
77                 break;
78         }
79 }
80
81
82 FD_citation_form * create_form_citation_form(void)
83 {
84         FL_OBJECT * obj;
85         FD_citation_form * fdui = (FD_citation_form *) fl_calloc(1, sizeof(FD_citation_form));
86
87         fdui->citation_form = fl_bgn_form(FL_NO_BOX, 220, 130);
88         obj = fl_add_box(FL_UP_BOX, 0, 0, 220, 130, "");
89         fdui->key = obj = fl_add_text(FL_NORMAL_TEXT, 20, 10, 60, 30, _("Key:"));
90         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
91         fl_set_object_lalign(obj, FL_ALIGN_RIGHT);
92
93         bibcombox = new Combox(FL_COMBOX_INPUT);
94         bibcombox->add(80, 10, 130, 30, 300);
95
96         obj = fl_add_button(FL_RETURN_BUTTON, 20, 90, 90, 30, _("OK"));
97         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
98         fl_set_object_callback(obj, bibitem_cb, 1);
99         obj = fl_add_button(FL_NORMAL_BUTTON, 120, 90, 90, 30, idex(_("Cancel|^[")));
100         fl_set_button_shortcut(obj, scex(_("Cancel|^[")), 1);
101         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
102         fl_set_object_callback(obj, bibitem_cb, 0);
103         fdui->label = obj = fl_add_input(FL_NORMAL_INPUT, 80, 50, 130, 30, idex(_("Remark:|#R")));
104         fl_set_input_shortcut(obj, scex(_("Remark:|#R")), 1);
105         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
106         fl_end_form();
107
108         //fdui->citation_form->fdui = fdui;
109
110         return fdui;
111 }
112 /*---------------------------------------*/
113
114 FD_bibitem_form * create_form_bibitem_form(void)
115 {
116         FL_OBJECT * obj;
117         FD_bibitem_form * fdui = (FD_bibitem_form *) fl_calloc(1, sizeof(FD_bibitem_form));
118
119         fdui->bibitem_form = fl_bgn_form(FL_NO_BOX, 220, 130);
120         obj = fl_add_box(FL_UP_BOX, 0, 0, 220, 130, "");
121         fdui->key = obj = fl_add_input(FL_NORMAL_INPUT, 80, 10, 130, 30, idex(_("Key:|#K")));
122         fl_set_input_shortcut(obj, scex(_("Key:|#K")), 1);
123         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
124         obj = fl_add_button(FL_RETURN_BUTTON, 20, 90, 90, 30, _("OK"));
125         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
126         fl_set_object_callback(obj, bibitem_cb, 3);
127         obj = fl_add_button(FL_NORMAL_BUTTON, 120, 90, 90, 30, idex(_("Cancel|^[")));
128         fl_set_button_shortcut(obj, scex(_("Cancel|^[")), 1);
129         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
130         fl_set_object_callback(obj, bibitem_cb, 2);
131         fdui->label = obj = fl_add_input(FL_NORMAL_INPUT, 80, 50, 130, 30, idex(_("Label:|#L")));
132         fl_set_input_shortcut(obj, scex(_("Label:|#L")), 1);
133         fl_set_object_lsize(obj, FL_NORMAL_SIZE);
134         fl_end_form();
135
136         //fdui->bibitem_form->fdui = fdui;
137
138         return fdui;
139 }
140 /*---------------------------------------*/
141
142
143 InsetCitation::InsetCitation(string const & key, string const & note)
144         : InsetCommand("cite", key, note)
145 {
146
147 }
148
149
150 InsetCitation::~InsetCitation()
151 {
152         if(citation_form && citation_form->citation_form
153            && citation_form->citation_form->visible
154            && citation_form->citation_form->u_vdata == &holder)
155                 fl_hide_form(citation_form->citation_form);
156 }
157
158
159 void InsetCitation::Edit(BufferView * bv, int, int)
160 {
161         if(bv->buffer()->isReadonly())
162                 WarnReadonly(bv->buffer()->fileName());
163
164         if (!citation_form) {
165                 citation_form = create_form_citation_form();
166                 fl_set_form_atclose(citation_form->citation_form, 
167                                     CancelCloseBoxCB, 0);
168         }
169
170         holder.inset = this;
171         holder.view = bv;
172                 
173         citation_form->citation_form->u_vdata = &holder;
174
175         BibitemUpdate(bibcombox);
176         if (!bibcombox->select_text(getContents().c_str()))
177                 bibcombox->addline(getContents().c_str());
178             
179         fl_set_input(citation_form->label, getOptions().c_str());
180         if (citation_form->citation_form->visible) {
181                 fl_raise_form(citation_form->citation_form);
182         } else {
183                 fl_show_form(citation_form->citation_form,
184                              FL_PLACE_MOUSE, FL_FULLBORDER,
185                              _("Citation"));
186         }   
187 }
188
189
190 string InsetCitation::getScreenLabel() const
191 {
192         string temp("[");
193
194         temp += contents;
195
196         if (!options.empty()) {
197                 temp += ", " + options;
198         }
199
200         return temp + ']';
201 }
202
203
204 InsetBibKey::InsetBibKey(string const & key, string const & label):
205         InsetCommand("bibitem", key, label)
206 {
207         counter = 1;
208         if (key.empty())
209                 contents = ' ';
210 }
211
212
213 InsetBibKey::InsetBibKey(InsetBibKey const * b):
214         InsetCommand("bibitem", b->contents, b->options)
215 {
216         counter = b->counter;
217 }
218
219
220 InsetBibKey::~InsetBibKey()
221 {
222         if(bibitem_form && bibitem_form->bibitem_form
223            && bibitem_form->bibitem_form->visible)
224                 fl_hide_form(bibitem_form->bibitem_form);
225 }
226
227 void InsetBibKey::setCounter(int c) 
228
229         counter = c; 
230     
231         if (contents.empty())
232                 contents += tostr(counter);
233 }
234
235
236 // I'm sorry but this is still necessary because \bibitem is used also
237 // as a LyX 2.x command, and lyxlex is not enough smart to understand
238 // real LaTeX commands. Yes, that could be fixed, but would be a waste 
239 // of time cause LyX3 won't use lyxlex anyway.  (ale)
240 void InsetBibKey::Write(ostream & os) const
241 {
242         string s;
243         if (!options.empty()) {
244                 s += '[';
245                 s += options + ']';
246         }
247         s += '{';
248         s += contents + '}';
249         os << "\\bibitem " << s << "\n";
250 }
251
252
253 string InsetBibKey::getScreenLabel() const
254 {
255         if (!options.empty())
256                 return options;
257     
258         return tostr(counter);
259 }
260
261
262 /*
263   The value in "Key:" isn't allways set right after a few bibkey insets have
264   been added/removed.  Perhaps the wrong object is deleted/used somewhere
265   upwards?
266   (Joacim 1998-03-04)
267 */
268 void InsetBibKey::Edit(BufferView * bv, int, int)
269 {
270         if(bv->buffer()->isReadonly())
271                 WarnReadonly(bv->buffer()->fileName());
272         
273         if (!bibitem_form) {
274                 bibitem_form = create_form_bibitem_form();
275                 fl_set_form_atclose(bibitem_form->bibitem_form, 
276                                     CancelCloseBoxCB, 0);
277         }
278
279         holder.inset = this;
280         holder.view = bv;
281         
282         bibitem_form->bibitem_form->u_vdata = &holder;
283         // InsetBibtex uses the same form, with different labels
284         fl_set_object_label(bibitem_form->key, idex(_("Key:|#K")));
285         fl_set_button_shortcut(bibitem_form->key, scex(_("Key:|#K")), 1);
286         fl_set_object_label(bibitem_form->label, idex(_("Label:|#L")));
287         fl_set_button_shortcut(bibitem_form->label, scex(_("Label:|#L")), 1);
288         fl_set_input(bibitem_form->key, getContents().c_str());
289         fl_set_input(bibitem_form->label, getOptions().c_str());
290         if (bibitem_form->bibitem_form->visible) {
291                 fl_raise_form(bibitem_form->bibitem_form);
292         } else {
293                 fl_show_form(bibitem_form->bibitem_form, FL_PLACE_MOUSE,
294                              FL_FULLBORDER,
295                              _("Bibliography item"));
296         }   
297 }
298
299
300
301 InsetBibtex::InsetBibtex(string const & dbase, string const & style,
302                          Buffer * o)
303         : InsetCommand("BibTeX", dbase, style), owner(o)
304 {
305 }
306
307
308 string InsetBibtex::getScreenLabel() const
309 {
310         return _("BibTeX Generated References");
311 }
312
313
314 int InsetBibtex::Latex(ostream & os, signed char /*fragile*/) const
315 {
316         string bib;
317         signed char dummy = 0;
318         int result = Latex(bib, dummy);
319         os << bib;
320         return result;
321 }
322
323
324 int InsetBibtex::Latex(string & file, signed char /*fragile*/) const
325 {
326         // this looks like an horrible hack and it is :) The problem
327         // is that owner is not initialized correctly when the bib
328         // inset is cut and pasted. Such hacks will not be needed
329         // later (JMarc)
330         if (!owner) {
331                 owner = current_view->buffer();
332         }
333         // If we generate in a temp dir, we might need to give an
334         // absolute path there. This is a bit complicated since we can
335         // have a comma-separated list of bibliographies
336         string adb, db_out;
337         string db_in = getContents();
338         db_in = split(db_in, adb, ',');
339         while(!adb.empty()) {
340                 if (!owner->niceFile &&
341                     IsFileReadable(MakeAbsPath(adb, owner->filepath)+".bib")) 
342                         adb = MakeAbsPath(adb, owner->filepath);
343                 db_out += adb;
344                 db_out += ',';
345                 db_in= split(db_in, adb,',');
346         }
347         db_out = strip(db_out, ',');
348         // Idem, but simpler
349         string style;
350         if (!owner->niceFile 
351             && IsFileReadable(MakeAbsPath(getOptions(), owner->filepath)
352                               + ".bst")) 
353                 style = MakeAbsPath(getOptions(), owner->filepath);
354         else
355                 style = getOptions();
356
357         file += "\\bibliographystyle{";
358         file += style;
359         file += "}\n";
360         file += "\\bibliography{";
361         file += db_out;
362         file += "}\n";
363         return 2;
364 }
365
366
367 // This method returns a comma separated list of Bibtex entries
368 string InsetBibtex::getKeys(char delim)
369 {
370         // This hack is copied from InsetBibtex::Latex.
371         // Is it still needed? Probably yes.
372         // Why is this needed here when it already is in Latex?
373         // Anyway we need a different way to get to the
374         // buffer the inset is in. (Lgb)
375         
376         //if (!owner) {
377         //      owner = current_view->buffer();
378         //}
379         
380         string tmp, keys;
381         string bibfiles = getContents();
382         bibfiles = split(bibfiles, tmp, ',');
383         while(!tmp.empty()) {
384                 string fil = findtexfile(ChangeExtension(tmp, "bib", false),
385                                          "bib");
386                 lyxerr[Debug::LATEX] << "Bibfile: " << fil << endl;
387                 // If we didn't find a matching file name just fail silently
388                 if (!fil.empty()) {
389                         // This is a _very_ simple parser for Bibtex database
390                         // files. All it does is to look for lines starting
391                         // in @ and not being @preamble and @string entries.
392                         // It does NOT do any syntax checking!
393                         ifstream ifs(fil.c_str());
394                         string linebuf;
395                         while (getline(ifs, linebuf)) {
396                                 linebuf = frontStrip(linebuf);
397                                 if (prefixIs(linebuf, "@")) {
398                                         linebuf = subst(linebuf, '{', '(');
399                                         linebuf = split(linebuf, tmp, '(');
400                                         tmp = lowercase(tmp);
401                                         if (!prefixIs(tmp, "@string")
402                                             && !prefixIs(tmp, "@preamble")) {
403                                                 linebuf = split(linebuf,
404                                                                 tmp, ',');
405                                                 tmp = frontStrip(strip(tmp));
406                                                 if (!tmp.empty()) {
407                                                         keys += tmp;
408                                                         keys += delim;
409                                                 }
410                                         }
411                                 }
412                         }
413                 }
414                 // Get next file name
415                 bibfiles = split(bibfiles, tmp, ',');
416         }
417         return keys;
418 }
419
420
421 // BibTeX should have its own dialog. This is provisional.
422 void InsetBibtex::Edit(BufferView *, int, int)
423 {
424         if (!bibitem_form) {
425                 bibitem_form = create_form_bibitem_form();
426                 fl_set_form_atclose(bibitem_form->bibitem_form, 
427                                     CancelCloseBoxCB, 0);
428         }
429
430         bibitem_form->bibitem_form->u_vdata = this;
431         fl_set_object_label(bibitem_form->key, _("Database:"));
432         fl_set_object_label(bibitem_form->label, _("Style:  "));
433         fl_set_input(bibitem_form->key, getContents().c_str());
434         fl_set_input(bibitem_form->label, getOptions().c_str());
435         if (bibitem_form->bibitem_form->visible) {
436                 fl_raise_form(bibitem_form->bibitem_form);
437         } else {
438                 fl_show_form(bibitem_form->bibitem_form,
439                              FL_PLACE_MOUSE, FL_FULLBORDER,
440                              _("BibTeX"));
441         }   
442 }
443
444
445 bool InsetBibtex::addDatabase(string const & db)
446 {
447         if (!contains(contents, db.c_str())) {
448                 if (!contents.empty()) 
449                         contents += ',';
450                 contents += db;
451                 return true;
452         }
453         return false;
454 }
455
456
457 bool InsetBibtex::delDatabase(string const & db)
458 {
459         if (contains(contents, db.c_str())) {
460                 string bd = db;
461                 int n = tokenPos(contents, ',', bd);
462                 if (n > 0) {
463                         // Weird code, would someone care to explain this?(Lgb)
464                         string tmp(", ");
465                         tmp += bd;
466                         contents = subst(contents, tmp.c_str(), ", ");
467                 } else if (n == 0)
468                         contents = split(contents, bd, ',');
469                 else 
470                         return false;
471         }
472         return true;
473 }
474
475
476 // This function should be in LyXView when multiframe works ale970302
477 void BibitemUpdate(Combox * combox)
478 {
479         combox->clear();
480         
481         if (!current_view->available()) return;
482         
483         string tmp, bibkeys = current_view->buffer()->getBibkeyList(',');
484         bibkeys = split(bibkeys, tmp,',');
485         while (!tmp.empty()) {
486                 combox->addto(tmp.c_str());
487                 bibkeys = split(bibkeys, tmp,',');
488         }
489 }
490
491
492
493 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
494 int bibitemMaxWidth(Painter & pain, LyXFont const & font)
495 {
496         int w = 0;
497         // Does look like a hack? It is! (but will change at 0.13)
498         LyXParagraph * par = current_view->buffer()->paragraph;
499     
500         while (par) {
501                 if (par->bibkey) {
502                         int wx = par->bibkey->width(pain, font);
503                         if (wx > w) w = wx;
504                 }
505                 par = par->next;
506         }
507         return w;
508 }
509
510
511 // ale070405
512 string bibitemWidthest(Painter & pain)
513 {
514         int w = 0;
515         // Does look like a hack? It is! (but will change at 0.13)
516         LyXParagraph * par = current_view->buffer()->paragraph;
517         InsetBibKey * bkey = 0;
518         LyXFont font;
519       
520         while (par) {
521                 if (par->bibkey) {
522                         int wx = par->bibkey->width(pain, font);
523                         if (wx > w) {
524                                 w = wx;
525                                 bkey = par->bibkey;
526                         }
527                 }
528                 par = par->next;
529         }
530     
531         if (bkey && !bkey->getScreenLabel().empty())
532                 return bkey->getScreenLabel();
533     
534         return "99";
535 }