X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finseturl.h;h=124600e091507125c60eaf27c6a2e02cf538002d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=e76161e78057e5e8e9222b186301574e74eae5c2;hpb=338bca184c36c7d8c3ec51ecb8102fabe0a23fa7;p=lyx.git diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index e76161e780..124600e091 100644 --- a/src/insets/inseturl.h +++ b/src/insets/inseturl.h @@ -1,30 +1,26 @@ // -*- 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 -struct LaTeXFeatures; -#ifdef SIGC_CXX_NAMESPACES -using SigC::Signal0; -#endif +namespace lyx { -/** The url inset +class LaTeXFeatures; + +/** The url inset */ class InsetUrl : public InsetCommand { public: @@ -32,34 +28,34 @@ public: explicit InsetUrl(InsetCommandParams const &); /// - ~InsetUrl(); - /// - Inset * Clone() const { return new InsetUrl(params()); } - /// - Inset::Code LyxCode() const { return Inset::URL_CODE; } - /// - void Validate(LaTeXFeatures &) const; + InsetBase::Code lyxCode() const { return InsetBase::URL_CODE; } /// - string getScreenLabel() const; + void validate(LaTeXFeatures &) const; /// - EDITABLE Editable() const { return IS_EDITABLE; } + docstring const getScreenLabel(Buffer const &) const; /// - char const * EditMessage() const; + EDITABLE editable() const { return IS_EDITABLE; } /// - void Edit(BufferView *, int, int, unsigned int); - /// bool display() const { return false; } /// - int Latex(Buffer const *, std::ostream &, - bool fragile, bool free_spc) const; - /// - int Ascii(Buffer const *, std::ostream &) const; - /// - int Linuxdoc(Buffer const *, std::ostream &) const; - /// - int DocBook(Buffer const *, std::ostream &) const; - /// - Signal0 hide; + int latex(Buffer const &, odocstream &, + OutputParams const &) const; + /// + int plaintext(Buffer const &, odocstream &, + OutputParams const &) const; + /// + 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: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetUrl(params())); + } }; + +} // namespace lyx + #endif