X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flyx_cb.C;h=213ff3967687d8eb375f36ec1a2f8c5236375742;hb=86e0dfa3e11957318ca4f3f549248326aa806eb4;hp=5838b29e143b55fd14839a4288a0737d252f8cf8;hpb=4bcfc43c2958ef6dd083210ed25db4eb5a290a87;p=lyx.git diff --git a/src/lyx_cb.C b/src/lyx_cb.C index 5838b29e14..213ff39676 100644 --- a/src/lyx_cb.C +++ b/src/lyx_cb.C @@ -44,6 +44,8 @@ #include "support/path_defines.h" #include "support/systemcall.h" +#include + #include #include @@ -71,7 +73,8 @@ using lyx::support::user_lyxdir; namespace os = lyx::support::os; -using std::auto_ptr; +using boost::shared_ptr; + using std::back_inserter; using std::copy; using std::endl; @@ -221,8 +224,9 @@ public: AutoSaveBuffer(BufferView & bv, string const & fname) : bv_(bv), fname_(fname) {} /// - virtual auto_ptr clone() const { - return auto_ptr(new AutoSaveBuffer(*this)); + virtual shared_ptr clone() const + { + return shared_ptr(new AutoSaveBuffer(*this)); } /// int start(); @@ -238,7 +242,7 @@ private: int AutoSaveBuffer::start() { command_ = bformat(_("Auto-saving %1$s"), fname_); - return runNonBlocking(); + return run(DontWait); } @@ -432,49 +436,6 @@ string getContentsOfAsciiFile(BufferView * bv, string const & f, bool asParagrap } -string const getPossibleLabel(BufferView const & bv) -{ - ParagraphList::iterator pit = bv.getLyXText()->cursorPar(); - ParagraphList & plist = bv.getLyXText()->paragraphs(); - - LyXLayout_ptr layout = pit->layout(); - - if (layout->latextype == LATEX_PARAGRAPH && pit != plist.begin()) { - ParagraphList::iterator pit2 = boost::prior(pit); - - LyXLayout_ptr const & layout2 = pit2->layout(); - - if (layout2->latextype != LATEX_PARAGRAPH) { - pit = pit2; - layout = layout2; - } - } - - string text = layout->latexname().substr(0, 3); - if (layout->latexname() == "theorem") - text = "thm"; // Create a correct prefix for prettyref - - text += ':'; - if (layout->latextype == LATEX_PARAGRAPH || - lyxrc.label_init_length < 0) - text.erase(); - - string par_text = pit->asString(*bv.buffer(), false); - for (int i = 0; i < lyxrc.label_init_length; ++i) { - if (par_text.empty()) - break; - string head; - par_text = split(par_text, head, ' '); - // Is it legal to use spaces in labels ? - if (i > 0) - text += '-'; - text += head; - } - - return text; -} - - // This function runs "configure" and then rereads lyx.defaults to // reconfigure the automatic settings. void Reconfigure(BufferView * bv)