lyx_mirror/src/insets/InsetNewpage.h

119 lines
2.3 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file InsetNewpage.h
* 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_NEWPAGE_H
#define INSET_NEWPAGE_H
#include "Inset.h"
#include "MailInset.h"
#include "support/docstring.h"
#include "support/gettext.h"
namespace lyx {
class InsetNewpageParams {
public:
/// The different kinds of spaces we support
enum Kind {
///
NEWPAGE,
///
PAGEBREAK,
///
CLEARPAGE,
///
CLEARDOUBLEPAGE
};
///
InsetNewpageParams() : kind(NEWPAGE) {}
///
void write(std::ostream & os) const;
///
void read(Lexer & lex);
///
Kind kind;
};
class InsetNewpage : public Inset
{
public:
///
InsetNewpage();
///
explicit
InsetNewpage(InsetNewpageParams par);
///
InsetNewpageParams params() const { return params_; }
///
InsetCode lyxCode() const { return NEWPAGE_CODE; }
///
void metrics(MetricsInfo &, Dimension &) 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; }
///
docstring insetLabel() const;
///
ColorCode ColorName() const;
///
virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
private:
///
Inset * clone() const { return new InsetNewpage(*this); }
///
void doDispatch(Cursor & cur, FuncRequest & cmd);
///
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
///
InsetNewpageParams params_;
};
class InsetNewpageMailer : public MailInset {
public:
///
InsetNewpageMailer(InsetNewpage & inset);
///
virtual Inset & 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 &, InsetNewpageParams &);
///
static std::string const params2string(InsetNewpageParams const &);
private:
///
static std::string const name_;
///
InsetNewpage & inset_;
};
} // namespace lyx
#endif // INSET_NEWPAGE_H