]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbib.C
reformatting and remove using delc
[lyx.git] / src / insets / insetbib.C
index 8dceec8e52c0cb080acaf81a062d74855c99d390..3696dbbdf2c0b089401e30ef4d06f6e08d6c1b10 100644 (file)
@@ -8,17 +8,18 @@
 #endif
 
 #include FORMS_H_LOCATION  
+#include "frontends/Dialogs.h"
 #include "insetbib.h"
-#include "combox.h"
 #include "buffer.h"
 #include "debug.h"
-#include "lyx_gui_misc.h"
 #include "BufferView.h"
 #include "gettext.h"
-#include "bibforms.h"
 #include "lyxtext.h"
 #include "support/filetools.h"
 #include "support/path.h"
+#include "lyxrc.h"
+#include "font.h"
+#include "LyXView.h" 
 
 using std::ostream;
 using std::ifstream;
@@ -26,101 +27,36 @@ using std::getline;
 using std::endl;
 using std::vector;
 using std::pair;
+using std::max;
 
-extern BufferView * current_view;
+int InsetBibKey::key_counter = 0;
+const string key_prefix = "key-";
 
-FD_bibitem_form * bibitem_form = 0;
-
-FD_bibitem_form * create_form_bibitem_form(void);
-
-
-extern "C" void bibitem_cb(FL_OBJECT *, long data)
-{
-       switch (data)
-       {
-       case 1:
-       {
-               InsetBibKey::Holder * holder =
-                       static_cast<InsetBibKey::Holder*>
-                       (bibitem_form->bibitem_form->u_vdata);
-               
-               if(!holder->view->buffer()->isReadonly())
-               {
-                       InsetBibKey * inset = holder->inset;
-                       inset->setContents(fl_get_input(bibitem_form->key));
-                       inset->setOptions(fl_get_input(bibitem_form->label));
-                       fl_hide_form(bibitem_form->bibitem_form);
-                       // Does look like a hack? It is! (but will change at 0.13)
-                       holder->view->text->RedoParagraph(holder->view);
-                       holder->view->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
-                       break;
-               } // fall through to Cancel on RO-mode
-       }
-       case 0:
-               fl_hide_form(bibitem_form->bibitem_form);
-               break;
-        }
-}
-
-
-FD_bibitem_form * create_form_bibitem_form(void)
-{
-       FL_OBJECT * obj;
-       FD_bibitem_form * fdui = (FD_bibitem_form *) fl_calloc(1, sizeof(FD_bibitem_form));
-
-       fdui->bibitem_form = fl_bgn_form(FL_NO_BOX, 220, 130);
-       obj = fl_add_box(FL_UP_BOX, 0, 0, 220, 130, "");
-       fdui->key = obj = fl_add_input(FL_NORMAL_INPUT, 80, 10, 130, 30, idex(_("Key:|#K")));
-       fl_set_input_shortcut(obj, scex(_("Key:|#K")), 1);
-       fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-       obj = fl_add_button(FL_RETURN_BUTTON, 20, 90, 90, 30, _("OK"));
-       fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-       fl_set_object_callback(obj, bibitem_cb, 1);
-       obj = fl_add_button(FL_NORMAL_BUTTON, 120, 90, 90, 30, idex(_("Cancel|^[")));
-       fl_set_button_shortcut(obj, scex(_("Cancel|^[")), 1);
-       fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-       fl_set_object_callback(obj, bibitem_cb, 0);
-       fdui->label = obj = fl_add_input(FL_NORMAL_INPUT, 80, 50, 130, 30, idex(_("Label:|#L")));
-       fl_set_input_shortcut(obj, scex(_("Label:|#L")), 1);
-       fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-       fl_end_form();
-
-       //fdui->bibitem_form->fdui = fdui;
-
-       return fdui;
-}
-
-
-InsetBibKey::InsetBibKey(string const & key, string const & label):
-       InsetCommand("bibitem", key, label)
+InsetBibKey::InsetBibKey(InsetCommandParams const & p)
+       : InsetCommand(p)
 {
        counter = 1;
-       if (key.empty())
-               setCmdName(" ");
+       if (getContents().empty())
+               setContents(key_prefix + tostr(++key_counter));
 }
 
 
