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 {
|
|
|
|
|
|
|
|
void begin_layout(ostream & os, LyXLayout_ptr layout)
|
|
|
|
{
|
2003-11-05 10:14:13 +00:00
|
|
|
os << "\n\\begin_layout " << layout->name() << "\n";
|
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
|
|
|
}
|
|
|
|
|
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),
|
2003-08-04 10:26:10 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
begin_layout(os, layout);
|
|
|
|
has_item = false;
|
|
|
|
need_layout=false;
|
|
|
|
need_end_layout = true;
|
|
|
|
} else {
|
|
|
|
// a standard paragraph in an
|
|
|
|
// enumeration. We have to recognize
|
|
|
|
// that this may require a begin_deeper.
|
|
|
|
if (!deeper_paragraph)
|
|
|
|
begin_deeper(os);
|
|
|
|
begin_layout(os, textclass.defaultLayout());
|
|
|
|
need_layout=false;
|
|
|
|
need_end_layout = true;
|
|
|
|
deeper_paragraph = true;
|
|
|
|
}
|
|
|
|
} else {
|
2005-02-06 09:32:52 +00:00
|
|
|
// No list-like environment
|
2003-08-06 22:47:22 +00:00
|
|
|
begin_layout(os, layout);
|
|
|
|
need_layout=false;
|
|
|
|
need_end_layout = true;
|
2003-08-05 21:46:51 +00:00
|
|
|
}
|
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 ";
|
2003-08-04 10:26:10 +00:00
|
|
|
if (!extra_stuff.empty())
|
|
|
|
os << "extrastuff=[" << extra_stuff << "] ";
|
|
|
|
os << "layout=" << layout->name();
|
|
|
|
os << " parent_layout=" << parent_layout->name() << "]" << endl;
|
|
|
|
}
|