]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
The graphics part of J�rgen S's latest patch + a few tweaks of my own.
[lyx.git] / src / lyxrow.h
index 291c60da1ab08d6e15b5c6a91ba4a9795590ddb9..ac71a2d6615b6b56c1781d4bed02085b52d45103 100644 (file)
@@ -16,7 +16,9 @@
 #pragma interface
 #endif
 
-#include "lyxparagraph.h"
+#include "support/types.h"
+
+class Paragraph;
 
 ///
 class Row {
@@ -24,15 +26,15 @@ public:
        ///
        Row();
        ///
-       void par(LyXParagraph * p);
+       void par(Paragraph * p);
        ///
-       LyXParagraph * par();
+       Paragraph * par();
        ///
-       LyXParagraph * par() const;
+       Paragraph * par() const;
        ///
-       void pos(LyXParagraph::size_type p);
+       void pos(lyx::pos_type p);
        ///
-       LyXParagraph::size_type pos() const;
+       lyx::pos_type pos() const;
        ///
        void fill(int f);
        ///
@@ -63,9 +65,9 @@ public:
        Row * previous() const;
 private:
        ///
-       LyXParagraph * par_;
+       Paragraph * par_;
        ///
-       LyXParagraph::size_type pos_;
+       lyx::pos_type pos_;
        /** what is missing to a full row can be negative.
          Needed for hfills, flushright, block etc. */
        mutable int fill_;
@@ -85,14 +87,14 @@ private:
 
 
 inline
-LyXParagraph * Row::par()
+Paragraph * Row::par()
 {
        return par_;
 }
 
 
 inline
-LyXParagraph * Row::par() const
+Paragraph * Row::par() const
 {
        return par_;
 }