]> git.lyx.org Git - lyx.git/blob - src/paragraph_funcs.h
parlist-11-a.diff
[lyx.git] / src / paragraph_funcs.h
1 // -*- C++ -*-
2 /**
3  * \file paragraph_funcs.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef PARAGRAPH_FUNCS_H
13 #define PARAGRAPH_FUNCS_H
14
15 #include "ParagraphList.h"
16 #include "paragraph.h"
17 #include "support/types.h"
18
19 class Buffer;
20 class BufferParams;
21 class TexRow;
22 class LyXLex;
23
24 ///
25 void breakParagraph(BufferParams const & bparams,
26                     ParagraphList & paragraphs,
27                     ParagraphList::iterator par,
28                     lyx::pos_type pos,
29                     int flag);
30
31 ///
32 void breakParagraphConservative(BufferParams const & bparams,
33                                 ParagraphList & paragraphs,
34                                 ParagraphList::iterator par,
35                                 lyx::pos_type pos);
36
37 /**
38  * Append the next paragraph onto the tail of this one.
39  * Be careful, this doesent make any check at all.
40  */
41 void mergeParagraph(BufferParams const & bparams,
42                     ParagraphList & paragraphs,
43                     ParagraphList::iterator par);
44
45 /// for the environments
46 Paragraph * depthHook(Paragraph * par, Paragraph::depth_type depth);
47
48 Paragraph * outerHook(Paragraph * par);
49
50 /// Is it the first par with same depth and layout?
51 bool isFirstInSequence(Paragraph * par);
52
53 /** Check if the current paragraph is the last paragraph in a
54     proof environment */
55 int getEndLabel(Paragraph * para);
56
57
58 void latexParagraphs(Buffer const * buf,
59                      ParagraphList const & paragraphs,
60                      ParagraphList::iterator par,
61                      ParagraphList::iterator endpar,
62                      std::ostream & ofs,
63                      TexRow & texrow,
64                      bool moving_arg = false);
65
66 /// read a paragraph from a .lyx file. Returns number of unrecognised tokens
67 int readParagraph(Buffer & buf, Paragraph & par, LyXLex & lex);
68
69 LyXFont const realizeFont(LyXFont const & font,
70                           BufferParams const & params,
71                           ParagraphList::iterator pit,
72                           bool outerhook = true);
73
74 LyXFont const outerFont(ParagraphList::iterator pit);
75
76 #endif // PARAGRAPH_FUNCS_H