X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfootlike.h;h=c6489f53d399b392d87e7c1b3578451f2cefde47;hb=de039bb341afcfe9929b5fd6833308d509feae47;hp=1e678ff90997d4bf5e678633897697be8f035e82;hpb=d32d0cbb9552186e0d69ee2320baf2570402fc72;p=lyx.git diff --git a/src/insets/insetfootlike.h b/src/insets/insetfootlike.h index 1e678ff909..c6489f53d3 100644 --- a/src/insets/insetfootlike.h +++ b/src/insets/insetfootlike.h @@ -1,45 +1,38 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor +/** + * \file insetfootlike.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * Copyright 1998 The LyX Team. + * \author Lars Gullik Bjønnes * - *====================================================== + * Full author contact details are available in file CREDITS. */ -// The pristine updatable inset: Text - -#ifndef InsetFootlike_H -#define InsetFootlike_H - -#ifdef __GNUG__ -#pragma interface -#endif +#ifndef INSETFOOTLIKE_H +#define INSETFOOTLIKE_H #include "insetcollapsable.h" // To have this class is probably a bit overkill... (Lgb) -/** The footnote inset - -*/ +// The footnote inset class InsetFootlike : public InsetCollapsable { public: /// - InsetFootlike(); + InsetFootlike(BufferParams const &); /// - InsetFootlike(InsetFootlike const &, bool same_id = false); + InsetFootlike(InsetFootlike const &); /// - void write(Buffer const * buf, std::ostream & os) const; + void metrics(MetricsInfo &, Dimension &) const; /// - bool insetAllowed(Inset::Code) const; + void write(Buffer const & buf, std::ostream & os) const; + /// + bool insetAllowed(InsetOld::Code) const; + /** returns true if, when outputing LaTeX, font changes should + be closed before generating this inset. This is needed for + insets that may contain several paragraphs */ + bool noFontChange() const { return true; } }; #endif - - - - -