]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_funcs.h
more cursor dispatch
[lyx.git] / src / paragraph_funcs.h
index fc92fac3cee37fa3dc3e5bcded827d2efa380158..5b22c421171edfcb3ee1a83a8ddc3525bbe1245f 100644 (file)
@@ -6,20 +6,23 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef PARAGRAPH_FUNCS_H
 #define PARAGRAPH_FUNCS_H
 
-#include "ParagraphList.h"
-#include "paragraph.h"
+#include "ParagraphList_fwd.h"
 #include "support/types.h"
 
+#include <string>
+
 class Buffer;
 class BufferParams;
-class TexRow;
+class LyXFont;
 class LyXLex;
+class InsetBase;
+
 
 ///
 void breakParagraph(BufferParams const & bparams,
@@ -42,33 +45,40 @@ void mergeParagraph(BufferParams const & bparams,
                    ParagraphList & paragraphs,
                    ParagraphList::iterator par);
 
+
 /// for the environments
-Paragraph * depthHook(Paragraph * par, Paragraph::depth_type depth);
+ParagraphList::iterator depthHook(ParagraphList::iterator pit,
+                                 ParagraphList const & plist,
+                                 lyx::depth_type depth);
 
-Paragraph * outerHook(Paragraph * par);
+ParagraphList::iterator outerHook(ParagraphList::iterator pit,
+                                 ParagraphList const & plist);
 
 /// Is it the first par with same depth and layout?
-bool isFirstInSequence(Paragraph * par);
+bool isFirstInSequence(ParagraphList::iterator par,
+                      ParagraphList const & plist);
 
 /** Check if the current paragraph is the last paragraph in a
     proof environment */
-int getEndLabel(Paragraph * para);
+int getEndLabel(ParagraphList::iterator pit,
+               ParagraphList const & plist);
 
+/// read a paragraph from a .lyx file. Returns number of unrecognised tokens
+int readParagraph(Buffer const & buf, Paragraph & par, LyXLex & lex);
 
-void latexParagraphs(Buffer const * buf,
-                    ParagraphList const & paragraphs,
-                    ParagraphList::iterator par,
-                    ParagraphList::iterator endpar,
-                    std::ostream & ofs,
-                    TexRow & texrow,
-                    bool moving_arg = false);
+LyXFont const outerFont(ParagraphList::iterator pit,
+                       ParagraphList const & plist);
 
-/// read a paragraph from a .lyx file. Returns number of unrecognised tokens
-int readParagraph(Buffer & buf, Paragraph & par, LyXLex & lex);
+/// find outermost paragraph containing an inset
+ParagraphList::iterator outerPar(Buffer const & buf, InsetBase const * inset);
+
+/// find owning paragraph containing an inset
+Paragraph const & ownerPar(Buffer const & buf, InsetBase const * inset);
 
-LyXFont const realizeFont(LyXFont const & font,
-                         Buffer const * buf,
-                         ParagraphList & /*plist*/,
-                         ParagraphList::iterator pit);
+/// return the range of pars [beg, end[ owning the range of y [ystart, yend] 
+void getParsInRange(ParagraphList & pl,
+                               int ystart, int yend,
+                               ParagraphList::iterator & beg,
+                               ParagraphList::iterator & end);
 
 #endif // PARAGRAPH_FUNCS_H