-InsetBibKey::InsetBibKey(InsetBibKey const * b):
-       InsetCommand("bibitem", b->getContents(), b->getOptions())
+InsetBibKey::~InsetBibKey()
 {
-       counter = b->counter;
 }
 
 
-InsetBibKey::~InsetBibKey()
+Inset * InsetBibKey::Clone(Buffer const &) const
 {
-       if(bibitem_form && bibitem_form->bibitem_form
-          && bibitem_form->bibitem_form->visible
-          && bibitem_form->bibitem_form->u_vdata == &holder)
-               fl_hide_form(bibitem_form->bibitem_form);
+       InsetBibKey * b = new InsetBibKey(params());
+       b->setCounter(counter);
+       return b;
 }
 
+
 void InsetBibKey::setCounter(int c) 
 { 
        counter = c; 
-    
-       if (getCmdName().empty())
-               setCmdName( tostr(counter) );
 }
 
 
@@ -140,84 +76,62 @@ void InsetBibKey::Write(Buffer const *, ostream & os) const
 }
 
 
-string InsetBibKey::getScreenLabel() const
+// This is necessary here because this is written without begin_inset
+// This should be changed!!! (Jug)
+void InsetBibKey::Read(Buffer const *, LyXLex & lex)
+{    
+       string token;
+
+       if (lex.EatLine()) {
+               token = lex.GetString();
+               scanCommand(token);
+       } else
+               lex.printError("InsetCommand: Parse error: `$$Token'");
+
+       if (prefixIs(getContents(), key_prefix)) {
+               int key = strToInt(getContents().substr(key_prefix.length()));
+               key_counter = max(key_counter, key);
+       }
+}
+
+string const InsetBibKey::getBibLabel() const
 {
        if (! getOptions().empty())
                return getOptions();
-    
        return tostr(counter);
 }
 
-
-/*
-  The value in "Key:" isn't allways set right after a few bibkey insets have
-  been added/removed.  Perhaps the wrong object is deleted/used somewhere
-  upwards?
-  (Joacim 1998-03-04)
-*/
-void InsetBibKey::Edit(BufferView * bv, int, int, unsigned int)
+string const InsetBibKey::getScreenLabel() const
 {
-       if(bv->buffer()->isReadonly())
-               WarnReadonly(bv->buffer()->fileName());
-       
-       if (!bibitem_form) {
-               bibitem_form = create_form_bibitem_form();
-               fl_set_form_atclose(bibitem_form->bibitem_form, 
-                                   CancelCloseBoxCB, 0);
-       }
-
-       holder.inset = this;
-       holder.view = bv;
-       
-       bibitem_form->bibitem_form->u_vdata = &holder;
-       // InsetBibtex uses the same form, with different labels
-       fl_set_object_label(bibitem_form->key, idex(_("Key:|#K")));
-       fl_set_button_shortcut(bibitem_form->key, scex(_("Key:|#K")), 1);
-       fl_set_object_label(bibitem_form->label, idex(_("Label:|#L")));
-       fl_set_button_shortcut(bibitem_form->label, scex(_("Label:|#L")), 1);
-       fl_set_input(bibitem_form->key, getContents().c_str());
-       fl_set_input(bibitem_form->label, getOptions().c_str());
-       if (bibitem_form->bibitem_form->visible) {
-               fl_raise_form(bibitem_form->bibitem_form);
-       } else {
-               fl_show_form(bibitem_form->bibitem_form, FL_PLACE_MOUSE,
-                            FL_FULLBORDER,
-                            _("Bibliography item"));
-       }   
+       return getContents() + " [" + getBibLabel() + "]";
 }
 
 
