From c68601da9fff00795208164a466f998cd502320f Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sun, 2 Dec 2007 17:50:08 +0000 Subject: [PATCH] * BufferView: - dispatch(): transfer LFUN_FILE_INSERT to GuiView::dispatch() - menuInsertLyXFile(): split in BufferView::insertLyXFile() and GuiView::insertLyXFile() git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21923 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/BufferView.cpp | 52 ++++------------------------ src/BufferView.h | 4 +-- src/frontends/qt4/GuiView.cpp | 64 ++++++++++++++++++++++++++++++++++- src/frontends/qt4/GuiView.h | 2 ++ 4 files changed, 73 insertions(+), 49 deletions(-) diff --git a/src/BufferView.cpp b/src/BufferView.cpp index e4a845ff17..6a7568b856 100644 --- a/src/BufferView.cpp +++ b/src/BufferView.cpp @@ -894,11 +894,6 @@ Update::flags BufferView::dispatch(FuncRequest const & cmd) } break; - case LFUN_FILE_INSERT: - // FIXME UNICODE - menuInsertLyXFile(to_utf8(cmd.argument())); - break; - case LFUN_FILE_INSERT_PLAINTEXT_PARA: // FIXME UNICODE insertPlaintextFile(FileName(to_utf8(cmd.argument())), true); @@ -1735,57 +1730,21 @@ void BufferView::updateMetrics() } -void BufferView::menuInsertLyXFile(string const & filenm) +void BufferView::insertLyXFile(FileName const & fname) { BOOST_ASSERT(d->cursor_.inTexted()); - string filename = filenm; - - if (filename.empty()) { - // Launch a file browser - // FIXME UNICODE - string initpath = lyxrc.document_path; - string const trypath = buffer_.filePath(); - // If directory is writeable, use this as default. - if (FileName(trypath).isDirWritable()) - initpath = trypath; - - // FIXME UNICODE - FileDialog dlg(_("Select LyX document to insert"), LFUN_FILE_INSERT); - dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); - dlg.setButton2(_("Examples|#E#e"), - from_utf8(addPath(package().system_support().absFilename(), - "examples"))); - - FileDialog::Result result = - dlg.open(from_utf8(initpath), - FileFilterList(_("LyX Documents (*.lyx)")), - docstring()); - - if (result.first == FileDialog::Later) - return; - - // FIXME UNICODE - filename = to_utf8(result.second); - - // check selected filename - if (filename.empty()) { - // emit message signal. - message(_("Canceled.")); - return; - } - } // Get absolute path of file and add ".lyx" // to the filename if necessary - filename = fileSearch(string(), filename, "lyx").absFilename(); + FileName filename = fileSearch(string(), fname.absFilename(), "lyx"); - docstring const disp_fn = makeDisplayPath(filename); + docstring const disp_fn = makeDisplayPath(filename.absFilename()); // emit message signal. message(bformat(_("Inserting document %1$s..."), disp_fn)); docstring res; Buffer buf("", false); - if (buf.loadLyXFile(FileName(filename))) { + if (buf.loadLyXFile(filename)) { ErrorList & el = buffer_.errorList("Parse"); // Copy the inserted document error list into the current buffer one. el = buf.errorList("Parse"); @@ -1797,10 +1756,11 @@ void BufferView::menuInsertLyXFile(string const & filenm) res = _("Could not insert document %1$s"); } + updateMetrics(); + buffer_.changed(); // emit message signal. message(bformat(res, disp_fn)); buffer_.errors("Parse"); - updateMetrics(); } diff --git a/src/BufferView.h b/src/BufferView.h index 847d67ab29..4f6ee458d6 100644 --- a/src/BufferView.h +++ b/src/BufferView.h @@ -245,6 +245,8 @@ public: bool asParagraph); // Insert plain text file (if filename is empty, prompt for one) void insertPlaintextFile(support::FileName const & f, bool asParagraph); + /// + void insertLyXFile(support::FileName const & f); private: /// noncopyable @@ -273,8 +275,6 @@ private: Buffer & buffer_; /// - void menuInsertLyXFile(std::string const & filen); - void updateOffsetRef(); struct Private; diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 4811e41e49..c7f64a03ea 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -14,8 +14,9 @@ #include #include "GuiView.h" -#include "Dialog.h" +#include "Dialog.h" +#include "frontends/FileDialog.h" #include "GuiApplication.h" #include "GuiWorkArea.h" #include "GuiKeySymbol.h" @@ -49,9 +50,12 @@ #include "ToolbarBackend.h" #include "version.h" +#include "support/FileFilterList.h" #include "support/FileName.h" +#include "support/filetools.h" #include "support/lstrings.h" #include "support/os.h" +#include "support/Package.h" #include "support/Timeout.h" #include @@ -96,8 +100,11 @@ extern bool quitting; namespace frontend { +using support::addPath; using support::bformat; +using support::FileFilterList; using support::FileName; +using support::package; using support::trim; namespace { @@ -1012,6 +1019,57 @@ FuncStatus GuiView::getStatus(FuncRequest const & cmd) } +void GuiView::insertLyXFile(docstring const & fname) +{ + BufferView * bv = view(); + if (!bv) + return; + + // FIXME UNICODE + FileName filename(to_utf8(fname)); + + if (!filename.empty()) { + bv->insertLyXFile(filename); + return; + } + + // Launch a file browser + // FIXME UNICODE + string initpath = lyxrc.document_path; + string const trypath = bv->buffer().filePath(); + // If directory is writeable, use this as default. + if (FileName(trypath).isDirWritable()) + initpath = trypath; + + // FIXME UNICODE + FileDialog dlg(_("Select LyX document to insert"), LFUN_FILE_INSERT); + dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); + dlg.setButton2(_("Examples|#E#e"), + from_utf8(addPath(package().system_support().absFilename(), + "examples"))); + + FileDialog::Result result = + dlg.open(from_utf8(initpath), + FileFilterList(_("LyX Documents (*.lyx)")), + docstring()); + + if (result.first == FileDialog::Later) + return; + + // FIXME UNICODE + filename.set(to_utf8(result.second)); + + // check selected filename + if (filename.empty()) { + // emit message signal. + message(_("Canceled.")); + return; + } + + bv->insertLyXFile(filename); +} + + bool GuiView::dispatch(FuncRequest const & cmd) { BufferView * bv = view(); @@ -1046,6 +1104,10 @@ bool GuiView::dispatch(FuncRequest const & cmd) d.menubar_->openByName(toqstr(cmd.argument())); break; + case LFUN_FILE_INSERT: + insertLyXFile(cmd.argument()); + break; + case LFUN_TOOLBAR_TOGGLE: { string const name = cmd.getArg(0); bool const allowauto = cmd.getArg(1) == "allowauto"; diff --git a/src/frontends/qt4/GuiView.h b/src/frontends/qt4/GuiView.h index 6c4ce6e7d2..c57a129b70 100644 --- a/src/frontends/qt4/GuiView.h +++ b/src/frontends/qt4/GuiView.h @@ -233,6 +233,8 @@ public: void disconnectDialog(std::string const & name); private: + /// + void insertLyXFile(docstring const & fname); /// Inset * getOpenInset(std::string const & name) const; -- 2.39.5