]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbox.C
convert graphics for .tex export, fixes bug 1231
[lyx.git] / src / insets / insetbox.C
index adbb9c0c8892503346749e0931c9a294f1d613b5..4f8124fff5579fdd78c07bd616787fb684de7ebc 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "insetbox.h"
 
-#include "BufferView.h"
+#include "cursor.h"
 #include "dispatchresult.h"
 #include "debug.h"
 #include "funcrequest.h"
@@ -26,6 +26,7 @@
 #include "paragraph.h"
 
 #include "support/std_sstream.h"
+#include "support/translator.h"
 
 using std::auto_ptr;
 using std::string;
@@ -37,6 +38,8 @@ using std::endl;
 
 namespace {
 
+typedef Translator<std::string, InsetBox::BoxType> BoxTranslator;
+
 BoxTranslator const init_boxtranslator() {
        BoxTranslator translator("Boxed", InsetBox::Boxed);
        translator.addPair("Frameless", InsetBox::Frameless);
@@ -96,8 +99,7 @@ InsetBox::InsetBox(InsetBox const & in)
 
 InsetBox::~InsetBox()
 {
-       InsetBoxMailer mailer(*this);
-       mailer.hideDialog();
+       InsetBoxMailer(*this).hideDialog();
 }
 
 
@@ -137,11 +139,11 @@ void InsetBox::setButtonLabel()
        BoxType btype = boxtranslator().find(params_.type);
        if (btype == Frameless) {
                if (params_.use_parbox)
-                       setLabel(_("Parbox"));
+                       setLabel(_("Box") + " (" + _("Parbox") + ")");
                else
-                       setLabel(_("Minipage"));
+                       setLabel(_("Box") + " (" + _("Minipage") + ")");
        } else
-               setLabel(boxtranslator_loc().find(btype));
+               setLabel(_("Box") + " (" + boxtranslator_loc().find(btype) + ")");
 
        font.setColor(LColor::foreground);
        setBackgroundColor(LColor::background);
@@ -149,11 +151,13 @@ void InsetBox::setButtonLabel()
 }
 
 
-void InsetBox::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetBox::metrics(MetricsInfo & m, Dimension & dim) const
 {
+       MetricsInfo mi = m;
+       mi.base.textwidth = params_.width.inPixels(m.base.textwidth);
        InsetCollapsable::metrics(mi, dim);
-       if (params_.inner_box && isOpen())
-               dim.wid = mi.base.textwidth;
+       //if (params_.inner_box && isOpen())
+       //      dim.wid = mi.base.textwidth;
        dim_ = dim;
 }
 
@@ -165,39 +169,38 @@ bool InsetBox::showInsetDialog(BufferView * bv) const
 }
 
 
