2003-08-19 10:04:35 +00:00
|
|
|
/**
|
|
|
|
* \file context.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-04 10:26:10 +00:00
|
|
|
*/
|
|
|
|
|
2003-08-23 00:17:00 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2003-12-19 10:40:07 +00:00
|
|
|
#include "support/lstrings.h"
|
2003-08-04 10:26:10 +00:00
|
|
|
#include "context.h"
|
|
|
|
|
|
|
|
using std::ostream;
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
|
2003-08-06 22:47:22 +00:00
|
|
|
namespace {
|
|
|
|
|
2005-07-13 11:38:55 +00:00
|
|
|
void begin_layout(ostream & os, LyXLayout_ptr layout, Font const & font,
|
|
|
|
Font const & normalfont)
|
2003-08-06 22:47:22 +00:00
|
|
|
{
|
2003-11-05 10:14:13 +00:00
|
|
|
os << "\n\\begin_layout " << layout->name() << "\n";
|
2005-07-13 11:38:55 +00:00
|
|
|
// FIXME: This is not enough for things like
|
|
|
|
// \\Huge par1 \\par par2
|
|
|
|
output_font_change(os, normalfont, font);
|
2003-08-06 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void end_layout(ostream & os)
|
|
|
|
{
|
|
|
|
os << "\n\\end_layout\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void begin_deeper(ostream & os)
|
|
|
|
{
|
2005-02-06 09:32:52 +00:00
|
|
|
os << "\n\\begin_deeper";
|
2003-08-06 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void end_deeper(ostream & os)
|
|
|
|
{
|
2005-02-06 09:32:52 +00:00
|
|
|
os << "\n\\end_deeper";
|
2003-08-06 22:47:22 +00:00
|
|
|
}
|
2003-09-09 18:27:24 +00:00
|
|
|
|
2003-08-06 22:47:22 +00:00
|
|
|
}
|
|
|
|
|
2005-07-26 11:58:43 +00:00
|
|
|
|
|
|
|
bool operator==(Font const & f1, Font const & f2)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
f1.size == f2.size &&
|
|
|
|
f1.family == f2.family &&
|
|
|
|
f1.series == f2.series &&
|
|
|
|
f1.shape == f2.shape;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-13 11:38:55 +00:00
|
|
|
void output_font_change(ostream & os, Font const & oldfont,
|
|
|
|
Font const & newfont)
|
|
|
|
{
|
|
|
|
if (oldfont.family != newfont.family)
|
|
|
|
os << "\n\\family " << newfont.family << '\n';
|
|
|
|
if (oldfont.series != newfont.series)
|
|
|
|
os << "\n\\series " << newfont.series << '\n';
|
|
|
|
if (oldfont.shape != newfont.shape)
|
|
|
|
os << "\n\\shape " << newfont.shape << '\n';
|
|
|
|
if (oldfont.size != newfont.size)
|
|
|
|
os << "\n\\size " << newfont.size << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Font Context::normalfont;
|
|
|
|
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
Context::Context(bool need_layout_,
|
|
|
|
LyXTextClass const & textclass_,
|
2004-06-28 06:53:12 +00:00
|
|
|
LyXLayout_ptr layout_, LyXLayout_ptr parent_layout_,
|
2004-10-05 10:11:42 +00:00
|
|
|
Font font_)
|
2003-08-04 10:26:10 +00:00
|
|
|
: need_layout(need_layout_),
|
|
|
|
need_end_layout(false), need_end_deeper(false),
|
2003-08-06 22:47:22 +00:00
|
|
|
has_item(false), deeper_paragraph(false),
|
2005-07-26 11:58:43 +00:00
|
|
|
new_layout_allowed(true), textclass(textclass_),
|
2004-06-28 06:53:12 +00:00
|
|
|
layout(layout_), parent_layout(parent_layout_),
|
|
|
|
font(font_)
|
2003-08-04 10:26:10 +00:00
|
|
|
{
|
|
|
|
if (!layout.get())
|
|
|
|
layout = textclass.defaultLayout();
|
|
|
|
if (!parent_layout.get())
|
|
|
|
parent_layout = textclass.defaultLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-26 11:58:43 +00:00
|
|
|
Context::~Context()
|
|
|
|
{
|
|
|
|
if (!extra_stuff.empty())
|
|
|
|
std::cerr << "Bug: Ignoring extra stuff '" << extra_stuff
|
|
|
|
<< '\'' << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-05 21:46:51 +00:00
|
|
|
void Context::check_layout(ostream & os)
|
|
|
|
{
|
|
|
|
if (need_layout) {
|
|
|
|
check_end_layout(os);
|
2003-08-06 22:47:22 +00:00
|
|
|
|
|
|
|
// are we in a list-like environment?
|
|
|
|
if (layout->isEnvironment()
|
|
|
|
&& layout->latextype != LATEX_ENVIRONMENT) {
|
2005-02-06 09:32:52 +00:00
|
|
|
// A list-like environment
|
2003-08-06 22:47:22 +00:00
|
|
|
if (has_item) {
|
2005-02-06 09:32:52 +00:00
|
|
|
// a new item. If we had a standard
|
|
|
|
// paragraph before, we have to end it.
|
2003-08-06 22:47:22 +00:00
|
|
|
if (deeper_paragraph) {
|
|
|
|
end_deeper(os);
|
|
|
|
deeper_paragraph = false;
|
|
|
|
}
|
2005-07-13 11:38:55 +00:00
|
|
|
begin_layout(os, layout, font, normalfont);
|
2003-08-06 22:47:22 +00:00
|
|
|
has_item = false;
|
|
|
|
} else {
|
|
|
|
// a standard paragraph in an
|
|
|
|
// enumeration. We have to recognize
|
|
|
|
// that this may require a begin_deeper.
|
|
|
|
if (!deeper_paragraph)
|
|
|
|
begin_deeper(os);
|
2005-07-13 11:38:55 +00:00
|
|
|
begin_layout(os, textclass.defaultLayout(),
|
|
|
|
font, normalfont);
|
2003-08-06 22:47:22 +00:00
|
|
|
deeper_paragraph = true;
|
|
|
|
}
|
2005-07-26 11:58:43 +00:00
|
|
|
need_layout = false;
|
2003-08-06 22:47:22 +00:00
|
|
|
} else {
|
2005-02-06 09:32:52 +00:00
|
|
|
// No list-like environment
|
2005-07-13 11:38:55 +00:00
|
|
|
begin_layout(os, layout, font, normalfont);
|
2003-08-06 22:47:22 +00:00
|
|
|
need_layout=false;
|
2003-08-05 21:46:51 +00:00
|
|
|
}
|
2005-07-26 11:58:43 +00:00
|
|
|
need_end_layout = true;
|
2003-11-05 10:14:13 +00:00
|
|
|
if (!extra_stuff.empty()) {
|
|
|
|
os << extra_stuff;
|
|
|
|
extra_stuff.erase();
|
|
|
|
}
|
|
|
|
os << "\n";
|
2003-08-05 21:46:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-09 18:27:24 +00:00
|
|
|
void Context::check_end_layout(ostream & os)
|
2003-08-04 10:26:10 +00:00
|
|
|
{
|
2003-09-09 18:27:24 +00:00
|
|
|
if (need_end_layout) {
|
2003-08-06 22:47:22 +00:00
|
|
|
end_layout(os);
|
2003-08-04 10:26:10 +00:00
|
|
|
need_end_layout = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-05 21:46:51 +00:00
|
|
|
void Context::check_deeper(ostream & os)
|
2003-08-04 10:26:10 +00:00
|
|
|
{
|
2003-08-05 21:46:51 +00:00
|
|
|
if (parent_layout->isEnvironment()) {
|
2005-02-06 09:32:52 +00:00
|
|
|
// We start a nested environment.
|
|
|
|
// We need to increase the depth.
|
2003-08-05 21:46:51 +00:00
|
|
|
if (need_end_deeper) {
|
2003-08-06 22:47:22 +00:00
|
|
|
// no need to have \end_deeper \begin_deeper
|
2003-08-05 21:46:51 +00:00
|
|
|
need_end_deeper = false;
|
|
|
|
} else {
|
2003-08-06 22:47:22 +00:00
|
|
|
begin_deeper(os);
|
2003-08-05 21:46:51 +00:00
|
|
|
need_end_deeper = true;
|
2003-08-04 10:26:10 +00:00
|
|
|
}
|
2003-08-05 21:46:51 +00:00
|
|
|
} else
|
|
|
|
check_end_deeper(os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-09 18:27:24 +00:00
|
|
|
void Context::check_end_deeper(ostream & os)
|
2003-08-05 21:46:51 +00:00
|
|
|
{
|
|
|
|
if (need_end_deeper) {
|
2003-08-06 22:47:22 +00:00
|
|
|
end_deeper(os);
|
2003-08-05 21:46:51 +00:00
|
|
|
need_end_deeper = false;
|
2003-08-04 10:26:10 +00:00
|
|
|
}
|
2003-08-06 22:47:22 +00:00
|
|
|
if (deeper_paragraph) {
|
|
|
|
end_deeper(os);
|
|
|
|
deeper_paragraph = false;
|
|
|
|
}
|
2003-08-04 10:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-05 10:14:13 +00:00
|
|
|
void Context::set_item()
|
|
|
|
{
|
|
|
|
need_layout = true;
|
|
|
|
has_item = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Context::new_paragraph(ostream & os)
|
|
|
|
{
|
|
|
|
check_end_layout(os);
|
|
|
|
need_layout = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-19 10:40:07 +00:00
|
|
|
void Context::add_extra_stuff(std::string const & stuff)
|
|
|
|
{
|
|
|
|
if (!lyx::support::contains(extra_stuff, stuff))
|
|
|
|
extra_stuff += stuff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
void Context::dump(ostream & os, string const & desc) const
|
|
|
|
{
|
2003-08-05 21:46:51 +00:00
|
|
|
os << "\n" << desc <<" [";
|
2003-08-04 10:26:10 +00:00
|
|
|
if (need_layout)
|
|
|
|
os << "need_layout ";
|
|
|
|
if (need_end_layout)
|
|
|
|
os << "need_end_layout ";
|
2003-11-05 10:14:13 +00:00
|
|
|
if (need_end_deeper)
|
|
|
|
os << "need_end_deeper ";
|
|
|
|
if (has_item)
|
|
|
|
os << "has_item ";
|
|
|
|
if (deeper_paragraph)
|
|
|
|
os << "deeper_paragraph ";
|
2005-07-26 11:58:43 +00:00
|
|
|
if (new_layout_allowed)
|
|
|
|
os << "new_layout_allowed ";
|
2003-08-04 10:26:10 +00:00
|
|
|
if (!extra_stuff.empty())
|
|
|
|
os << "extrastuff=[" << extra_stuff << "] ";
|
2005-07-26 11:58:43 +00:00
|
|
|
os << "textclass=" << textclass.name()
|
|
|
|
<< " layout=" << layout->name()
|
|
|
|
<< " parent_layout=" << parent_layout->name() << "] font=["
|
|
|
|
<< font.size << ' ' << font.family << ' ' << font.series << ' '
|
|
|
|
<< font.shape << ']' << endl;
|
2003-08-04 10:26:10 +00:00
|
|
|
}
|