-InsetBibtex::InsetBibtex(string const & dbase, string const & style,
-                        Buffer * o)
-       : InsetCommand("BibTeX", dbase, style), owner(o)
-{
+void InsetBibKey::Edit(BufferView * bv, int, int, unsigned int)
+{ 
+       bv->owner()->getDialogs()->showBibitem(this);
 }
 
+
+InsetBibtex::InsetBibtex(InsetCommandParams const & p)
+       : InsetCommand(p)
+{}
+
+
 InsetBibtex::~InsetBibtex()
 {
-       if(bibitem_form && bibitem_form->bibitem_form
-          && bibitem_form->bibitem_form->visible
-          && bibitem_form->bibitem_form->u_vdata == &holder)
-               fl_hide_form(bibitem_form->bibitem_form);
 }
 
 
-string InsetBibtex::getScreenLabel() const
+string const InsetBibtex::getScreenLabel() const
 {
        return _("BibTeX Generated References");
 }
 
 
-int InsetBibtex::Latex(Buffer const *, ostream & os,
+int InsetBibtex::Latex(Buffer const * buffer, ostream & os,
                       bool /*fragile*/, bool/*fs*/) const
 {
-       // this looks like an horrible hack and it is :) The problem
-       // is that owner is not initialized correctly when the bib
-       // inset is cut and pasted. Such hacks will not be needed
-       // later (JMarc)
-       if (!owner) {
-               owner = current_view->buffer();
-       }
        // If we generate in a temp dir, we might need to give an
        // absolute path there. This is a bit complicated since we can
        // have a comma-separated list of bibliographies
@@ -225,9 +139,9 @@ int InsetBibtex::Latex(Buffer const *, ostream & os,
        string db_in = getContents();
        db_in = split(db_in, adb, ',');
        while(!adb.empty()) {
-               if (!owner->niceFile &&
-                   IsFileReadable(MakeAbsPath(adb, owner->filepath)+".bib")) 
-                         adb = MakeAbsPath(adb, owner->filepath);
+               if (!buffer->niceFile &&
+                   IsFileReadable(MakeAbsPath(adb, buffer->filepath)+".bib")) 
+                         adb = MakeAbsPath(adb, buffer->filepath);
 
                db_out += adb;
                db_out += ',';
@@ -236,10 +150,10 @@ int InsetBibtex::Latex(Buffer const *, ostream & os,
        db_out = strip(db_out, ',');
        // Idem, but simpler
        string style;
-       if (!owner->niceFile 
-           && IsFileReadable(MakeAbsPath(getOptions(), owner->filepath)
+       if (!buffer->niceFile 
+           && IsFileReadable(MakeAbsPath(getOptions(), buffer->filepath)
                              + ".bst")) 
-               style = MakeAbsPath(getOptions(), owner->filepath);
+               style = MakeAbsPath(getOptions(), buffer->filepath);
        else
                style = getOptions();
 
@@ -250,19 +164,9 @@ int InsetBibtex::Latex(Buffer const *, ostream & os,
 
 
 // This method returns a comma separated list of Bibtex entries
-vector<pair<string,string> > InsetBibtex::getKeys() const
+vector<pair<string, string> > const InsetBibtex::getKeys(Buffer const * buffer) const
 {
-       // This hack is copied from InsetBibtex::Latex.
-       // Is it still needed? Probably yes.
-       // Why is this needed here when it already is in Latex?
-       // Anyway we need a different way to get to the
-       // buffer the inset is in. (Lgb)
-       
-       //if (!owner) {
-       //      owner = current_view->buffer();
-       //}
-       
-       Path p(owner->filepath);
+       Path p(buffer->filepath);
 
        vector<pair<string,string> > keys;
        string tmp;
@@ -282,7 +186,7 @@ vector<pair<string,string> > InsetBibtex::getKeys() const
                        string linebuf0;
                        while (getline(ifs, linebuf0)) {
                                string linebuf = frontStrip(strip(linebuf0));
-                               iflinebuf.empty() ) continue;
+                               if (linebuf.empty() ) continue;
                                if (prefixIs(linebuf, "@")) {
                                        linebuf = subst(linebuf, '{', '(');
                                        linebuf = split(linebuf, tmp, '(');
@@ -295,7 +199,7 @@ vector<pair<string,string> > InsetBibtex::getKeys() const
                                                        keys.push_back(pair<string,string>(tmp,string()));
                                                }
                                        }
-                               } else if( !keys.empty() ) {
+                               } else if (!keys.empty()) {
                                        keys.back().second += linebuf + "\n";
                                }
                        }
@@ -307,39 +211,19 @@ vector<pair<string,string> > InsetBibtex::getKeys() const
 }
 
 
-// BibTeX should have its own dialog. This is provisional.
 void InsetBibtex::Edit(BufferView * bv, int, int, unsigned int)
 {
-       if (!bibitem_form) {
-               bibitem_form = create_form_bibitem_form();
-               fl_set_form_atclose(bibitem_form->bibitem_form, 
-                                   CancelCloseBoxCB, 0);
-       }
-
-       holder.inset = this;
-       holder.view = bv;
-       bibitem_form->bibitem_form->u_vdata = &holder;
-
-       fl_set_object_label(bibitem_form->key, _("Database:"));
-       fl_set_object_label(bibitem_form->label, _("Style:  "));
-       fl_set_input(bibitem_form->key, getContents().c_str());
-       fl_set_input(bibitem_form->label, getOptions().c_str());
-       if (bibitem_form->bibitem_form->visible) {
-               fl_raise_form(bibitem_form->bibitem_form);
-       } else {
-               fl_show_form(bibitem_form->bibitem_form,
-                            FL_PLACE_MOUSE, FL_FULLBORDER,
-                            _("BibTeX"));
-       }   
+       bv->owner()->getDialogs()->showBibtex(this);
 }
 
 
 bool InsetBibtex::addDatabase(string const & db)
 {
-       if (!contains(getContents(), db.c_str())) {
-               if (!getContents().empty()) 
-                       addContents(",");
-               addContents(db);
+       string contents(getContents());
+       if (!contains(contents, db)) {
+               if (!contents.empty()) 
+                       contents += ",";
+               setContents(contents + db);
                return true;
        }
        return false;
@@ -348,14 +232,14 @@ bool InsetBibtex::addDatabase(string const & db)
 
 bool InsetBibtex::delDatabase(string const & db)
 {
-       if (contains(getContents(), db.c_str())) {
+       if (contains(getContents(), db)) {
                string bd = db;
-               int n = tokenPos(getContents(), ',', bd);
+               int const n = tokenPos(getContents(), ',', bd);
                if (n > 0) {
                        // Weird code, would someone care to explain this?(Lgb)
                        string tmp(", ");
                        tmp += bd;
-                       setContents(subst(getContents(), tmp.c_str(), ", "));
+                       setContents(subst(getContents(), tmp, ", "));
                } else if (n == 0)
                        setContents(split(getContents(), bd, ','));
                else 
@@ -366,45 +250,55 @@ bool InsetBibtex::delDatabase(string const & db)
 
 
 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
-int bibitemMaxWidth(Painter & pain, LyXFont const & font)
+int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
 {
        int w = 0;
        // Does look like a hack? It is! (but will change at 0.13)
-       LyXParagraph * par = current_view->buffer()->paragraph;
+       LyXParagraph * par = bv->buffer()->paragraph;
     
        while (par) {
                if (par->bibkey) {
-                       int wx = par->bibkey->width(pain, font);
+                       int const wx = par->bibkey->width(bv, font);
                        if (wx > w) w = wx;
                }
-               par = par->next;
+#ifndef NEW_INSETS
+               par = par->next_;
+#else
+               par = par->next();
+#endif
        }
        return w;
 }
 
 
 // ale070405
-string bibitemWidest(Painter & pain)
+string const bibitemWidest(Buffer const * buffer)
 {
        int w = 0;
        // Does look like a hack? It is! (but will change at 0.13)
-       LyXParagraph * par = current_view->buffer()->paragraph;
+       LyXParagraph * par = buffer->paragraph;
        InsetBibKey * bkey = 0;
        LyXFont font;
       
        while (par) {
                if (par->bibkey) {
-                       int wx = par->bibkey->width(pain, font);
+                       int const wx =
+                               lyxfont::width(par->bibkey->getBibLabel(),
+                                              font);
                        if (wx > w) {
                                w = wx;
                                bkey = par->bibkey;
                        }
                }
-               par = par->next;
+#ifndef NEW_INSETS
+               par = par->next_;
+#else
+               par = par->next();
+#endif
        }
     
-       if (bkey && !bkey->getScreenLabel().empty())
-               return bkey->getScreenLabel();
+       if (bkey && !bkey->getBibLabel().empty())
+               return bkey->getBibLabel();
     
        return "99";
 }