lyx_mirror/src/insets/InsetNewpage.h
Richard Heck dce1439e40 Restore XHTML output for InsetNewpage.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32204 a592a061-630c-0410-9148-cb99ea01b6c8
2009-11-25 22:00:29 +00:00

99 lines
1.9 KiB
C++

// -*- C++ -*-
/**
* \file InsetNewpage.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_NEWPAGE_H
#define INSET_NEWPAGE_H
#include "Inset.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 const & par);
///
static void string2params(std::string const &, InsetNewpageParams &);
///
static std::string params2string(InsetNewpageParams const &);
private:
///
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;
///
docstring xhtml(XHTMLStream &, OutputParams const &) const;
///
void read(Lexer & lex);
///
void write(std::ostream & os) const;
///
DisplayType display() const { return AlignCenter; }
///
docstring insetLabel() const;
///
ColorCode ColorName() const;
///
docstring contextMenu(BufferView const & bv, int x, int y) const;
///
Inset * clone() const { return new InsetNewpage(*this); }
///
void doDispatch(Cursor & cur, FuncRequest & cmd);
///
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
///
InsetNewpageParams params_;
};
} // namespace lyx
#endif // INSET_NEWPAGE_H