2001-12-28 13:26:54 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-22 09:44:59 +00:00
|
|
|
|
/**
|
2007-04-29 18:58:28 +00:00
|
|
|
|
* \file Layout.h
|
2003-08-22 09:44:59 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-22 09:44:59 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-22 09:44:59 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2007-09-29 20:02:32 +00:00
|
|
|
|
#ifndef LAYOUT_H
|
|
|
|
|
#define LAYOUT_H
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2007-04-29 18:17:15 +00:00
|
|
|
|
#include "Font.h"
|
2007-09-29 20:02:32 +00:00
|
|
|
|
#include "LayoutEnums.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#include "Spacing.h"
|
2006-10-20 22:17:16 +00:00
|
|
|
|
#include "support/docstring.h"
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
|
class Lexer;
|
2007-04-29 19:53:54 +00:00
|
|
|
|
class TextClass;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2007-04-29 22:04:32 +00:00
|
|
|
|
/* Fix labels are printed flushright, manual labels flushleft.
|
|
|
|
|
* MARGIN_MANUAL and MARGIN_FIRST_DYNAMIC are *only* for LABEL_MANUAL,
|
|
|
|
|
* MARGIN_DYNAMIC and MARGIN_STATIC are *not* for LABEL_MANUAL.
|
|
|
|
|
* This seems a funny restriction, but I think other combinations are
|
|
|
|
|
* not needed, so I will not change it yet.
|
|
|
|
|
* Correction: MARGIN_FIRST_DYNAMIC also usable with LABEL_STATIC
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* There is a parindent and a parskip. Which one is used depends on the
|
|
|
|
|
* paragraph_separation-flag of the text-object.
|
|
|
|
|
* BUT: parindent is only thrown away, if a parskip is defined! So if you
|
|
|
|
|
* want a space between the paragraphs and a parindent at the same time,
|
|
|
|
|
* you should set parskip to zero and use topsep, parsep and bottomsep.
|
|
|
|
|
*
|
|
|
|
|
* The standard layout is an exception: its parindent is only set, if the
|
|
|
|
|
* previous paragraph is standard too. Well, this is LateX and it is good!
|
|
|
|
|
*/
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-29 18:58:28 +00:00
|
|
|
|
class Layout {
|
2001-12-28 13:26:54 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2007-04-29 18:58:28 +00:00
|
|
|
|
Layout();
|
2007-09-29 20:02:32 +00:00
|
|
|
|
/// Reads a layout definition from file
|
2007-04-29 19:53:54 +00:00
|
|
|
|
bool read(Lexer &, TextClass const &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readAlign(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readAlignPossible(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readLabelType(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readEndLabelType(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readMargin(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readLatexType(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void readSpacing(Lexer &);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-07-11 13:39:08 +00:00
|
|
|
|
docstring const & name() const;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-07-11 13:39:08 +00:00
|
|
|
|
void setName(docstring const & n);
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-07-11 13:39:08 +00:00
|
|
|
|
docstring const & obsoleted_by() const;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-07-11 13:39:08 +00:00
|
|
|
|
docstring const & depends_on() const;
|
2002-07-20 20:47:54 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const & latexname() const { return latexname_; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring const & labelstring() const { return labelstring_; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring const & endlabelstring() const { return endlabelstring_; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2006-11-08 17:22:44 +00:00
|
|
|
|
docstring const & preamble() const { return preamble_; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const & latexparam() const { return latexparam_; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2003-11-14 14:05:03 +00:00
|
|
|
|
std::string const & innertag() const { return innertag_; }
|
|
|
|
|
///
|
2003-11-25 17:23:36 +00:00
|
|
|
|
std::string const & labeltag() const { return labeltag_; }
|
|
|
|
|
///
|
|
|
|
|
std::string const & itemtag() const { return itemtag_; }
|
|
|
|
|
///
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring const & labelstring_appendix() const {
|
2001-12-28 13:26:54 +00:00
|
|
|
|
return labelstring_appendix_;
|
|
|
|
|
}
|
|
|
|
|
/** Default font for this layout/environment.
|
|
|
|
|
The main font for this kind of environment. If an attribute has
|
2007-04-29 18:17:15 +00:00
|
|
|
|
Font::INHERITED_*, it means that the value is specified by
|
2001-12-28 13:26:54 +00:00
|
|
|
|
the defaultfont for the entire layout. If we are nested, the
|
|
|
|
|
font is inherited from the font in the environment one level
|
2007-04-29 18:17:15 +00:00
|
|
|
|
up until the font is resolved. The values Font::IGNORE_*
|
|
|
|
|
and Font::TOGGLE are illegal here.
|
2001-12-28 13:26:54 +00:00
|
|
|
|
*/
|
2007-04-29 18:17:15 +00:00
|
|
|
|
Font font;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
/** Default font for labels.
|
|
|
|
|
Interpretation the same as for font above
|
|
|
|
|
*/
|
2007-04-29 18:17:15 +00:00
|
|
|
|
Font labelfont;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
/** Resolved version of the font for this layout/environment.
|
|
|
|
|
This is a resolved version the default font. The font is resolved
|
|
|
|
|
against the defaultfont of the entire layout.
|
|
|
|
|
*/
|
2007-04-29 18:17:15 +00:00
|
|
|
|
Font resfont;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
/** Resolved version of the font used for labels.
|
|
|
|
|
This is a resolved version the label font. The font is resolved
|
|
|
|
|
against the defaultfont of the entire layout.
|
|
|
|
|
*/
|
2007-04-29 18:17:15 +00:00
|
|
|
|
Font reslabelfont;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
/// Text that dictates how wide the left margin is on the screen
|
2007-08-18 13:21:12 +00:00
|
|
|
|
docstring leftmargin;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Text that dictates how wide the right margin is on the screen
|
2007-08-18 13:21:12 +00:00
|
|
|
|
docstring rightmargin;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Text that dictates how much space to leave after a potential label
|
2007-08-18 13:21:12 +00:00
|
|
|
|
docstring labelsep;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Text that dictates how much space to leave before a potential label
|
2007-08-18 13:21:12 +00:00
|
|
|
|
docstring labelindent;
|
2003-03-14 10:39:47 +00:00
|
|
|
|
/// Text that dictates the width of the indentation of indented pars
|
2007-08-18 13:21:12 +00:00
|
|
|
|
docstring parindent;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double parskip;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double itemsep;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double topsep;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double bottomsep;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double labelbottomsep;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2005-01-27 21:05:44 +00:00
|
|
|
|
double parsep;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
|
|
|
|
Spacing spacing;
|
|
|
|
|
///
|
|
|
|
|
LyXAlignment align;
|
|
|
|
|
///
|
|
|
|
|
LyXAlignment alignpossible;
|
|
|
|
|
///
|
2007-09-29 20:02:32 +00:00
|
|
|
|
LabelType labeltype;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-09-29 20:02:32 +00:00
|
|
|
|
EndLabelType endlabeltype;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-09-29 20:02:32 +00:00
|
|
|
|
MarginType margintype;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
|
|
|
|
bool fill_top;
|
|
|
|
|
///
|
|
|
|
|
bool fill_bottom;
|
|
|
|
|
///
|
|
|
|
|
bool newline_allowed;
|
|
|
|
|
///
|
|
|
|
|
bool nextnoindent;
|
|
|
|
|
///
|
|
|
|
|
bool free_spacing;
|
|
|
|
|
///
|
|
|
|
|
bool pass_thru;
|
2007-01-17 21:12:14 +00:00
|
|
|
|
/**
|
|
|
|
|
* Whether this layout was declared with "Environment xxx" as opposed
|
|
|
|
|
* to "Style xxx". This is part of some unfinished generic environment
|
|
|
|
|
* handling (see also InsetEnvironment) started by Andre. No layout
|
|
|
|
|
* that is shipped with LyX has this flag set.
|
|
|
|
|
* Don't confuse this with isEnvironment()!
|
|
|
|
|
*/
|
2003-05-19 07:12:09 +00:00
|
|
|
|
bool is_environment;
|
2003-09-15 15:51:48 +00:00
|
|
|
|
/// show this in toc
|
|
|
|
|
int toclevel;
|
2005-05-12 10:16:04 +00:00
|
|
|
|
/// special value of toclevel for non-section layouts
|
|
|
|
|
static const int NOT_IN_TOC;
|
2003-03-14 10:39:47 +00:00
|
|
|
|
/// for new environment insets
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string latexheader;
|
2003-03-14 10:39:47 +00:00
|
|
|
|
/// for new environment insets
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string latexfooter;
|
2003-05-19 07:12:09 +00:00
|
|
|
|
/// for new environment insets
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string latexparagraph;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
/** true when the fragile commands in the paragraph need to be
|
|
|
|
|
\protect'ed. */
|
|
|
|
|
bool needprotect;
|
|
|
|
|
/// true when empty paragraphs should be kept.
|
|
|
|
|
bool keepempty;
|
|
|
|
|
///
|
2007-09-29 20:02:32 +00:00
|
|
|
|
bool isParagraph() const { return latextype == LATEX_PARAGRAPH; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-09-29 20:02:32 +00:00
|
|
|
|
bool isCommand() const { return latextype == LATEX_COMMAND; }
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
|
|
|
|
bool isEnvironment() const {
|
2007-09-29 20:02:32 +00:00
|
|
|
|
return latextype == LATEX_ENVIRONMENT
|
2003-02-17 15:16:14 +00:00
|
|
|
|
|| latextype == LATEX_BIB_ENVIRONMENT
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|| latextype == LATEX_ITEM_ENVIRONMENT
|
2007-09-29 20:02:32 +00:00
|
|
|
|
|| latextype == LATEX_LIST_ENVIRONMENT;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
}
|
|
|
|
|
/// Type of LaTeX object
|
2007-09-29 20:02:32 +00:00
|
|
|
|
LatexType latextype;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Does this object belong in the title part of the document?
|
|
|
|
|
bool intitle;
|
2002-08-23 09:05:32 +00:00
|
|
|
|
/// Does this layout allow for an optional parameter?
|
|
|
|
|
int optionalargs;
|
2003-09-12 17:13:22 +00:00
|
|
|
|
/// Which counter to step
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring counter;
|
2003-11-14 14:05:03 +00:00
|
|
|
|
/// Depth of XML command
|
|
|
|
|
int commanddepth;
|
2002-09-04 06:41:38 +00:00
|
|
|
|
|
2007-07-02 16:02:41 +00:00
|
|
|
|
/// Return a pointer on a new layout suitable to describe a caption.
|
|
|
|
|
/// FIXME: remove this eventually. This is only for tex2lyx
|
|
|
|
|
/// until it has proper support for the caption inset (JMarc)
|
|
|
|
|
static Layout * forCaption();
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
private:
|
|
|
|
|
/// Name of the layout/paragraph environment
|
2007-07-11 13:39:08 +00:00
|
|
|
|
docstring name_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
/** Name of an layout that has replaced this layout.
|
|
|
|
|
This is used to rename a layout, while keeping backward
|
2002-03-21 17:27:08 +00:00
|
|
|
|
compatibility
|
2001-12-28 13:26:54 +00:00
|
|
|
|
*/
|
2007-07-11 13:39:08 +00:00
|
|
|
|
docstring obsoleted_by_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2002-07-20 20:47:54 +00:00
|
|
|
|
/** Name of an layout which preamble must come before this one
|
|
|
|
|
This is used when the preamble snippet uses macros defined in
|
|
|
|
|
another preamble
|
|
|
|
|
*/
|
2007-07-11 13:39:08 +00:00
|
|
|
|
docstring depends_on_;
|
2002-07-20 20:47:54 +00:00
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// LaTeX name for environment
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string latexname_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Label string. "Abstract", "Reference", "Caption"...
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring labelstring_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
///
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring endlabelstring_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Label string inside appendix. "Appendix", ...
|
2007-09-20 20:44:08 +00:00
|
|
|
|
docstring labelstring_appendix_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// LaTeX parameter for environment
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string latexparam_;
|
2003-11-14 14:05:03 +00:00
|
|
|
|
/// Internal tag to use (e.g., <title></title> for sect header)
|
|
|
|
|
std::string innertag_;
|
2003-11-25 17:23:36 +00:00
|
|
|
|
/// Internal tag to use e.g. to surround varlistentry label)
|
|
|
|
|
std::string labeltag_;
|
|
|
|
|
/// Internal tag to surround the item text in a list)
|
|
|
|
|
std::string itemtag_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
/// Macro definitions needed for this layout
|
2006-11-08 17:22:44 +00:00
|
|
|
|
docstring preamble_;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#endif
|