⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 render_line.h

📁 khtml在gtk上的移植版本
💻 H
字号:
/* * This file is part of the line box implementation for KDE. * * Copyright (C) 2003 Apple Computer, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB.  If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */#ifndef RENDER_LINE_H#define RENDER_LINE_H#include "rendering/render_object.h"namespace DOM {class AtomicString;};namespace khtml {class EllipsisBox;class InlineFlowBox;class RootInlineBox;// InlineBox represents a rectangle that occurs on a line.  It corresponds to// some RenderObject (i.e., it represents a portion of that RenderObject).class InlineBox{public:    InlineBox(RenderObject* obj)    :m_object(obj), m_x(0), m_y(0), m_width(0), m_height(0), m_baseline(0),     m_firstLine(false), m_constructed(false), m_dirty(false), m_extracted(false)    {        m_next = 0;        m_prev = 0;        m_parent = 0;    }    virtual ~InlineBox() {};    virtual void detach(RenderArena* renderArena);    virtual void deleteLine(RenderArena* arena);    virtual void extractLine();    virtual void attachLine();    virtual void adjustPosition(int dx, int dy);    // Overloaded new operator.    void* operator new(size_t sz, RenderArena* renderArena) throw();    // Overridden to prevent the normal delete from being called.    void operator delete(void* ptr, size_t sz);private:    // The normal operator new is disallowed.    void* operator new(size_t sz) throw();    public:    virtual bool isInlineBox() { return false; }    virtual bool isInlineFlowBox() { return false; }    virtual bool isContainer() { return false; }    virtual bool isInlineTextBox() { return false; }    virtual bool isRootInlineBox() { return false; }        bool isConstructed() { return m_constructed; }    virtual void setConstructed() {        m_constructed = true;        if (m_next)            m_next->setConstructed();    }    void setExtracted(bool b = true) { m_extracted = b; }        void setFirstLineStyleBit(bool f) { m_firstLine = f; }    bool isFirstLineStyle() const { return m_firstLine; }    void remove();    InlineBox* nextOnLine() const { return m_next; }    InlineBox* prevOnLine() const { return m_prev; }    void setNextOnLine(InlineBox* next) { m_next = next; }    void setPrevOnLine(InlineBox* prev) { m_prev = prev; }    bool nextOnLineExists() const;    bool prevOnLineExists() const;    virtual InlineBox* firstLeafChild();    virtual InlineBox* lastLeafChild();    InlineBox* closestLeafChildForXPos(int _x, int _tx);            RenderObject* object() const { return m_object; }    InlineFlowBox* parent() const { return m_parent; }    void setParent(InlineFlowBox* par) { m_parent = par; }    RootInlineBox* root();        void setWidth(int w) { m_width = w; }    int width() { return m_width; }    void setXPos(int x) { m_x = x; }    int xPos() { return m_x; }    void setYPos(int y) { m_y = y; }    int yPos() { return m_y; }    void setHeight(int h) { m_height = h; }    int height() { return m_height; }        void setBaseline(int b) { m_baseline = b; }    int baseline() { return m_baseline; }    virtual bool hasTextChildren() { return true; }    virtual int topOverflow() { return yPos(); }    virtual int bottomOverflow() { return yPos()+height(); }    virtual long caretMinOffset() const;    virtual long caretMaxOffset() const;    virtual unsigned long caretMaxRenderedOffset() const;        virtual void clearTruncation() {};    bool isDirty() const { return m_dirty; }    void markDirty(bool dirty=true) { m_dirty = dirty; }    void dirtyLineBoxes();        virtual bool canAccommodateEllipsis(bool ltr, int blockEdge, int ellipsisWidth);    virtual int placeEllipsisBox(bool ltr, int blockEdge, int ellipsisWidth, bool&);public: // FIXME: Would like to make this protected, but methods are accessing these        // members over in the part.    RenderObject* m_object;    int m_x;    int m_y;    int m_width;    int m_height;    int m_baseline;        bool m_firstLine : 1;    bool m_constructed : 1;    bool m_dirty : 1;    bool m_extracted : 1;    InlineBox* m_next; // The next element on the same line as us.    InlineBox* m_prev; // The previous element on the same line as us.    InlineFlowBox* m_parent; // The box that contains us.};class InlineRunBox : public InlineBox{public:    InlineRunBox(RenderObject* obj)    :InlineBox(obj)    {        m_prevLine = 0;        m_nextLine = 0;    }    InlineRunBox* prevLineBox() const { return m_prevLine; }    InlineRunBox* nextLineBox() const { return m_nextLine; }    void setNextLineBox(InlineRunBox* n) { m_nextLine = n; }    void setPreviousLineBox(InlineRunBox* p) { m_prevLine = p; }    virtual void paintBackgroundAndBorder(RenderObject::PaintInfo& i, int _tx, int _ty, int xOffsetOnLine) {};    virtual void paintDecorations(RenderObject::PaintInfo& i, int _tx, int _ty, bool paintedChildren = false) {};    protected:    InlineRunBox* m_prevLine;  // The previous box that also uses our RenderObject    InlineRunBox* m_nextLine;  // The next box that also uses our RenderObject};class InlineFlowBox : public InlineRunBox{public:    InlineFlowBox(RenderObject* obj)    :InlineRunBox(obj)    {        m_firstChild = 0;        m_lastChild = 0;        m_includeLeftEdge = m_includeRightEdge = false;        m_hasTextChildren = false;    }    virtual bool isInlineFlowBox() { return true; }    InlineFlowBox* prevFlowBox() const { return static_cast<InlineFlowBox*>(m_prevLine); }    InlineFlowBox* nextFlowBox() const { return static_cast<InlineFlowBox*>(m_nextLine); }        InlineBox* firstChild() { return m_firstChild; }    InlineBox* lastChild() { return m_lastChild; }    virtual InlineBox* firstLeafChild();    virtual InlineBox* lastLeafChild();    InlineBox* closestChildForXPos(int _x, int _tx);            virtual void setConstructed() {        InlineBox::setConstructed();        if (m_firstChild)            m_firstChild->setConstructed();    }    void addToLine(InlineBox* child) {        if (!m_firstChild)            m_firstChild = m_lastChild = child;        else {            m_lastChild->m_next = child;            child->m_prev = m_lastChild;            m_lastChild = child;        }        child->setFirstLineStyleBit(m_firstLine);        child->setParent(this);        if (child->isInlineTextBox())            m_hasTextChildren = true;    }    virtual void deleteLine(RenderArena* arena);    virtual void extractLine();    virtual void attachLine();    virtual void adjustPosition(int dx, int dy);    virtual void clearTruncation();        virtual void paintBackgroundAndBorder(RenderObject::PaintInfo& i, int _tx, int _ty, int xOffsetOnLine);    virtual void paintDecorations(RenderObject::PaintInfo& i, int _tx, int _ty, bool paintedChildren = false);        int marginBorderPaddingLeft();    int marginBorderPaddingRight();    int marginLeft();    int marginRight();    int borderLeft() { if (includeLeftEdge()) return object()->borderLeft(); return 0; }    int borderRight() { if (includeRightEdge()) return object()->borderRight(); return 0; }    int paddingLeft() { if (includeLeftEdge()) return object()->paddingLeft(); return 0; }    int paddingRight() { if (includeRightEdge()) return object()->paddingRight(); return 0; }        bool includeLeftEdge() { return m_includeLeftEdge; }    bool includeRightEdge() { return m_includeRightEdge; }    void setEdges(bool includeLeft, bool includeRight) {        m_includeLeftEdge = includeLeft;        m_includeRightEdge = includeRight;    }    virtual bool hasTextChildren() { return m_hasTextChildren; }    // Helper functions used during line construction and placement.    void determineSpacingForFlowBoxes(bool lastLine, RenderObject* endObject);    int getFlowSpacingWidth();    bool onEndChain(RenderObject* endObject);    int placeBoxesHorizontally(int x);    void verticallyAlignBoxes(int& heightOfBlock);    void computeLogicalBoxHeights(int& maxPositionTop, int& maxPositionBottom,                                  int& maxAscent, int& maxDescent, bool strictMode);    void adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent,                                   int maxPositionTop, int maxPositionBottom);    void placeBoxesVertically(int y, int maxHeight, int maxAscent, bool strictMode,                              int& topPosition, int& bottomPosition);    void shrinkBoxesWithNoTextChildren(int topPosition, int bottomPosition);        virtual void setOverflowPositions(int top, int bottom) {}        void removeChild(InlineBox* child);        virtual bool canAccommodateEllipsis(bool ltr, int blockEdge, int ellipsisWidth);    virtual int placeEllipsisBox(bool ltr, int blockEdge, int ellipsisWidth, bool&);protected:    InlineBox* m_firstChild;    InlineBox* m_lastChild;    bool m_includeLeftEdge : 1;    bool m_includeRightEdge : 1;    bool m_hasTextChildren : 1;};class RootInlineBox : public InlineFlowBox{public:    RootInlineBox(RenderObject* obj)    : InlineFlowBox(obj), m_topOverflow(0), m_bottomOverflow(0), m_lineBreakObj(0), m_lineBreakPos(0),       m_blockHeight(0), m_endsWithBreak(false), m_ellipsisBox(0)    {}        virtual void detach(RenderArena* renderArena);    void detachEllipsisBox(RenderArena* renderArena);    RootInlineBox* nextRootBox() { return static_cast<RootInlineBox*>(m_nextLine); }    RootInlineBox* prevRootBox() { return static_cast<RootInlineBox*>(m_prevLine); }    virtual void adjustPosition(int dx, int dy);        virtual bool isRootInlineBox() { return true; }    virtual int topOverflow() { return m_topOverflow; }    virtual int bottomOverflow() { return m_bottomOverflow; }    virtual void setOverflowPositions(int top, int bottom) { m_topOverflow = top; m_bottomOverflow = bottom; }    void setLineBreakInfo(RenderObject* obj, uint breakPos)    { m_lineBreakObj = obj; m_lineBreakPos = breakPos; }    void setLineBreakPos(int p) { m_lineBreakPos = p; }    void setBlockHeight(int h) { m_blockHeight = h; }    void setEndsWithBreak(bool b) { m_endsWithBreak = b; }        int blockHeight() const { return m_blockHeight; }    bool endsWithBreak() const { return m_endsWithBreak; }    RenderObject* lineBreakObj() const { return m_lineBreakObj; }    uint lineBreakPos() const { return m_lineBreakPos; }    void childRemoved(InlineBox* box);    bool canAccommodateEllipsis(bool ltr, int blockEdge, int lineBoxEdge, int ellipsisWidth);    void placeEllipsis(const DOM::AtomicString& ellipsisStr, bool ltr, int blockEdge, int ellipsisWidth, InlineBox* markupBox = 0);    virtual int placeEllipsisBox(bool ltr, int blockEdge, int ellipsisWidth, bool&);    EllipsisBox* ellipsisBox() const { return m_ellipsisBox; }    void paintEllipsisBox(RenderObject::PaintInfo& i, int _tx, int _ty) const;    bool hitTestEllipsisBox(RenderObject::NodeInfo& info, int _x, int _y, int _tx, int _ty,                            HitTestAction hitTestAction, bool inBox);        virtual void clearTruncation();protected:    // Normally we are only as tall as the style on our block dictates, but we might have content    // that spills out above the height of our font (e.g, a tall image), or something that extends further    // below our line (e.g., a child whose font has a huge descent).    int m_topOverflow;    int m_bottomOverflow;    // Where this line ended.  The exact object and the position within that object are stored so that    // we can create a BidiIterator beginning just after the end of this line.    RenderObject* m_lineBreakObj;    uint m_lineBreakPos;        // The height of the block at the end of this line.  This is where the next line starts.    int m_blockHeight;        // Whether the line ends with a <br>.    bool m_endsWithBreak;        // An inline text box that represents our text truncation string.    EllipsisBox* m_ellipsisBox;};}; //namespace#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -