mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
70d0ba9001
mathed is completely broken, but it's difficult to imprevo with such a big patch in the tree. If things don't improve until tomorrow evening, I'll revert this. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8357 a592a061-630c-0410-9148-cb99ea01b6c8
89 lines
1.8 KiB
C++
89 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetvspace.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_VSPACE_H
|
|
#define INSET_VSPACE_H
|
|
|
|
|
|
#include "inset.h"
|
|
#include "vspace.h"
|
|
#include "mailinset.h"
|
|
|
|
class InsetVSpace : public InsetOld {
|
|
public:
|
|
///
|
|
InsetVSpace() {}
|
|
///
|
|
InsetVSpace(VSpace const &);
|
|
///
|
|
~InsetVSpace();
|
|
///
|
|
std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
int latex(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
void read(Buffer const &, LyXLex & lex);
|
|
///
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
///
|
|
bool display() const { return true; }
|
|
/// How much?
|
|
VSpace const & space() const { return space_; }
|
|
|
|
protected:
|
|
///
|
|
virtual
|
|
DispatchResult
|
|
priv_dispatch(BufferView & bv, FuncRequest const & cmd);
|
|
|
|
private:
|
|
///
|
|
VSpace space_;
|
|
};
|
|
|
|
|
|
class InsetVSpaceMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetVSpaceMailer(InsetVSpace & inset);
|
|
///
|
|
virtual InsetBase & inset() const { return inset_; }
|
|
///
|
|
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_;
|
|
};
|
|
|
|
#endif
|