]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphMetrics.h
Fix isSpace for docstring
[lyx.git] / src / ParagraphMetrics.h
index 7244e2a2d34b1a48b8e43463a1145f22ed3c0840..2e57f834d9b38b606aeb34ecda83b0bd9e6767db 100644 (file)
@@ -20,7 +20,6 @@
 #include "Dimension.h"
 #include "Row.h"
 
-#include <map>
 #include <vector>
 
 namespace lyx {
@@ -32,14 +31,8 @@ namespace lyx {
  */
 typedef std::vector<Row> RowList;
 
-class Buffer;
 class BufferView;
-class BufferParams;
-class Font;
-class Inset;
 class Paragraph;
-class MetricsInfo;
-class PainterInfo;
 
 /// Helper class for paragraph metrics.
 class ParagraphMetrics {
@@ -54,14 +47,12 @@ public:
 
        void reset(Paragraph const & par);
 
-       ///
-       Row & getRow(pos_type pos, bool boundary);
        ///
        Row const & getRow(pos_type pos, bool boundary) const;
        ///
        size_t pos2row(pos_type pos) const;
 
-       /// BufferView::redoParagraph updates this
+       /// TextMetrics::redoParagraph updates this
        Dimension const & dim() const { return dim_; }
        Dimension & dim() { return dim_; }
        /// total height of paragraph
@@ -85,9 +76,6 @@ public:
        ///
        bool hfillExpansion(Row const & row, pos_type pos) const;
 
-       ///
-       size_t computeRowSignature(Row const &, BufferView const & bv) const;
-
        ///
        int position() const { return position_; }
        void setPosition(int position);