]> git.lyx.org Git - lyx.git/blob - src/insets/insetbib.C
the freespacing patch from Kayvan, draw the math empty delim with onoffdash, asure...
[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, unsigned 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 #ifdef USE_OSTREAM_ONLY
243         os << "\\bibitem ";
244         if (!options.empty()) {
245                 os << '['
246                    << options << ']';
247         }
248         os << '{'
249            << contents << "}\n";
250 #else
251         string s;
252         if (!options.empty()) {
253                 s += '[';
254                 s += options + ']';
255         }
256         s += '{';
257         s += contents + '}';
258         os << "\\bibitem " << s << "\n";
259 #endif
260 }
261
262
263 string InsetBibKey::getScreenLabel() const
264 {
265         if (!options.empty())
266                 return options;
267     
268         return tostr(counter);
269 }
270
271
272 /*
273   The value in "Key:" isn't allways set right after a few bibkey insets have
274   been added/removed.  Perhaps the wrong object is deleted/used somewhere
275   upwards?
276   (Joacim 1998-03-04)
277 */
278 void InsetBibKey::Edit(BufferView * bv, int, int, unsigned int)
279 {
280         if(bv->buffer()->isReadonly())
281                 WarnReadonly(bv->buffer()->fileName());
282         
283         if (!bibitem_form) {
284                 bibitem_form = create_form_bibitem_form();
285                 fl_set_form_atclose(bibitem_form->bibitem_form, 
286                                     CancelCloseBoxCB, 0);
287         }
288
289         holder.inset = this;
290         holder.view = bv;
291         
292         bibitem_form->bibitem_form->u_vdata = &holder;
293         // InsetBibtex uses the same form, with different labels
294         fl_set_object_label(bibitem_form->key, idex(_("Key:|#K")));
295         fl_set_button_shortcut(bibitem_form->key, scex(_("Key:|#K")), 1);
296         fl_set_object_label(bibitem_form->label, idex(_("Label:|#L")));
297         fl_set_button_shortcut(bibitem_form->label, scex(_("Label:|#L")), 1);
298         fl_set_input(bibitem_form->key, getContents().c_str());
299         fl_set_input(bibitem_form->label, getOptions().c_str());
300         if (bibitem_form->bibitem_form->visible) {
301                 fl_raise_form(bibitem_form->bibitem_form);
302         } else {
303                 fl_show_form(bibitem_form->bibitem_form, FL_PLACE_MOUSE,
304                              FL_FULLBORDER,
305                              _("Bibliography item"));
306         }   
307 }
308
309
310
311 InsetBibtex::InsetBibtex(string const & dbase, string const & style,
312                          Buffer * o)
313         : InsetCommand("BibTeX", dbase, style), owner(o)
314 {
315 }
316
317
318 string InsetBibtex::getScreenLabel() const
319 {
320         return _("BibTeX Generated References");
321 }
322
323
324 int InsetBibtex::Latex(ostream & os, signed char /*fragile*/, bool/*fs*/) const
325 {
326 #ifdef USE_OSTREAM_ONLY
327         // this looks like an horrible hack and it is :) The problem
328         // is that owner is not initialized correctly when the bib
329         // inset is cut and pasted. Such hacks will not be needed
330         // later (JMarc)
331         if (!owner) {
332                 owner = current_view->buffer();
333         }
334         // If we generate in a temp dir, we might need to give an
335         // absolute path there. This is a bit complicated since we can
336         // have a comma-separated list of bibliographies
337         string adb, db_out;
338         string db_in = getContents();
339         db_in = split(db_in, adb, ',');
340         while(!adb.empty()) {
341                 if (!owner->niceFile &&
342                     IsFileReadable(MakeAbsPath(adb, owner->filepath)+".bib")) 
343                         adb = MakeAbsPath(adb, owner->filepath);
344                 db_out += adb;
345                 db_out += ',';
346                 db_in= split(db_in, adb,',');
347         }
348         db_out = strip(db_out, ',');
349         // Idem, but simpler
350         string style;
351         if (!owner->niceFile 
352             && IsFileReadable(MakeAbsPath(getOptions(), owner->filepath)
353                               + ".bst")) 
354                 style = MakeAbsPath(getOptions(), owner->filepath);
355         else
356                 style = getOptions();
357
358         os << "\\bibliographystyle{" << style << "}\n"
359            << "\\bibliography{" << db_out << "}\n";
360         return 2;
361 #else
362         string bib;
363         signed char dummy = 0;
364         int result = Latex(bib, dummy, 0);
365         os << bib;
366         return result;
367 #endif
368 }
369
370
371 #ifndef USE_OSTREAM_ONLY
372 int InsetBibtex::Latex(string & file, signed char /*fragile*/, bool/*fs*/) const
373 {
374         // this looks like an horrible hack and it is :) The problem
375         // is that owner is not initialized correctly when the bib
376         // inset is cut and pasted. Such hacks will not be needed
377         // later (JMarc)
378         if (!owner) {
379                 owner = current_view->buffer();
380         }
381         // If we generate in a temp dir, we might need to give an
382         // absolute path there. This is a bit complicated since we can
383         // have a comma-separated list of bibliographies
384         string adb, db_out;
385         string db_in = getContents();
386         db_in = split(db_in, adb, ',');
387         while(!adb.empty()) {
388                 if (!owner->niceFile &&
389                     IsFileReadable(MakeAbsPath(adb, owner->filepath)+".bib")) 
390                         adb = MakeAbsPath(adb, owner->filepath);
391                 db_out += adb;
392                 db_out += ',';
393                 db_in= split(db_in, adb,',');
394         }
395         db_out = strip(db_out, ',');
396         // Idem, but simpler
397         string style;
398         if (!owner->niceFile 
399             && IsFileReadable(MakeAbsPath(getOptions(), owner->filepath)
400                               + ".bst")) 
401                 style = MakeAbsPath(getOptions(), owner->filepath);
402         else
403                 style = getOptions();
404
405         file += "\\bibliographystyle{";
406         file += style;
407         file += "}\n";
408         file += "\\bibliography{";
409         file += db_out;
410         file += "}\n";
411         return 2;
412 }
413 #endif
414
415 // This method returns a comma separated list of Bibtex entries
416 string InsetBibtex::getKeys(char delim)
417 {
418         // This hack is copied from InsetBibtex::Latex.
419         // Is it still needed? Probably yes.
420         // Why is this needed here when it already is in Latex?
421         // Anyway we need a different way to get to the
422         // buffer the inset is in. (Lgb)
423         
424         //if (!owner) {
425         //      owner = current_view->buffer();
426         //}
427         
428         string tmp, keys;
429         string bibfiles = getContents();
430         bibfiles = split(bibfiles, tmp, ',');
431         while(!tmp.empty()) {
432                 string fil = findtexfile(ChangeExtension(tmp, "bib", false),
433                                          "bib");
434                 lyxerr[Debug::LATEX] << "Bibfile: " << fil << endl;
435                 // If we didn't find a matching file name just fail silently
436                 if (!fil.empty()) {
437                         // This is a _very_ simple parser for Bibtex database
438                         // files. All it does is to look for lines starting
439                         // in @ and not being @preamble and @string entries.
440                         // It does NOT do any syntax checking!
441                         ifstream ifs(fil.c_str());
442                         string linebuf;
443                         while (getline(ifs, linebuf)) {
444                                 linebuf = frontStrip(linebuf);
445                                 if (prefixIs(linebuf, "@")) {
446                                         linebuf = subst(linebuf, '{', '(');
447                                         linebuf = split(linebuf, tmp, '(');
448                                         tmp = lowercase(tmp);
449                                         if (!prefixIs(tmp, "@string")
450                                             && !prefixIs(tmp, "@preamble")) {
451                                                 linebuf = split(linebuf,
452                                                                 tmp, ',');
453                                                 tmp = frontStrip(strip(tmp));
454                                                 if (!tmp.empty()) {
455                                                         keys += tmp;
456                                                         keys += delim;
457                                                 }
458                                         }
459                                 }
460                         }
461                 }
462                 // Get next file name
463                 bibfiles = split(bibfiles, tmp, ',');
464         }
465         return keys;
466 }
467
468
469 // BibTeX should have its own dialog. This is provisional.
470 void InsetBibtex::Edit(BufferView *, int, int, unsigned int)
471 {
472         if (!bibitem_form) {
473                 bibitem_form = create_form_bibitem_form();
474                 fl_set_form_atclose(bibitem_form->bibitem_form, 
475                                     CancelCloseBoxCB, 0);
476         }
477
478         bibitem_form->bibitem_form->u_vdata = this;
479         fl_set_object_label(bibitem_form->key, _("Database:"));
480         fl_set_object_label(bibitem_form->label, _("Style:  "));
481         fl_set_input(bibitem_form->key, getContents().c_str());
482         fl_set_input(bibitem_form->label, getOptions().c_str());
483         if (bibitem_form->bibitem_form->visible) {
484                 fl_raise_form(bibitem_form->bibitem_form);
485         } else {
486                 fl_show_form(bibitem_form->bibitem_form,
487                              FL_PLACE_MOUSE, FL_FULLBORDER,
488                              _("BibTeX"));
489         }   
490 }
491
492
493 bool InsetBibtex::addDatabase(string const & db)
494 {
495         if (!contains(contents, db.c_str())) {
496                 if (!contents.empty()) 
497                         contents += ',';
498                 contents += db;
499                 return true;
500         }
501         return false;
502 }
503
504
505 bool InsetBibtex::delDatabase(string const & db)
506 {
507         if (contains(contents, db.c_str())) {
508                 string bd = db;
509                 int n = tokenPos(contents, ',', bd);
510                 if (n > 0) {
511                         // Weird code, would someone care to explain this?(Lgb)
512                         string tmp(", ");
513                         tmp += bd;
514                         contents = subst(contents, tmp.c_str(), ", ");
515                 } else if (n == 0)
516                         contents = split(contents, bd, ',');
517                 else 
518                         return false;
519         }
520         return true;
521 }
522
523
524 // This function should be in LyXView when multiframe works ale970302
525 void BibitemUpdate(Combox * combox)
526 {
527         combox->clear();
528         
529         if (!current_view->available()) return;
530         
531         string tmp, bibkeys = current_view->buffer()->getBibkeyList(',');
532         bibkeys = split(bibkeys, tmp,',');
533         while (!tmp.empty()) {
534                 combox->addto(tmp.c_str());
535                 bibkeys = split(bibkeys, tmp,',');
536         }
537 }
538
539
540
541 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
542 int bibitemMaxWidth(Painter & pain, LyXFont const & font)
543 {
544         int w = 0;
545         // Does look like a hack? It is! (but will change at 0.13)
546         LyXParagraph * par = current_view->buffer()->paragraph;
547     
548         while (par) {
549                 if (par->bibkey) {
550                         int wx = par->bibkey->width(pain, font);
551                         if (wx > w) w = wx;
552                 }
553                 par = par->next;
554         }
555         return w;
556 }
557
558
559 // ale070405
560 string bibitemWidthest(Painter & pain)
561 {
562         int w = 0;
563         // Does look like a hack? It is! (but will change at 0.13)
564         LyXParagraph * par = current_view->buffer()->paragraph;
565         InsetBibKey * bkey = 0;
566         LyXFont font;
567       
568         while (par) {
569                 if (par->bibkey) {
570                         int wx = par->bibkey->width(pain, font);
571                         if (wx > w) {
572                                 w = wx;
573                                 bkey = par->bibkey;
574                         }
575                 }
576                 par = par->next;
577         }
578     
579         if (bkey && !bkey->getScreenLabel().empty())
580                 return bkey->getScreenLabel();
581     
582         return "99";
583 }