mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-14 12:25:11 +00:00
e24bf64c68
* InsetBase and all derivates: - metrics(MetricsInfo & mi, Dimension & dim) now returns a bool (true if metrics changed). * MathData and all derivates: - metrics(MetricsInfo & mi, Dimension & dim): ditto. * RenderBase and all derivates: - metrics(MetricsInfo & mi, Dimension & dim): ditto. * lyxtext.h/text.C: - LyXText::metrics(MetricsInfo & mi, Dimension & dim): ditto. - LyXText::redoParagraph(): take into account potential change in inset metrics. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16091 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insethfill.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_HFILL_H
|
|
#define INSET_HFILL_H
|
|
|
|
|
|
#include "insetcommand.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class InsetHFill : public InsetCommand {
|
|
public:
|
|
///
|
|
InsetHFill();
|
|
///
|
|
bool metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
docstring const getScreenLabel(Buffer const &) const;
|
|
///
|
|
InsetBase::Code lyxCode() const { return InsetBase::HFILL_CODE; }
|
|
///
|
|
int plaintext(Buffer const &, odocstream &,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
int docbook(Buffer const &, odocstream &,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
/// We don't need \begin_inset and \end_inset
|
|
bool directWrite() const { return true; }
|
|
/// is this equivalent to a space (which is BTW different from
|
|
// a line separator)?
|
|
bool isSpace() const;
|
|
private:
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|