]> git.lyx.org Git - features.git/blobdiff - src/insets/inseturl.C
read the Changelog
[features.git] / src / insets / inseturl.C
index 540ac5bf458c3a65b40f6eabc04b289ba92417f9..240dc34609de5586daa0b62c05c2db28fd04a889 100644 (file)
@@ -14,6 +14,8 @@
 #include "LaTeXFeatures.h"
 #include "lyx_gui_misc.h" // CancelCloseBoxCB
 
+using std::ostream;
+
 
 InsetUrl::InsetUrl(string const & cmd)
        : fd_form_url(0)
@@ -103,12 +105,19 @@ void InsetUrl::CloseUrlCB(FL_OBJECT * ob, long)
 }
 
 
-extern "C" void C_InsetUrl_CloseUrlCB(FL_OBJECT * ob, long data)
+extern "C"
+void C_InsetUrl_CloseUrlCB(FL_OBJECT * ob, long data)
 {
        InsetUrl::CloseUrlCB(ob, data);
 }
 
 
+char const * InsetUrl::EditMessage() const 
+{
+       return _("Opened Url");
+}
+
+
 void InsetUrl::Edit(BufferView * bv, int, int, unsigned int)
 {
        static int ow = -1, oh;
@@ -157,69 +166,38 @@ string InsetUrl::getScreenLabel() const
                temp += _("HtmlUrl: ");
        else 
                temp += _("Url: ");
-       temp += getContents();
        if(!getOptions().empty()) {
-               temp += "||";
                temp += getOptions();
+       } else {
+         temp += getContents();
        }
        return temp;
 }
 
 
-int InsetUrl::Latex(ostream & os, signed char fragile) const
+int InsetUrl::Latex(Buffer const *, ostream & os,
+                   bool fragile, bool /*free_spc*/) const
 {
-#ifdef USE_OSTREAM_ONLY
        if (!getOptions().empty())
                os << getOptions() + ' ';
        if (fragile)
                os << "\\protect";
        os << "\\url{" << getContents() << '}';
-       return 0;
-#else
-       string latex_output;
-       int res = Latex(latex_output, fragile);
-       os << latex_output;
-
-       return res;
-#endif
-}
-
-
-#ifndef USE_OSTREAM_ONLY
-int InsetUrl::Latex(string & file, signed char fragile) const
-{
-       if (!getOptions().empty())
-               file += getOptions() + ' ';
-       if (fragile)
-               file += "\\protect";
-
-       file += "\\url{" + getContents() + '}';
-
        return 0;
 }
 
 
-int InsetUrl::Linuxdoc(string & file) const
+int InsetUrl::Ascii(Buffer const *, ostream & os) const
 {
-       file +=  "<"+ getCmdName() +
-                " url=\""  + getContents()+"\"" +
-                " name=\"" + getOptions() +"\">";
-
-       return 0;
-}
-
-
-int InsetUrl::DocBook(string & file) const
-{
-       file +=  "<ulink url=\""  + getContents() + "\">" +
-                getOptions() +"</ulink>";
-
+       if (getOptions().empty())
+               os << "[" << getContents() << "]";
+       else
+               os << "[" << getContents() << "||" <<  getOptions() << "]";
        return 0;
 }
 
-#else
 
-int InsetUrl::Linuxdoc(ostream & os) const
+int InsetUrl::Linuxdoc(Buffer const *, ostream & os) const
 {
        os << "<" << getCmdName()
           << " url=\""  << getContents() << "\""
@@ -229,13 +207,12 @@ int InsetUrl::Linuxdoc(ostream & os) const
 }
 
 
-int InsetUrl::DocBook(ostream & os) const
+int InsetUrl::DocBook(Buffer const *, ostream & os) const
 {
        os << "<ulink url=\"" << getContents() << "\">"
           << getOptions() << "</ulink>";
        return 0;
 }
-#endif
 
 
 void InsetUrl::Validate(LaTeXFeatures & features) const