]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetref.C
index e0ce44def7bd32eda67171b3a6055c8fa7802dca..fd7074e5bfc88c51f16e99b6636fc19115042697 100644 (file)
 #include "insetref.h"
 
 #include "buffer.h"
+#include "cursor.h"
 #include "BufferView.h"
 #include "dispatchresult.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
+#include "outputparams.h"
+#include "sgml.h"
 
 #include "frontends/LyXView.h"
 
@@ -30,38 +33,31 @@ 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();
-}
+{}
 
 
-DispatchResult
-InsetRef::priv_dispatch(FuncRequest const & cmd,
-                       idx_type & idx, pos_type & pos)
+void InsetRef::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
        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()));
+                       cur.bv().owner()->dispatch(FuncRequest(LFUN_LABEL_GOTO, getContents()));
                else
-                       InsetCommandMailer("ref", *this).showDialog(cmd.view());
-               return DispatchResult(true, true);
+                       InsetCommandMailer("ref", *this).showDialog(&cur.bv());
+               return;
+
+       case LFUN_MOUSE_RELEASE:
+               return;
 
        default:
-               return InsetCommand::priv_dispatch(cmd, idx, pos);
+               return InsetCommand::doDispatch(cur, cmd);
        }
 }
 
@@ -69,15 +65,15 @@ InsetRef::priv_dispatch(FuncRequest const & cmd,
 string const InsetRef::getScreenLabel(Buffer const &) const
 {
        string temp;
-       for (int i = 0; !types[i].latex_name.empty(); ++ i)
+       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();
 
-       if (!isLatex
-          && !getOptions().empty()) {
+       if (!isLatex && !getOptions().empty()) {
                temp += "||";
                temp += getOptions();
        }
@@ -106,22 +102,24 @@ int InsetRef::plaintext(Buffer const &, ostream & os,
 }
 
 
-int InsetRef::linuxdoc(Buffer const &, ostream & os,
-                      OutputParams const &) const
+int InsetRef::linuxdoc(Buffer const & buf, ostream & os,
+                      OutputParams const & runparams) const
 {
-       os << "<ref id=\"" << getContents()
+       os << "<ref id=\"" << sgml::cleanID(buf, runparams, getContents())
           << "\" name=\"" << getOptions() << "\" >";
        return 0;
 }
 
 
-int InsetRef::docbook(Buffer const &, ostream & os,
-                     OutputParams const &) const
+int InsetRef::docbook(Buffer const & buf, ostream & os,
+                     OutputParams const & runparams) const
 {
-       if (getOptions().empty()) {
-               os << "<xref linkend=\"" << getContents() << "\">";
+       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()) << "\">";
        } else {
-               os << "<link linkend=\"" << getContents()
+               os << "<link linkend=\"" << sgml::cleanID(buf, runparams, getContents())
                   << "\">" << getOptions() << "</link>";
        }
 
@@ -129,6 +127,13 @@ int InsetRef::docbook(Buffer const &, ostream & os,
 }
 
 
+int InsetRef::textString(Buffer const & buf, ostream & os,
+                      OutputParams const & op) const
+{
+       return plaintext(buf, os, op);
+}
+
+
 void InsetRef::validate(LaTeXFeatures & features) const
 {
        if (getCmdName() == "vref" || getCmdName() == "vpageref")