2003-11-28 15:53:34 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
|
* \file InsetVSpace.h
|
2003-11-28 15:53:34 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSET_VSPACE_H
|
|
|
|
|
#define INSET_VSPACE_H
|
|
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
#include "Inset.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
|
#include "VSpace.h"
|
2007-04-25 01:24:38 +00:00
|
|
|
|
#include "MailInset.h"
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
class InsetVSpace : public Inset {
|
2003-11-28 15:53:34 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
InsetVSpace() {}
|
|
|
|
|
///
|
|
|
|
|
InsetVSpace(VSpace const &);
|
|
|
|
|
///
|
2003-11-28 17:38:39 +00:00
|
|
|
|
~InsetVSpace();
|
|
|
|
|
///
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool metrics(MetricsInfo & mi, Dimension & dim) const;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
///
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int latex(Buffer const &, odocstream &,
|
2007-02-17 11:18:15 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int plaintext(Buffer const &, odocstream &,
|
2007-02-17 11:18:15 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int docbook(Buffer const &, odocstream &,
|
2007-02-17 11:18:15 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void read(Buffer const &, Lexer & lex);
|
2003-11-28 15:53:34 +00:00
|
|
|
|
///
|
|
|
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
|
|
|
///
|
2007-05-18 14:32:29 +00:00
|
|
|
|
DisplayType display() const { return AlignCenter; }
|
2003-12-02 12:27:07 +00:00
|
|
|
|
/// How much?
|
|
|
|
|
VSpace const & space() const { return space_; }
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
2003-11-28 17:38:39 +00:00
|
|
|
|
protected:
|
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2003-11-28 17:38:39 +00:00
|
|
|
|
|
2003-12-02 12:27:07 +00:00
|
|
|
|
private:
|
2007-04-29 13:39:47 +00:00
|
|
|
|
virtual std::auto_ptr<Inset> doClone() const;
|
2005-09-12 14:57:50 +00:00
|
|
|
|
///
|
2006-11-11 20:55:40 +00:00
|
|
|
|
docstring const label() const;
|
2004-11-24 21:58:42 +00:00
|
|
|
|
|
2003-12-02 12:27:07 +00:00
|
|
|
|
///
|
2003-11-28 15:53:34 +00:00
|
|
|
|
VSpace space_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InsetVSpaceMailer : public MailInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
InsetVSpaceMailer(InsetVSpace & inset);
|
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
virtual Inset & inset() const { return inset_; }
|
2003-11-28 15:53:34 +00:00
|
|
|
|
///
|
|
|
|
|
virtual std::string const & name() const { return name_; }
|
|
|
|
|
///
|
|
|
|
|
virtual std::string const inset2string(Buffer const &) const;
|
|
|
|
|
///
|
|
|
|
|
static void string2params(std::string const &, VSpace &);
|
|
|
|
|
///
|
|
|
|
|
static std::string const params2string(VSpace const &);
|
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
static std::string const name_;
|
|
|
|
|
///
|
|
|
|
|
InsetVSpace & inset_;
|
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-11-28 15:53:34 +00:00
|
|
|
|
#endif
|