]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insetref.C
index fc639e95475586e4e5a3005a43c107045d7ce1e5..959f3e903ce9182c52bba1e7e9b114db7253e30c 100644 (file)
@@ -1,69 +1,80 @@
+/**
+ * \file insetref.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author José Matos
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 #include <config.h>
 
-#include <cstdlib>
-
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include FORMS_H_LOCATION 
 #include "insetref.h"
+
 #include "buffer.h"
-#include "debug.h"
-#include "lyx_gui_misc.h" // CancelCloseBoxCB
-#include "LyXView.h"
-#include "lyxfunc.h"
-#include "commandtags.h"
+#include "BufferView.h"
+#include "funcrequest.h"
 #include "gettext.h"
+#include "LaTeXFeatures.h"
 
-extern BufferView * current_view;
+#include "frontends/LyXView.h"
 
+#include "support/lstrings.h"
 
-InsetRef::InsetRef(string const & cmd, Buffer * bf)
-       : master(bf)
-{
-       scanCommand(cmd);
-       if (getCmdName() == "ref")
-               flag = InsetRef::REF;
-       else
-               flag = InsetRef::PAGE_REF;
-}
+
+using lyx::support::escape;
+
+using std::string;
+using std::ostream;
 
 
-InsetRef::InsetRef(InsetCommand const & inscmd, Buffer * bf)
-       : master(bf)
+InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
+       : InsetCommand(p), isLatex(buf.isLatex())
+{}
+
+
+InsetRef::InsetRef(InsetRef const & ir)
+       : InsetCommand(ir), isLatex(ir.isLatex)
 {
-       setCmdName(inscmd.getCmdName());
-       setContents(inscmd.getContents());
-       setOptions(inscmd.getOptions());
-       if (getCmdName() == "ref")
-               flag = InsetRef::REF;
-       else
-               flag = InsetRef::PAGE_REF;
 }
 
 
 InsetRef::~InsetRef()
 {
+       InsetCommandMailer("ref", *this).hideDialog();
 }
 
 
-void InsetRef::Edit(int, int)
+dispatch_result
+InsetRef::priv_dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos)
 {
-        current_view->owner()->getLyXFunc()
-               ->Dispatch(LFUN_REFGOTO, getContents().c_str());
+       switch (cmd.action) {
+       case LFUN_INSET_EDIT:
+               // 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;
+
+       default:
+               return InsetCommand::priv_dispatch(cmd, idx, pos);
+       }
 }
 
 
-string InsetRef::getScreenLabel() const
+string const InsetRef::getScreenLabel(Buffer const &) const
 {
        string temp;
-       if (flag == InsetRef::PAGE_REF)
-               temp += _("Page: ");
-       else 
-               temp += _("Ref: ");
+       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(!current_view->buffer()->isLatex()
+
+       if (!isLatex
           && !getOptions().empty()) {
                temp += "||";
                temp += getOptions();
@@ -72,65 +83,79 @@ string InsetRef::getScreenLabel() const
 }
 
 
-int InsetRef::Latex(FILE * file, signed char /*fragile*/)
+int InsetRef::latex(Buffer const &, ostream & os,
+                   LatexRunParams const &) const
 {
-       if(getOptions().empty())
-               fprintf(file, "%s", escape(getCommand()).c_str());
+       if (getOptions().empty())
+               os << escape(getCommand());
        else {
-               string ns;
-               InsetCommand clone = InsetCommand(getCmdName(), getContents(), ns);
-               fprintf(file, "%s", escape(clone.getCommand()).c_str());
+               InsetCommandParams p(getCmdName(), getContents(), "");
+               os << escape(p.getCommand());
        }
        return 0;
 }
 
 
-int InsetRef::Latex(string & file, signed char /*fragile*/)
+int InsetRef::ascii(Buffer const &, ostream & os, int) const
 {
-       if(getOptions().empty())
-               file += escape(getCommand());
-       else {
-               string ns;
-               InsetCommand clone= InsetCommand(getCmdName(), getContents(), ns);
-               file += escape(clone.getCommand());
-       }
+       os << '[' << getContents() << ']';
        return 0;
 }
 
 
-int InsetRef::Linuxdoc(string & file)
+int InsetRef::linuxdoc(Buffer const &, ostream & os) const
 {
-       file += "<ref id=\"" + getContents()
-               + "\" name=\""+ getOptions() +"\" >" ;
+       os << "<ref id=\"" << getContents()
+          << "\" name=\"" << getOptions() << "\" >";
+       return 0;
+}
+
+
+int InsetRef::docbook(Buffer const &, ostream & os, bool) const
+{
+       if (getOptions().empty()) {
+               os << "<xref linkend=\"" << getContents() << "\">";
+       } else {
+               os << "<link linkend=\"" << getContents()
+                  << "\">" << getOptions() << "</link>";
+       }
 
        return 0;
 }
 
 
-int InsetRef::DocBook(string & file)
+void InsetRef::validate(LaTeXFeatures & features) const
 {
-       file += "<link linkend=\"" + getContents()
-               + "\">"+ getOptions() +"</link>" ;
+       if (getCmdName() == "vref" || getCmdName() == "vpageref")
+               features.require("varioref");
+       else if (getCmdName() == "prettyref")
+               features.require("prettyref");
+       else if (getCmdName() == "eqref")
+               features.require("amsmath");
+}
 
+
+InsetRef::type_info InsetRef::types[] = {
+       { "ref",       N_("Standard"),              N_("Ref: ")},
+       { "eqref",     N_("Equation"),              N_("EqRef: ")},
+       { "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: ")},
+       { "", "", "" }
+};
+
+
+int InsetRef::getType(string const & name)
+{
+       for (int i = 0; !types[i].latex_name.empty(); ++i)
+               if (name == types[i].latex_name)
+                       return i;
        return 0;
 }
 
 
-// This function escapes 8-bit characters and other problematic characters
-// It's exactly the same code as in insetlabel.C.
-string InsetRef::escape(string const & lab) 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;
+string const & InsetRef::getName(int type)
+{
+       return types[type].latex_name;
 }