X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finseturl.h;h=124600e091507125c60eaf27c6a2e02cf538002d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=f0580239ff171b39e39e53c4c7410a95adcb4578;hpb=def72111a5ac739cf8c5377a67adeee64c37e1ab;p=lyx.git diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index f0580239ff..124600e091 100644 --- a/src/insets/inseturl.h +++ b/src/insets/inseturl.h @@ -1,104 +1,61 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file inseturl.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * - * Copyright 1997-2000 The LyX Team. - * - * ====================================================== */ + * \author José Matos + * + * Full author contact details are available in file CREDITS. + */ #ifndef INSET_URL_H #define INSET_URL_H -#ifdef __GNUG__ -#pragma interface -#endif #include "insetcommand.h" -#include "buffer.h" -#include "form_url.h" -struct LaTeXFeatures; -/** The url inset +namespace lyx { + +class LaTeXFeatures; + +/** The url inset */ class InsetUrl : public InsetCommand { public: - /// - enum Url_Flags { - /// - URL, - /// - HTML_URL - }; - - /// - InsetUrl() : InsetCommand("url"), fd_form_url(0) { - flag = InsetUrl::URL; - } /// - InsetUrl(string const &); + explicit + InsetUrl(InsetCommandParams const &); /// - InsetUrl(InsetCommand const &); + InsetBase::Code lyxCode() const { return InsetBase::URL_CODE; } /// - InsetUrl(string const &, string const &, string const &); + void validate(LaTeXFeatures &) const; /// - ~InsetUrl(); - /// - Inset * Clone() const { return new InsetUrl(getCommand()); } + docstring const getScreenLabel(Buffer const &) const; /// - Inset::Code LyxCode() const { return Inset::URL_CODE; } + EDITABLE editable() const { return IS_EDITABLE; } /// - void Validate(LaTeXFeatures &) const; - /// - void Edit(BufferView *, int, int, unsigned int); - /// - unsigned char Editable() const { - return 1; - } - /// - const char * EditMessage() const {return _("Opened Url");} - /// bool display() const { return false; } /// - string getScreenLabel() const; - /// - InsetUrl::Url_Flags getFlag() const { return flag; } - /// - void setFlag(InsetUrl::Url_Flags f) { flag = f; } - /// - void gotoLabel(); + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int Latex(ostream &, signed char fragile) const; -#ifndef USE_OSTREAM_ONLY + int plaintext(Buffer const &, odocstream &, + OutputParams const &) const; /// - int Latex(string & file, signed char fragile) const; - /// - int Linuxdoc(string & file) const; - /// - int DocBook(string & file) const; -#else - /// - int Linuxdoc(ostream &) const; - /// - int DocBook(ostream &) const; -#endif - /// - static void CloseUrlCB(FL_OBJECT *, long data); + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; + /// the string that is passed to the TOC + virtual int textString(Buffer const &, odocstream &, + OutputParams const &) const; private: - /// - struct Holder { - InsetUrl * inset; - BufferView * view; - }; - /// - Holder holder; - - /// - Url_Flags flag; - /// - FD_form_url * fd_form_url; + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetUrl(params())); + } }; + +} // namespace lyx + #endif