/** * \file insetwrap.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Dekel Tsur * * Full author contact details are available in file CREDITS. */ #include #include "insetwrap.h" #include "buffer.h" #include "bufferparams.h" #include "BufferView.h" #include "cursor.h" #include "debug.h" #include "dispatchresult.h" #include "Floating.h" #include "FloatList.h" #include "funcrequest.h" #include "gettext.h" #include "LaTeXFeatures.h" #include "LColor.h" #include "lyxlex.h" #include "outputparams.h" #include "paragraph.h" #include "support/std_sstream.h" #include "support/tostr.h" using std::string; using std::endl; using std::auto_ptr; using std::istringstream; using std::ostream; using std::ostringstream; namespace { // this should not be hardcoded, but be part of the definition // of the float (JMarc) string const caplayout("Caption"); string floatname(string const & type, BufferParams const & bp) { FloatList const & floats = bp.getLyXTextClass().floats(); FloatList::const_iterator it = floats[type]; return (it == floats.end()) ? type : _(it->second.name()); } } // namespace anon InsetWrap::InsetWrap(BufferParams const & bp, string const & type) : InsetCollapsable(bp) { setLabel(_("wrap: ") + floatname(type, bp)); LyXFont font(LyXFont::ALL_SANE); font.decSize(); font.decSize(); font.setColor(LColor::collapsable); setLabelFont(font); params_.type = type; params_.width = LyXLength(50, LyXLength::PCW); setInsetName(type); LyXTextClass const & tclass = bp.getLyXTextClass(); if (tclass.hasLayout(caplayout)) paragraphs().begin()->layout(tclass[caplayout]); } InsetWrap::~InsetWrap() { InsetWrapMailer(*this).hideDialog(); } void InsetWrap::priv_dispatch(LCursor & cur, FuncRequest & cmd) { switch (cmd.action) { case LFUN_INSET_MODIFY: { InsetWrapParams params; InsetWrapMailer::string2params(cmd.argument, params); params_.placement = params.placement; params_.width = params.width; cur.bv().update(); break; } case LFUN_INSET_DIALOG_UPDATE: InsetWrapMailer(*this).updateDialog(&cur.bv()); break; case LFUN_MOUSE_RELEASE: { if (cmd.button() == mouse_button::button3 && hitButton(cmd)) { InsetWrapMailer(*this).showDialog(&cur.bv()); break; } InsetCollapsable::priv_dispatch(cur, cmd); break; } default: InsetCollapsable::priv_dispatch(cur, cmd); break; } } void InsetWrapParams::write(ostream & os) const { os << "Wrap " << type << '\n'; if (!placement.empty()) os << "placement " << placement << "\n"; os << "width \"" << width.asString() << "\"\n"; } void InsetWrapParams::read(LyXLex & lex) { string token; lex >> token; if (token == "placement") lex >> placement; else { // take countermeasures lex.pushToken(token); } if (!lex) return; lex >> token; if (token == "width") { lex.next(); width = LyXLength(lex.getString()); } else { lyxerr << "InsetWrap::Read:: Missing 'width'-tag!" << endl; // take countermeasures lex.pushToken(token); } } void InsetWrap::write(Buffer const & buf, ostream & os) const { params_.write(os); InsetCollapsable::write(buf, os); } void InsetWrap::read(Buffer const & buf, LyXLex & lex) { params_.read(lex); InsetCollapsable::read(buf, lex); } void InsetWrap::validate(LaTeXFeatures & features) const { features.require("floatflt"); InsetCollapsable::validate(features); } auto_ptr InsetWrap::clone() const { return auto_ptr(new InsetWrap(*this)); } string const InsetWrap::editMessage() const { return _("Opened Wrap Inset"); } int InsetWrap::latex(Buffer const & buf, ostream & os, OutputParams const & runparams) const { os << "\\begin{floating" << params_.type << '}'; if (!params_.placement.empty()) os << '[' << params_.placement << ']'; os << '{' << params_.width.asLatexString() << "}%\n"; int const i = InsetText::latex(buf, os, runparams); os << "\\end{floating" << params_.type << "}%\n"; return i + 2; } int InsetWrap::docbook(Buffer const & buf, ostream & os, OutputParams const & runparams) const { os << '<' << params_.type << '>'; int const i = InsetText::docbook(buf, os, runparams); os << "'; return i; } bool InsetWrap::insetAllowed(InsetOld::Code code) const { switch(code) { case FLOAT_CODE: case FOOT_CODE: case MARGIN_CODE: return false; default: return InsetCollapsable::insetAllowed(code); } } bool InsetWrap::showInsetDialog(BufferView * bv) const { if (!InsetText::showInsetDialog(bv)) InsetWrapMailer(const_cast(*this)).showDialog(bv); return true; } void InsetWrap::addToToc(lyx::toc::TocList & toclist, Buffer const & buf) const { // Now find the caption in the float... ParagraphList::const_iterator tmp = paragraphs().begin(); ParagraphList::const_iterator end = paragraphs().end(); for (; tmp != end; ++tmp) { if (tmp->layout()->name() == caplayout) { string const name = floatname(params_.type, buf.params()); string const str = tostr(toclist[name].size() + 1) + ". " + tmp->asString(buf, false); lyx::toc::TocItem const item(tmp->id(), 0 , str); toclist[name].push_back(item); } } } string const InsetWrapMailer::name_("wrap"); InsetWrapMailer::InsetWrapMailer(InsetWrap & inset) : inset_(inset) {} string const InsetWrapMailer::inset2string(Buffer const &) const { return params2string(inset_.params()); } void InsetWrapMailer::string2params(string const & in, InsetWrapParams & params) { params = InsetWrapParams(); if (in.empty()) return; istringstream data(in); LyXLex lex(0,0); lex.setStream(data); string name; lex >> name; if (!lex || name != name_) return print_mailer_error("InsetWrapMailer", in, 1, name_); // This is part of the inset proper that is usually swallowed // by LyXText::readInset string id; lex >> id; if (!lex || id != "Wrap") return print_mailer_error("InsetBoxMailer", in, 2, "Wrap"); // We have to read the type here! lex >> params.type; params.read(lex); } string const InsetWrapMailer::params2string(InsetWrapParams const & params) { ostringstream data; data << name_ << ' '; params.write(data); return data.str(); }