X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FTextMetrics.h;h=1a0945d4ffa57cbb4fde7d39403268dc95a89516;hb=2f71fca7df3c7149542cadf577395ecedf82bbf5;hp=ec36bff31ca70dab4d7e9eeae181c602a957e27a;hpb=ae7c588552bb79c84f664906843cfb73f5fcb271;p=lyx.git diff --git a/src/TextMetrics.h b/src/TextMetrics.h index ec36bff31c..1a0945d4ff 100644 --- a/src/TextMetrics.h +++ b/src/TextMetrics.h @@ -15,22 +15,15 @@ #define TEXT_METRICS_H #include "Font.h" -// FIXME: We only need Point class definition, not the full -// CoordCache. -#include "CoordCache.h" #include "ParagraphMetrics.h" #include "support/types.h" -#include -#include - -#include - - namespace lyx { class BufferView; +class Cursor; +class CursorSlice; class DocIterator; class MetricsInfo; class Text; @@ -40,12 +33,12 @@ class TextMetrics { public: /// Default constructor (only here for STL containers). - TextMetrics(): text_(0) {} + TextMetrics() : text_(0) {} /// The only useful constructor. TextMetrics(BufferView *, Text *); /// - bool has(pit_type pit) const; + bool contains(pit_type pit) const; /// ParagraphMetrics const & parMetrics(pit_type) const; /// @@ -58,11 +51,10 @@ public: /// Dimension const & dimension() const { return dim_; } - + /// Point const & origin() const { return origin_; } - /// compute text metrics. bool metrics(MetricsInfo & mi, Dimension & dim, int min_width = 0); @@ -76,8 +68,7 @@ public: /// The difference is that this one is used for displaying, and thus we /// are allowed to make cosmetic improvements. For instance make footnotes /// smaller. (Asger) - Font getDisplayFont(pit_type pit, - pos_type pos) const; + Font displayFont(pit_type pit, pos_type pos) const; /// There are currently two font mechanisms in LyX: /// 1. The font attributes in a lyxtext, and @@ -125,24 +116,26 @@ public: /** this calculates the specified parameters. needed when setting * the cursor and when creating a visible row */ - void computeRowMetrics(pit_type pit, Row & row) const; + void computeRowMetrics(pit_type pit, Row & row, int width) const; /// void draw(PainterInfo & pi, int x, int y) const; void drawParagraph(PainterInfo & pi, pit_type pit, int x, int y) const; + /// Returns the height of the row (width member is set to 0). + /// If \c topBottomSpace is true, extra space is added for the + /// top and bottom row. + Dimension rowHeight( + pit_type const pit, + pos_type const first, + pos_type const end, + bool topBottomSpace = true) const; + private: /// ParagraphMetrics & parMetrics(pit_type, bool redo_paragraph); - /// draw textselection. - /// FIXME: simplify to just to single row painting. - void drawSelection(PainterInfo & pi, - DocIterator const & beg, ///< selection begin. - DocIterator const & end, ///< selection end. - int x) const; - /// the minimum space a manual label needs on the screen in pixels int labelFill(pit_type const pit, Row const & row) const; @@ -157,7 +150,7 @@ private: pit_type first ) const; - /// sets row.width to the minimum space a row needs on the screen in pixel + /// returns the minimum space a row needs on the screen in pixel int rowWidth( int right_margin, pit_type const pit, @@ -165,13 +158,6 @@ private: pos_type const end ) const; - /// Calculate and set the height of the row - boost::tuple rowHeight( - pit_type const pit, - pos_type const first, - pos_type const end - ) const; - /// draw selection for a single row void drawRowSelection(PainterInfo & pi, int x, Row const & row, DocIterator const & beg, DocIterator const & end, @@ -225,10 +211,6 @@ public: int cursorY(CursorSlice const & cursor, bool boundary) const; - /// - void cursorPrevious(Cursor & cur); - /// - void cursorNext(Cursor & cur); /// bool cursorHome(Cursor & cur); /// @@ -256,7 +238,12 @@ public: int leftMargin(int max_width, pit_type pit, pos_type pos) const; int leftMargin(int max_width, pit_type pit) const; + /// calculates the position of a completion popup + void completionPosAndDim(Cursor const & cur, int & x, int & y, + Dimension & dim) const; + private: + friend class BufferView; /// The BufferView owner. BufferView * bv_;