-DispatchResult
-InsetBox::priv_dispatch(FuncRequest const & cmd,
-                       idx_type & idx, pos_type & pos)
+void InsetBox::priv_dispatch(LCursor & cur, FuncRequest & cmd)
 {
-       BufferView * bv = cmd.view();
-
        switch (cmd.action) {
 
        case LFUN_INSET_MODIFY: {
+               lyxerr << "InsetBox::dispatch MODIFY" << endl;
                InsetBoxMailer::string2params(cmd.argument, params_);
                setButtonLabel();
-               bv->updateInset(this);
-               return DispatchResult(DISPATCHED);
+               break;
        }
+
        case LFUN_INSET_DIALOG_UPDATE:
-               InsetBoxMailer(*this).updateDialog(bv);
-               return DispatchResult(DISPATCHED);
+               InsetBoxMailer(*this).updateDialog(&cur.bv());
+               break;
 
        case LFUN_MOUSE_RELEASE:
                if (cmd.button() == mouse_button::button3 && hitButton(cmd)) {
-                       InsetBoxMailer(*this).showDialog(bv);
-                       return DispatchResult(DISPATCHED);
+                       InsetBoxMailer(*this).showDialog(&cur.bv());
+                       break;
                }
-               // fallthrough:
+               InsetCollapsable::priv_dispatch(cur, cmd);
+               break;
 
        default:
-               return InsetCollapsable::priv_dispatch(cmd, idx, pos);
+               InsetCollapsable::priv_dispatch(cur, cmd);
+               break;
        }
 }
 
 
 int InsetBox::latex(Buffer const & buf, ostream & os,
-                               LatexRunParams const & runparams) const
+                               OutputParams const & runparams) const
 {
        BoxType btype = boxtranslator().find(params_.type);
 
@@ -293,7 +296,7 @@ int InsetBox::latex(Buffer const & buf, ostream & os,
                i += 1;
        }
 
-       i += inset.latex(buf, os, runparams);
+       i += InsetText::latex(buf, os, runparams);
 
        if (params_.inner_box) {
                if (params_.use_parbox)
@@ -326,65 +329,42 @@ int InsetBox::latex(Buffer const & buf, ostream & os,
 
 
 int InsetBox::linuxdoc(Buffer const & buf, std::ostream & os,
-                      LatexRunParams const & runparams) const
+                      OutputParams const & runparams) const
 {
-       return inset.linuxdoc(buf, os, runparams);
+       return InsetText::linuxdoc(buf, os, runparams);
 }
 
 
 int InsetBox::docbook(Buffer const & buf, std::ostream & os,
-                     LatexRunParams const & runparams) const
+                     OutputParams const & runparams) const
 {
-       return inset.docbook(buf, os, runparams);
+       return InsetText::docbook(buf, os, runparams);
 }
 
 
-int InsetBox::ascii(Buffer const & buf, std::ostream & os,
-                   LatexRunParams const & runparams) const
+int InsetBox::plaintext(Buffer const & buf, std::ostream & os,
+                   OutputParams const & runparams) const
 {
-       int i = 0;
-       string const pt = params_.type;
-       BoxType btype = boxtranslator().find(params_.type);
+       BoxType const btype = boxtranslator().find(params_.type);
+
        switch (btype) {
-               case Frameless:
-               break;
-               case Boxed:
-               os << "[";
-               break;
-               case ovalbox:
-               os << "(";
-               break;
-               case Ovalbox:
-               os << "((";
-               break;
-               case Shadowbox:
-               os << "[";
-               break;
-               case Doublebox:
-               os << "[[";
-               break;
+               case Frameless: break;
+               case Boxed:     os << "[";  break;
+               case ovalbox:   os << "(";  break;
+               case Ovalbox:   os << "(("; break;
+               case Shadowbox: os << "[";  break;
+               case Doublebox: os << "[["; break;
        }
 
-       i = inset.ascii(buf, os, runparams);
+       int i = InsetText::plaintext(buf, os, runparams);
 
        switch (btype) {
-               case Frameless:
-               break;
-               case Boxed:
-               os << "]";
-               break;
-               case ovalbox:
-               os << ")";
-               break;
-               case Ovalbox:
-               os << "))";
-               break;
-               case Shadowbox:
-               os << "]/";
-               break;
-               case Doublebox:
-               os << "]]";
-               break;
+               case Frameless: break;
+               case Boxed:     os << "]";  break;
+               case ovalbox:   os << ")";  break;
+               case Ovalbox:   os << "))"; break;
+               case Shadowbox: os << "]/"; break;
+               case Doublebox: os << "]]"; break;
        }
 
        return i;
@@ -406,14 +386,13 @@ void InsetBox::validate(LaTeXFeatures & features) const
                features.require("fancybox");
                break;
        }
-       inset.validate(features);
+       InsetText::validate(features);
 }
 
 
 InsetBoxMailer::InsetBoxMailer(InsetBox & inset)
        : inset_(inset)
-{
-}
+{}
 
 
 string const InsetBoxMailer::name_ = "box";
@@ -435,10 +414,9 @@ string const InsetBoxMailer::params2string(InsetBoxParams const & params)
 
 
 void InsetBoxMailer::string2params(string const & in,
-       InsetBoxParams & params)
+                                  InsetBoxParams & params)
 {
        params = InsetBoxParams(string());
-
        if (in.empty())
                return;
 
@@ -446,10 +424,17 @@ void InsetBoxMailer::string2params(string const & in,
        LyXLex lex(0,0);
        lex.setStream(data);
 
-       string token;
-       lex.next();
-       token = lex.getString();
-       lex.next();
+       string name;
+       lex >> name;
+       if (!lex || name != name_)
+               return print_mailer_error("InsetBoxMailer", in, 1, name_);
+
+       // This is part of the inset proper that is usually swallowed
+       // by LyXText::readInset
+       string id;
+       lex >> id;
+       if (!lex || id != "Box")
+               return print_mailer_error("InsetBoxMailer", in, 2, "Box");
 
        params.read(lex);
 }
@@ -471,7 +456,7 @@ InsetBoxParams::InsetBoxParams(string const & label)
 
 void InsetBoxParams::write(ostream & os) const
 {
-       os << type << "\n";
+       os << "Box " << type << "\n";
        os << "position \"" << pos << "\"\n";
        os << "hor_pos \"" << hor_pos << "\"\n";
        os << "has_inner_box " << inner_box << "\n";
@@ -486,13 +471,17 @@ void InsetBoxParams::write(ostream & os) const
 
 void InsetBoxParams::read(LyXLex & lex)
 {
+       if (!lex.isOK())
+               return;
+
        if (lex.isOK()) {
+               lex.next();
                type = lex.getString();
        }
-       string token;
        if (!lex.isOK())
                return;
        lex.next();
+       string token;
        token = lex.getString();
        if (token == "position") {
                lex.next();