2003-10-27 12:41:26 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file insetpagebreak.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_PAGEBREAK_H
|
|
|
|
|
#define INSET_PAGEBREAK_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "inset.h"
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2003-10-27 12:41:26 +00:00
|
|
|
|
class InsetPagebreak : public InsetOld {
|
|
|
|
|
public:
|
|
|
|
|
InsetPagebreak() {}
|
|
|
|
|
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::Code lyxCode() const { return InsetBase::LINE_CODE; }
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
|
|
|
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
|
2006-11-25 15:09:01 +00:00
|
|
|
|
virtual int latex(Buffer const &, odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int plaintext(Buffer const &, odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int docbook(Buffer const &, odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void read(Buffer const &, LyXLex & lex);
|
|
|
|
|
|
2006-11-25 15:09:01 +00:00
|
|
|
|
virtual void write(Buffer const & buf, std::ostream & os) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
/// We don't need \begin_inset and \end_inset
|
|
|
|
|
bool directWrite() const { return true; }
|
|
|
|
|
|
|
|
|
|
bool display() const { return true; }
|
2006-11-25 15:09:01 +00:00
|
|
|
|
|
|
|
|
|
virtual std::string insetLabel() const { return "Page Break"; }
|
|
|
|
|
|
|
|
|
|
virtual std::string getCmdName() const { return "\\newpage"; }
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const
|
|
|
|
|
{
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetPagebreak);
|
|
|
|
|
}
|
2003-10-27 12:41:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
2006-11-25 15:09:01 +00:00
|
|
|
|
class InsetClearPage : public InsetPagebreak {
|
|
|
|
|
public:
|
|
|
|
|
InsetClearPage() {}
|
|
|
|
|
|
|
|
|
|
std::string insetLabel() const { return "Clear Page"; }
|
|
|
|
|
|
|
|
|
|
std::string getCmdName() const { return "\\clearpage"; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const
|
|
|
|
|
{
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetClearPage);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InsetClearDoublePage : public InsetPagebreak {
|
|
|
|
|
public:
|
|
|
|
|
InsetClearDoublePage() {}
|
|
|
|
|
|
|
|
|
|
std::string insetLabel() const { return "Clear Double Page"; }
|
|
|
|
|
|
|
|
|
|
std::string getCmdName() const { return "\\cleardoublepage"; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const
|
|
|
|
|
{
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetClearDoublePage);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2006-11-25 15:57:27 +00:00
|
|
|
|
#endif // INSET_PAGEBREAK_H
|