/** * \file ControlViewSource.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * \author Angus Leeming * \author Bo Peng * * Full author contact details are available in file CREDITS. */ #include #include "ControlViewSource.h" #include "gettext.h" #include "support/types.h" #include "BufferView.h" #include "buffer.h" #include "cursor.h" #include using std::string; namespace lyx { namespace frontend { ControlViewSource::ControlViewSource(Dialog & parent) : Dialog::Controller(parent) {} bool ControlViewSource::initialiseParams(string const & /*source*/) { return true; } docstring const ControlViewSource::updateContent(bool fullSource) { // get the *top* level paragraphs that contain the cursor, // or the selected text lyx::pit_type par_begin; lyx::pit_type par_end; BufferView * view = kernel().bufferview(); if (!view->cursor().selection()) { par_begin = view->cursor().bottom().pit(); par_end = par_begin; } else { par_begin = view->cursor().selectionBegin().bottom().pit(); par_end = view->cursor().selectionEnd().bottom().pit(); } if (par_begin > par_end) std::swap(par_begin, par_end); lyx::odocstringstream ostr; view->buffer()->getSourceCode(ostr, par_begin, par_end + 1, fullSource); return ostr.str(); } void ControlViewSource::clearParams() { } docstring const ControlViewSource::title() const { string source_type; Kernel::DocType doctype = kernel().docType(); switch (doctype) { case Kernel::LATEX: source_type = "LaTeX"; break; case Kernel::DOCBOOK: source_type = "DocBook"; break; case Kernel::LITERATE: source_type = "Literate"; default: BOOST_ASSERT(false); } return _(source_type + " Source"); } } // namespace frontend } // namespace lyx