lyx_mirror/src/insets/InsetHFill.h
Abdelrazak Younes 55a9524e99 Cleanup Hfill metrics and painting. InsetHFill is now treated almost like any other inset.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21980 a592a061-630c-0410-9148-cb99ea01b6c8
2007-12-05 22:25:07 +00:00

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