mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
55a9524e99
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21980 a592a061-630c-0410-9148-cb99ea01b6c8
61 lines
1.3 KiB
C++
61 lines
1.3 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();
|
|
///
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
docstring const getScreenLabel(Buffer const &) const;
|
|
///
|
|
InsetCode lyxCode() const { return 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;
|
|
///
|
|
static CommandInfo const * findInfo(std::string const &);
|
|
///
|
|
static std::string defaultCommand() { return "hfill"; };
|
|
///
|
|
static bool isCompatibleCommand(std::string const & s)
|
|
{ return s == "hfill"; }
|
|
private:
|
|
virtual Inset * clone() const;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|