mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
cc11c6803c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29176 a592a061-630c-0410-9148-cb99ea01b6c8
81 lines
1.7 KiB
C++
81 lines
1.7 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"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class InsetVSpace : public Inset
|
|
{
|
|
public:
|
|
///
|
|
InsetVSpace() {}
|
|
///
|
|
InsetVSpace(VSpace const &);
|
|
///
|
|
~InsetVSpace();
|
|
/// How much?
|
|
VSpace const & space() const { return space_; }
|
|
///
|
|
InsetCode lyxCode() const { return VSPACE_CODE; }
|
|
///
|
|
void edit(Cursor & cur, bool front,
|
|
EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
|
|
///
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
///
|
|
docstring contextMenu(BufferView const & bv, int x, int y) const;
|
|
///
|
|
static void string2params(std::string const &, VSpace &);
|
|
///
|
|
static std::string params2string(VSpace const &);
|
|
private:
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
DisplayType display() const { return AlignCenter; }
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
///
|
|
Inset * clone() const { return new InsetVSpace(*this); }
|
|
///
|
|
docstring const label() const;
|
|
///
|
|
bool showInsetDialog(BufferView * bv) const;
|
|
|
|
///
|
|
VSpace space_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|