]> 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 d2c1dfacac7f0b40888925b04005f629bc0217ae..85dca1c86529ab7fdf0bfa45524a34ee86ee0f8f 100644 (file)
 #include "insetref.h"
 
 #include "buffer.h"
-#include "BufferView.h"
+#include "cursor.h"
+#include "dispatchresult.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
-
-#include "frontends/LyXView.h"
+#include "lyxfunc.h"
+#include "outputparams.h"
+#include "sgml.h"
 
 #include "support/lstrings.h"
 
 
-using lyx::support::escape;
+namespace lyx {
+
+using support::escape;
 
 using std::string;
 using std::ostream;
 
 
 InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
-       : InsetCommand(p), isLatex(buf.isLatex())
+       : InsetCommand(p, "ref"), isLatex(buf.isLatex())
 {}
 
 
 InsetRef::InsetRef(InsetRef const & ir)
        : InsetCommand(ir), isLatex(ir.isLatex)
-{
-}
-
-
-InsetRef::~InsetRef()
-{
-       InsetCommandMailer("ref", *this).hideDialog();
-}
+{}
 
 
-dispatch_result InsetRef::localDispatch(FuncRequest const & cmd)
+void InsetRef::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
-       case LFUN_INSET_EDIT:
+       case LFUN_MOUSE_PRESS:
                // Eventually trigger dialog with button 3 not 1
                if (cmd.button() == mouse_button::button3)
-                       cmd.view()->owner()->
-                               dispatch(FuncRequest(LFUN_REF_GOTO, getContents()));
-               else
-                       InsetCommandMailer("ref", *this).showDialog(cmd.view());
-               return DISPATCHED;
+                       lyx::dispatch(FuncRequest(LFUN_LABEL_GOTO, getParam("reference")));
+               else {
+                       InsetCommandMailer("ref", *this).showDialog(&cur.bv());
+                       cur.undispatched();
+               }
+               return;
+
+       case LFUN_MOUSE_RELEASE:
+               return;
 
        default:
-               return InsetCommand::localDispatch(cmd);
+               return InsetCommand::doDispatch(cur, cmd);
        }
 }
 
 
-string const InsetRef::getScreenLabel(Buffer const &) const
+docstring const InsetRef::getScreenLabel(Buffer const &) const
 {
-       string temp;
-       for (int i = 0; !types[i].latex_name.empty(); ++ i)
+       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,
-                   LatexRunParams 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::ascii(Buffer const &, ostream & os, int) 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 &, ostream & os) const
+int InsetRef::docbook(Buffer const & buf, odocstream & os,
+                      OutputParams const & runparams) const
 {
-       os << "<ref id=\"" << getContents()
-          << "\" name=\"" << getOptions() << "\" >";
+       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, getParam("reference"))
+                  << "\">" 
+                  << getParam("name")
+                  << "</link>";
+       }
+
        return 0;
 }
 
 
-int InsetRef::docbook(Buffer const &, ostream & os, bool) const
+int InsetRef::textString(Buffer const & buf, odocstream & os,
+                      OutputParams const & op) const
 {
-       if (getOptions().empty()) {
-               os << "<xref linkend=\"" << getContents() << "\">";
-       } else {
-               os << "<link linkend=\"" << getContents()
-                  << "\">" << getOptions() << "</link>";
-       }
-
-       return 0;
+       return plaintext(buf, os, op);
 }
 
 
@@ -140,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: ")},
        { "", "", "" }
 };
 
@@ -158,3 +171,6 @@ string const & InsetRef::getName(int type)
 {
        return types[type].latex_name;
 }
+
+
+} // namespace lyx