X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finseturl.h;h=24f55a846c85cf26878cb2bb922af681aae3a45c;hb=10ba1b8918e7da14334bb5573ce2a707671c8b51;hp=4712afd948e8982e5e8ca1b221589a4033144cb8;hpb=a654de29ea80901be5321f603008f0e6a82a0ec9;p=lyx.git diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index 4712afd948..24f55a846c 100644 --- a/src/insets/inseturl.h +++ b/src/insets/inseturl.h @@ -1,19 +1,17 @@ // -*- 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 + * \author José Matos * - * Copyright 1997-2001 The LyX Team. - * - * ====================================================== */ + * 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" @@ -25,34 +23,33 @@ class InsetUrl : public InsetCommand { public: /// explicit - InsetUrl(InsetCommandParams const &, bool same_id = false); - /// - virtual Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetUrl(params(), same_id); - } + InsetUrl(InsetCommandParams const &); /// - Inset::Code lyxCode() const { return Inset::URL_CODE; } + InsetOld::Code lyxCode() const { return InsetOld::URL_CODE; } /// void validate(LaTeXFeatures &) const; /// - string const getScreenLabel(Buffer const *) const; + std::string const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - void edit(BufferView *, int, int, unsigned int); - /// - void edit(BufferView * bv, bool front = true); - /// bool display() const { return false; } /// - int latex(Buffer const *, std::ostream &, - bool fragile, bool free_spc) const; + int latex(Buffer const &, std::ostream &, + OutputParams const &) const; /// - int ascii(Buffer const *, std::ostream &, int linelen) const; + int plaintext(Buffer const &, std::ostream &, + OutputParams const &) const; /// - int linuxdoc(Buffer const *, std::ostream &) const; + int linuxdoc(Buffer const &, std::ostream &, + OutputParams const &) const; /// - int docbook(Buffer const *, std::ostream &) const; + int docbook(Buffer const &, std::ostream &, + OutputParams const &) const; +private: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetUrl(params())); + } }; #endif