2003-08-19 10:04:35 +00:00
|
|
|
/**
|
2007-04-26 04:53:06 +00:00
|
|
|
* \file Context.cpp
|
2003-08-19 10:04:35 +00:00
|
|
|
* 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>
|
|
|
|
|
2007-09-29 21:06:50 +00:00
|
|
|
#include "Context.h"
|
|
|
|
#include "Layout.h"
|
2003-08-04 10:26:10 +00:00
|
|
|
|
2003-12-19 10:40:07 +00:00
|
|
|
#include "support/lstrings.h"
|
2007-09-29 21:06:50 +00:00
|
|
|
|
|
|
|
#include <iostream>
|
2003-08-04 10:26:10 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 19:57:42 +00:00
|
|
|
using namespace lyx::support;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2003-08-06 22:47:22 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
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
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
bool operator==(TeXFont const & f1, TeXFont const & f2)
|
2005-07-26 11:58:43 +00:00
|
|
|
{
|
|
|
|
return
|
|
|
|
f1.size == f2.size &&
|
|
|
|
f1.family == f2.family &&
|
|
|
|
f1.series == f2.series &&
|
|
|
|
f1.shape == f2.shape;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
void output_font_change(ostream & os, TeXFont const & oldfont,
|
|
|
|
TeXFont const & newfont)
|
2005-07-13 11:38:55 +00:00
|
|
|
{
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
TeXFont Context::normalfont;
|
2006-07-16 13:04:59 +00:00
|
|
|
bool Context::empty = true;
|
2005-07-13 11:38:55 +00:00
|
|
|
|
|
|
|
|
2003-08-04 10:26:10 +00:00
|
|
|
Context::Context(bool need_layout_,
|
This is the last of the commits that hopes to enforce the distinction between "layout files" and "document classes" that was introduced by the modules code. For the most part, these changes just refactor code from TextClass between: (a) a TextClass base class; (b) a LayoutFile subclass, which represents the information in a .layout file; and (c) a DocumentClass subclass, which represents the layout information associated with a Buffer---a LayoutFile plus Modules. Methods from TextClass have been apportioned between the three classes depending upon what is needed where, and signatures have been changed where necessary so that the right kind of class is required.
At this point, there are no simple TextClass objects in the main LyX code, and it is impossible to create them, since the TextClass constructor is protected. Only LayoutFile and DocumentClass objects can be constructed, and for the most part these are constructed only by their respective containers: BaseClassList and DocumentClassBundle. There is an exception: LayoutFile does have a public default constructor, but if anyone knows how to make it go away, please do.
There will be one or two more commits along these lines, but these will be simple renamings. For example, BaseClassList should be LayoutFileList.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23343 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-29 02:45:33 +00:00
|
|
|
TeX2LyXDocClass const & textclass_,
|
2008-04-05 19:01:43 +00:00
|
|
|
Layout const * layout_, Layout const * parent_layout_,
|
2007-04-29 18:17:15 +00:00
|
|
|
TeXFont 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
|
|
|
{
|
2008-03-06 20:01:30 +00:00
|
|
|
if (!layout)
|
|
|
|
layout = &textclass.defaultLayout();
|
|
|
|
if (!parent_layout)
|
|
|
|
parent_layout = &textclass.defaultLayout();
|
2003-08-04 10:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-26 11:58:43 +00:00
|
|
|
Context::~Context()
|
|
|
|
{
|
2008-05-07 13:55:03 +00:00
|
|
|
if (!par_extra_stuff.empty())
|
|
|
|
cerr << "Bug: Ignoring par-level extra stuff '"
|
|
|
|
<< par_extra_stuff << '\'' << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Context::begin_layout(ostream & os, Layout const * const & l)
|
|
|
|
{
|
|
|
|
os << "\n\\begin_layout " << to_utf8(l->name()) << "\n";
|
|
|
|
if (!extra_stuff.empty()) {
|
|
|
|
os << extra_stuff;
|
|
|
|
}
|
|
|
|
if (!par_extra_stuff.empty()) {
|
|
|
|
os << par_extra_stuff;
|
|
|
|
par_extra_stuff.erase();
|
|
|
|
}
|
|
|
|
// FIXME: This is not enough for things like
|
|
|
|
// \\Huge par1 \\par par2
|
|
|
|
output_font_change(os, normalfont, font);
|
2005-07-26 11:58:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2008-05-07 13:55:03 +00:00
|
|
|
begin_layout(os, layout);
|
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);
|
2008-05-07 13:55:03 +00:00
|
|
|
begin_layout(os, &textclass.defaultLayout());
|
2003-08-06 22:47:22 +00:00
|
|
|
deeper_paragraph = true;
|
|
|
|
}
|
|
|
|
} else {
|
2005-02-06 09:32:52 +00:00
|
|
|
// No list-like environment
|
2008-05-07 13:55:03 +00:00
|
|
|
begin_layout(os, layout);
|
2003-08-05 21:46:51 +00:00
|
|
|
}
|
2007-01-02 12:27:26 +00:00
|
|
|
need_layout = false;
|
2005-07-26 11:58:43 +00:00
|
|
|
need_end_layout = true;
|
2003-11-05 10:14:13 +00:00
|
|
|
os << "\n";
|
2006-07-16 13:04:59 +00:00
|
|
|
empty = false;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
void Context::add_extra_stuff(string const & stuff)
|
2003-12-19 10:40:07 +00:00
|
|
|
{
|
2007-12-12 19:57:42 +00:00
|
|
|
if (!contains(extra_stuff, stuff))
|
2003-12-19 10:40:07 +00:00
|
|
|
extra_stuff += stuff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-07 13:55:03 +00:00
|
|
|
void Context::add_par_extra_stuff(string const & stuff)
|
|
|
|
{
|
|
|
|
if (!contains(par_extra_stuff, stuff))
|
|
|
|
par_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 << "] ";
|
2008-05-07 13:55:03 +00:00
|
|
|
if (!par_extra_stuff.empty())
|
|
|
|
os << "parextrastuff=[" << par_extra_stuff << "] ";
|
2005-07-26 11:58:43 +00:00
|
|
|
os << "textclass=" << textclass.name()
|
2007-07-11 13:39:08 +00:00
|
|
|
<< " layout=" << to_utf8(layout->name())
|
|
|
|
<< " parent_layout=" << to_utf8(parent_layout->name()) << "] font=["
|
2005-07-26 11:58:43 +00:00
|
|
|
<< font.size << ' ' << font.family << ' ' << font.series << ' '
|
|
|
|
<< font.shape << ']' << endl;
|
2003-08-04 10:26:10 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|