]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.C
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / inseturl.C
index 540ac5bf458c3a65b40f6eabc04b289ba92417f9..ae2c16a9fe1028ce8dfef62db6b4a6dfe2470875 100644 (file)
@@ -14,6 +14,7 @@
 #include "LaTeXFeatures.h"
 #include "lyx_gui_misc.h" // CancelCloseBoxCB
 
+using std::ostream;
 
 InsetUrl::InsetUrl(string const & cmd)
        : fd_form_url(0)
@@ -109,6 +110,12 @@ extern "C" void C_InsetUrl_CloseUrlCB(FL_OBJECT * ob, long data)
 }
 
 
+char const * InsetUrl::EditMessage() const 
+{
+       return _("Opened Url");
+}
+
+
 void InsetUrl::Edit(BufferView * bv, int, int, unsigned int)
 {
        static int ow = -1, oh;
@@ -166,58 +173,27 @@ string InsetUrl::getScreenLabel() const
 }
 
 
-int InsetUrl::Latex(ostream & os, signed char fragile) const
+int InsetUrl::Latex(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
-{
-       file +=  "<"+ getCmdName() +
-                " url=\""  + getContents()+"\"" +
-                " name=\"" + getOptions() +"\">";
-
-       return 0;
 }
 
 
-int InsetUrl::DocBook(string & file) const
+int InsetUrl::Ascii(ostream & os) 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
 {
@@ -235,7 +211,6 @@ int InsetUrl::DocBook(ostream & os) const
           << getOptions() << "</ulink>";
        return 0;
 }
-#endif
 
 
 void InsetUrl::Validate(LaTeXFeatures & features) const