]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetref.C
index fd7074e5bfc88c51f16e99b6636fc19115042697..85dca1c86529ab7fdf0bfa45524a34ee86ee0f8f 100644 (file)
 
 #include "buffer.h"
 #include "cursor.h"
-#include "BufferView.h"
 #include "dispatchresult.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
+#include "lyxfunc.h"
 #include "outputparams.h"
 #include "sgml.h"
 
-#include "frontends/LyXView.h"
-
 #include "support/lstrings.h"
 
 
-using lyx::support::escape;
+namespace lyx {
+
+using support::escape;
 
 using std::string;
 using std::ostream;
@@ -48,9 +48,11 @@ void InsetRef::doDispatch(LCursor & cur, FuncRequest & cmd)
        case LFUN_MOUSE_PRESS:
                // Eventually trigger dialog with button 3 not 1
                if (cmd.button() == mouse_button::button3)
-                       cur.bv().owner()->dispatch(FuncRequest(LFUN_LABEL_GOTO, getContents()));
-               else
+                       lyx::dispatch(FuncRequest(LFUN_LABEL_GOTO, getParam("reference")));
+               else {
                        InsetCommandMailer("ref", *this).showDialog(&cur.bv());
+                       cur.undispatched();
+               }
                return;
 
        case LFUN_MOUSE_RELEASE:
@@ -62,72 +64,72 @@ void InsetRef::doDispatch(LCursor & cur, FuncRequest & cmd)
 }
 
 
-string const InsetRef::getScreenLabel(Buffer const &) const
+docstring const InsetRef::getScreenLabel(Buffer const &) const
 {
-       string temp;
+       docstring temp;
        for (int i = 0; !types[i].latex_name.empty(); ++i) {
                if (getCmdName() == types[i].latex_name) {
                        temp = _(types[i].short_gui_name);
                        break;
                }
        }
-       temp += getContents();
+       temp += getParam("reference");
 
-       if (!isLatex && !getOptions().empty()) {
+       if (!isLatex && !getParam("name").empty()) {
                temp += "||";
-               temp += getOptions();
+               temp += getParam("name");
        }
        return temp;
 }
 
 
-int InsetRef::latex(Buffer const &, ostream & os,
-                   OutputParams const &) const
+int InsetRef::latex(Buffer const &, odocstream & os,
+                    OutputParams const &) const
 {
-       if (getOptions().empty())
-               os << escape(getCommand());
-       else {
-               InsetCommandParams p(getCmdName(), getContents(), "");
-               os << escape(p.getCommand());
-       }
+       // Don't output p_["name"], this is only used in docbook
+       InsetCommandParams p(getCmdName());
+       p["reference"] = getParam("reference");
+       os << escape(p.getCommand());
        return 0;
 }
 
 
-int InsetRef::plaintext(Buffer const &, ostream & os,
-                   OutputParams const &) const
+int InsetRef::plaintext(Buffer const &, odocstream & os,
+                        OutputParams const &) const
 {
-       os << '[' << getContents() << ']';
-       return 0;
+       docstring const str = getParam("reference");
+       os << '[' << str << ']';
+       return 2 + str.size();
 }
 
 
-int InsetRef::linuxdoc(Buffer const & buf, ostream & os,
-                      OutputParams const & runparams) const
+int InsetRef::docbook(Buffer const & buf, odocstream & os,
+                      OutputParams const & runparams) const
 {
-       os << "<ref id=\"" << sgml::cleanID(buf, runparams, getContents())
-          << "\" name=\"" << getOptions() << "\" >";
-       return 0;
-}
-
-
-int InsetRef::docbook(Buffer const & buf, ostream & os,
-                     OutputParams const & runparams) const
-{
-       if (getOptions().empty() && runparams.flavor == OutputParams::XML) {
-               os << "<xref linkend=\"" << sgml::cleanID(buf, runparams, getContents()) << "\" />";
-       } else if (getOptions().empty()) {
-               os << "<xref linkend=\"" << sgml::cleanID(buf, runparams, getContents()) << "\">";
+       docstring const & name = getParam("name");
+       if (name.empty()) {
+               if (runparams.flavor == OutputParams::XML) {
+                       os << "<xref linkend=\"" 
+                          << sgml::cleanID(buf, runparams, getParam("reference")) 
+                          << "\" />";
+               } else {
+                       os << "<xref linkend=\"" 
+                          << sgml::cleanID(buf, runparams, getParam("reference")) 
+                          << "\">";
+               }
        } else {
-               os << "<link linkend=\"" << sgml::cleanID(buf, runparams, getContents())
-                  << "\">" << getOptions() << "</link>";
+               os << "<link linkend=\"" 
+                  << sgml::cleanID(buf, runparams, getParam("reference"))
+                  << "\">" 
+                  << getParam("name")
+                  << "</link>";
        }
 
        return 0;
 }
 
 
-int InsetRef::textString(Buffer const & buf, ostream & os,
+int InsetRef::textString(Buffer const & buf, odocstream & os,
                       OutputParams const & op) const
 {
        return plaintext(buf, os, op);
@@ -151,7 +153,7 @@ InsetRef::type_info InsetRef::types[] = {
        { "pageref",   N_("Page Number"),           N_("Page: ")},
        { "vpageref",  N_("Textual Page Number"),   N_("TextPage: ")},
        { "vref",      N_("Standard+Textual Page"), N_("Ref+Text: ")},
-       { "prettyref", N_("PrettyRef"),             N_("PrettyRef: ")},
+       { "prettyref", N_("PrettyRef"),             N_("FormatRef: ")},
        { "", "", "" }
 };
 
@@ -169,3 +171,6 @@ string const & InsetRef::getName(int type)
 {
        return types[type].latex_name;
 }
+
+
+} // namespace lyx