mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
1baa28f2bc
a word in front of an inset; make sensible use of plaintext() return value (IMHO totally broken before) * insets/insetfoot.[Ch]: add plaintext() * insets/insethfill.[Ch]: adjust plaintext(); make the number of characters determinitic; minor header cleanup * insets/insetbase.h: add comment on return value of plaintext() - before its meaning was unclear git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17200 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 &) const;
|
|
///
|
|
int docbook(Buffer const &, odocstream &,
|
|
OutputParams const &) 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
|