2003-10-27 12:41:26 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-11-23 02:10:00 +00:00
|
|
|
|
* \file InsetNewpage.h
|
2003-10-27 12:41:26 +00:00
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
#ifndef INSET_NEWPAGE_H
|
|
|
|
|
#define INSET_NEWPAGE_H
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
#include "Inset.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
|
#include "support/gettext.h"
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
class InsetNewpage : public Inset {
|
2003-10-27 12:41:26 +00:00
|
|
|
|
public:
|
2007-11-23 02:10:00 +00:00
|
|
|
|
InsetNewpage() {}
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
InsetCode lyxCode() const { return NEWPAGE_CODE; }
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
|
2007-02-15 23:28:31 +00:00
|
|
|
|
int latex(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +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 &,
|
2007-05-28 22:27:45 +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 &,
|
2007-05-28 22:27:45 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void read(Buffer const &, Lexer & lex);
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
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; }
|
|
|
|
|
|
2007-05-18 14:32:29 +00:00
|
|
|
|
DisplayType display() const { return AlignCenter; }
|
2006-11-25 15:09:01 +00:00
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
virtual docstring insetLabel() const { return _("New Page"); }
|
2006-11-25 15:09:01 +00:00
|
|
|
|
|
|
|
|
|
virtual std::string getCmdName() const { return "\\newpage"; }
|
|
|
|
|
|
2007-11-25 21:53:39 +00:00
|
|
|
|
virtual ColorCode ColorName() const { return Color_newpage; }
|
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
private:
|
|
|
|
|
virtual Inset * clone() const
|
|
|
|
|
{
|
|
|
|
|
return new InsetNewpage;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InsetPagebreak : public InsetNewpage {
|
|
|
|
|
public:
|
|
|
|
|
InsetPagebreak() {}
|
|
|
|
|
|
|
|
|
|
docstring insetLabel() const { return _("Page Break"); }
|
|
|
|
|
|
|
|
|
|
std::string getCmdName() const { return "\\pagebreak"; }
|
|
|
|
|
|
2007-11-25 21:53:39 +00:00
|
|
|
|
ColorCode ColorName() const { return Color_pagebreak; }
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const
|
2004-11-23 23:04:52 +00:00
|
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
|
return new InsetPagebreak;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
}
|
2003-10-27 12:41:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
class InsetClearPage : public InsetNewpage {
|
2006-11-25 15:09:01 +00:00
|
|
|
|
public:
|
|
|
|
|
InsetClearPage() {}
|
|
|
|
|
|
2006-11-25 16:52:09 +00:00
|
|
|
|
docstring insetLabel() const { return _("Clear Page"); }
|
2007-05-28 22:27:45 +00:00
|
|
|
|
|
2006-11-25 15:09:01 +00:00
|
|
|
|
std::string getCmdName() const { return "\\clearpage"; }
|
|
|
|
|
|
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const
|
2006-11-25 15:09:01 +00:00
|
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
|
return new InsetClearPage;
|
2006-11-25 15:09:01 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
class InsetClearDoublePage : public InsetNewpage {
|
2006-11-25 15:09:01 +00:00
|
|
|
|
public:
|
|
|
|
|
InsetClearDoublePage() {}
|
|
|
|
|
|
2006-11-25 16:52:09 +00:00
|
|
|
|
docstring insetLabel() const { return _("Clear Double Page"); }
|
2007-05-28 22:27:45 +00:00
|
|
|
|
|
2006-11-25 15:09:01 +00:00
|
|
|
|
std::string getCmdName() const { return "\\cleardoublepage"; }
|
|
|
|
|
|
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const
|
2006-11-25 15:09:01 +00:00
|
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
|
return new InsetClearDoublePage;
|
2006-11-25 15:09:01 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2007-11-23 02:10:00 +00:00
|
|
|
|
#endif // INSET_NEWPAGE_H
|