]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
ws cleanup
[lyx.git] / src / insets / insetref.C
index b936e53ad941b1301fba6f4c22964f94cabc9d8f..1ad1209070c318325ff017d2155ecb05c9e79853 100644 (file)
 #include "debug.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
-#include "lyxfunc.h"
 #include "LyXView.h"
 #include "frontends/Dialogs.h"
+#include "lyxfunc.h"
+#include "BufferView.h"
+#include "support/lstrings.h"
 
 using std::ostream;
 
-InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
+InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf, bool)
        : InsetCommand(p), isLatex(buf.isLatex())
 {}
 
-void InsetRef::Edit(BufferView * bv, int, int, unsigned int button)
+void InsetRef::edit(BufferView * bv, int, int, unsigned int button)
 {
        // Eventually trigger dialog with button 3 not 1
-       if (button == 3 )
-               bv->owner()->getLyXFunc()->
-                       Dispatch(LFUN_REF_GOTO, getContents());
-       else if (button == 1 )
-               bv->owner()->getDialogs()->showRef( this );
+       if (button == 3)
+               bv->owner()->getLyXFunc()->
+                       dispatch(LFUN_REF_GOTO, getContents());
+       else if (button == 1)
+               bv->owner()->getDialogs()->showRef(this);
 }
 
 
-string const InsetRef::getScreenLabel() const
+void InsetRef::edit(BufferView *, bool)
 {
-       string temp;
-       if (getCmdName() == "ref")
-               temp = _( "Ref: " );
-       else if (getCmdName() == "pageref")
-               temp = _( "Page: " );
-       else if (getCmdName() == "vref")
-               temp = _( "TextRef: " );
-       else if (getCmdName() == "vpageref")
-               temp = _( "TextPage: " );
-       else
-               temp = _( "PrettyRef: " );
+}
+
 
+string const InsetRef::getScreenLabel(Buffer const *) const
+{
+       string 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();
 
        if (!isLatex
@@ -56,27 +57,27 @@ string const InsetRef::getScreenLabel() const
 }
 
 
-int InsetRef::Latex(Buffer const *, ostream & os,
+int InsetRef::latex(Buffer const *, ostream & os,
                    bool /*fragile*/, bool /*fs*/) const
 {
        if (getOptions().empty())
                os << escape(getCommand());
        else {
-               InsetCommandParams p( getCmdName(), getContents(), "" );
+               InsetCommandParams p(getCmdName(), getContents(), "");
                os << escape(p.getCommand());
        }
        return 0;
 }
 
 
-int InsetRef::Ascii(Buffer const *, ostream & os, int) const
+int InsetRef::ascii(Buffer const *, ostream & os, int) const
 {
        os << "[" << getContents() << "]";
        return 0;
 }
 
 
-int InsetRef::Linuxdoc(Buffer const *, ostream & os) const
+int InsetRef::linuxdoc(Buffer const *, ostream & os) const
 {
        os << "<ref id=\"" << getContents()
           << "\" name=\"" << getOptions() << "\" >";
@@ -84,39 +85,47 @@ int InsetRef::Linuxdoc(Buffer const *, ostream & os) const
 }
 
 
-int InsetRef::DocBook(Buffer const *, ostream & os) const
+int InsetRef::docbook(Buffer const *, ostream & os) const
 {
-       os << "<link linkend=\"" << getContents()
-          << "\">" << getOptions() << "</link>";
+       if (getOptions().empty()) {
+               os << "<xref linkend=\"" << getContents() << "\">";
+       } else {
+               os << "<link linkend=\"" << getContents()
+                  << "\">" << getOptions() << "</link>";
+       }
+
        return 0;
 }
 
 
-// This function escapes 8-bit characters and other problematic characters
-// It's exactly the same code as in insetlabel.C.
-string const InsetRef::escape(string const & lab) const
+void InsetRef::validate(LaTeXFeatures & features) const
 {
-       char hexdigit[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
-                             '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
-       string enc;
-       for (string::size_type i = 0; i < lab.length(); ++i) {
-               unsigned char c= lab[i];
-               if (c >= 128 || c == '=' || c == '%') {
-                       enc += '=';
-                       enc += hexdigit[c>>4];
-                       enc += hexdigit[c & 15];
-               } else {
-                       enc += c;
-               }
-       }
-       return enc;
+       if (getCmdName() == "vref" || getCmdName() == "vpageref")
+               features.require("varioref");
+       else if (getCmdName() == "prettyref")
+               features.require("prettyref");
 }
 
+InsetRef::type_info InsetRef::types[] = {
+       { "ref",        N_("Standard"),                 N_("Ref: ")},
+       { "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: ")},
+       { "", "", "" }
+};
 
-void InsetRef::Validate(LaTeXFeatures & features) const
+
+int InsetRef::getType(string const & name)
 {
-       if (getCmdName() == "vref" || getCmdName() == "vpageref")
-               features.varioref = true;
-       else if (getCmdName() == "prettyref")
-               features.prettyref = true;
+       for (int i = 0; !types[i].latex_name.empty(); ++i)
+               if (name == types[i].latex_name)
+                       return i;
+       return 0;
+}
+
+
+string const & InsetRef::getName(int type)
+{
+       return types[type].latex_name;
 }