]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetwrap.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetwrap.C
index 1ea115fb2a79a405290989c5599b23d1b222bbe9..570802c50d70b6371f71452d6cf531b577cd2b32 100644 (file)
 #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 "FuncStatus.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
 #include "LColor.h"
 #include "lyxlex.h"
 #include "outputparams.h"
 #include "paragraph.h"
+#include "TocBackend.h"
 
-#include "support/std_sstream.h"
-#include "support/tostr.h"
+#include "support/convert.h"
 
 
+namespace lyx {
+
 using std::string;
 using std::endl;
 using std::auto_ptr;
@@ -39,26 +43,10 @@ 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));
+       setLabel(_("wrap: ") + floatName(type, bp));
        LyXFont font(LyXFont::ALL_SANE);
        font.decSize();
        font.decSize();
@@ -66,10 +54,7 @@ InsetWrap::InsetWrap(BufferParams const & bp, string const & type)
        setLabelFont(font);
        params_.type = type;
        params_.width = LyXLength(50, LyXLength::PCW);
-       setInsetName(type);
-       LyXTextClass const & tclass = bp.getLyXTextClass();
-       if (tclass.hasLayout(caplayout))
-               inset.paragraphs().begin()->layout(tclass[caplayout]);
+       setInsetName(from_utf8(type));
 }
 
 
@@ -79,27 +64,48 @@ InsetWrap::~InsetWrap()
 }
 
 
-DispatchResult
-InsetWrap::priv_dispatch(BufferView & bv, FuncRequest const & cmd)
+void InsetWrap::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
        case LFUN_INSET_MODIFY: {
                InsetWrapParams params;
-               InsetWrapMailer::string2params(cmd.argument, params);
-
+               InsetWrapMailer::string2params(to_utf8(cmd.argument()), params);
                params_.placement = params.placement;
                params_.width     = params.width;
+               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::doDispatch(cur, cmd);
+               break;
+       }
 
-               bv.update();
-               return DispatchResult(true, true);
+       default:
+               InsetCollapsable::doDispatch(cur, cmd);
+               break;
        }
+}
 
+
+bool InsetWrap::getStatus(LCursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const
+{
+       switch (cmd.action) {
+       case LFUN_INSET_MODIFY:
        case LFUN_INSET_DIALOG_UPDATE:
-               InsetWrapMailer(*this).updateDialog(&bv);
-               return DispatchResult(true, true);
+               flag.enabled(true);
+               return true;
 
        default:
-               return InsetCollapsable::priv_dispatch(bv, cmd);
+               return InsetCollapsable::getStatus(cur, cmd, flag);
        }
 }
 
@@ -117,29 +123,25 @@ void InsetWrapParams::write(ostream & os) const
 
 void InsetWrapParams::read(LyXLex & lex)
 {
-       if (lex.isOK()) {
-               lex.next();
-               string token = lex.getString();
-               if (token == "placement") {
-                       lex.next();
-                       placement = lex.getString();
-               } else {
-                       // take countermeasures
-                       lex.pushToken(token);
-               }
+       string token;
+       lex >> token;
+       if (token == "placement")
+               lex >> placement;
+       else {
+               // take countermeasures
+               lex.pushToken(token);
        }
-       if (lex.isOK()) {
+       if (!lex)
+               return;
+       lex >> token;
+       if (token == "width") {
                lex.next();
-               string token = lex.getString();
-               if (token == "width") {
-                       lex.next();
-                       width = LyXLength(lex.getString());
-               } else {
-                       lyxerr << "InsetWrap::Read:: Missing 'width'-tag!"
-                              << endl;
-                       // take countermeasures
-                       lex.pushToken(token);
-               }
+               width = LyXLength(lex.getString());
+       } else {
+               lyxerr << "InsetWrap::Read:: Missing 'width'-tag!"
+                       << endl;
+               // take countermeasures
+               lex.pushToken(token);
        }
 }
 
@@ -165,46 +167,43 @@ void InsetWrap::validate(LaTeXFeatures & features) const
 }
 
 
-auto_ptr<InsetBase> InsetWrap::clone() const
+auto_ptr<InsetBase> InsetWrap::doClone() const
 {
        return auto_ptr<InsetBase>(new InsetWrap(*this));
 }
 
 
-string const InsetWrap::editMessage() const
+docstring const InsetWrap::editMessage() const
 {
        return _("Opened Wrap Inset");
 }
 
 
-int InsetWrap::latex(Buffer const & buf, ostream & os,
+int InsetWrap::latex(Buffer const & buf, odocstream & 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 = inset.latex(buf, os, runparams);
-
-       os << "\\end{floating" << params_.type << "}%\n";
+       os << "\\begin{floating" << from_ascii(params_.type) << '}';
+       if (!params_.placement.empty())
+               os << '[' << from_ascii(params_.placement) << ']';
+       os << '{' << from_ascii(params_.width.asLatexString()) << "}%\n";
+       int const i = InsetText::latex(buf, os, runparams);
+       os << "\\end{floating" << from_ascii(params_.type) << "}%\n";
        return i + 2;
 }
 
 
-int InsetWrap::docbook(Buffer const & buf, ostream & os,
+int InsetWrap::docbook(Buffer const & buf, odocstream & os,
                       OutputParams const & runparams) const
 {
-       os << '<' << params_.type << '>';
-       int const i = inset.docbook(buf, os, runparams);
-       os << "</" << params_.type << '>';
-
+        // FIXME UNICODE
+        os << '<' << from_ascii(params_.type) << '>';
+       int const i = InsetText::docbook(buf, os, runparams);
+       os << "</" << from_ascii(params_.type) << '>';
        return i;
 }
 
 
-bool InsetWrap::insetAllowed(InsetOld::Code code) const
+bool InsetWrap::insetAllowed(InsetBase::Code code) const
 {
        switch(code) {
        case FLOAT_CODE:
@@ -219,26 +218,25 @@ bool InsetWrap::insetAllowed(InsetOld::Code code) const
 
 bool InsetWrap::showInsetDialog(BufferView * bv) const
 {
-       if (!inset.showInsetDialog(bv))
+       if (!InsetText::showInsetDialog(bv))
                InsetWrapMailer(const_cast<InsetWrap &>(*this)).showDialog(bv);
        return true;
 }
 
 
-void InsetWrap::addToToc(lyx::toc::TocList & toclist, Buffer const & buf) const
+void InsetWrap::addToToc(TocList & toclist, Buffer const & buf) const
 {
-       // Now find the caption in the float...
-       ParagraphList::iterator tmp = inset.paragraphs().begin();
-       ParagraphList::iterator end = inset.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);
+       ParConstIterator pit = par_const_iterator_begin(*this);
+       ParConstIterator end = par_const_iterator_end(*this);
+
+       // Find a caption layout in one of the (child inset's) pars
+       for (; pit != end; ++pit) {
+               if (pit->layout()->labeltype == LABEL_SENSITIVE) {
+                       Toc & toc = toclist[params_.type];
+                       docstring const str =
+                               convert<docstring>(toc.size() + 1)
+                               + ". " + pit->asString(buf, false);
+                       toc.push_back(TocItem(pit, 0, str));
                }
        }
 }
@@ -279,6 +277,8 @@ void InsetWrapMailer::string2params(string const & in, InsetWrapParams & params)
        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);
 }
 
@@ -290,3 +290,6 @@ string const InsetWrapMailer::params2string(InsetWrapParams const & params)
        params.write(data);
        return data.str();
 }
+
+
+} // namespace lyx