OSDN Git Service

am 15643db2: am 77ab6dc8: Don\'t force video end event when full screen video playing...
[android-x86/external-webkit.git] / WebCore / rendering / InlineTextBox.h
1 /*
2  * (C) 1999 Lars Knoll (knoll@kde.org)
3  * (C) 2000 Dirk Mueller (mueller@kde.org)
4  * Copyright (C) 2004, 2005, 2006, 2009 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #ifndef InlineTextBox_h
24 #define InlineTextBox_h
25
26 #include "InlineBox.h"
27 #include "RenderText.h" // so textRenderer() can be inline
28
29 namespace WebCore {
30
31 struct CompositionUnderline;
32
33 const unsigned short cNoTruncation = USHRT_MAX;
34 const unsigned short cFullTruncation = USHRT_MAX - 1;
35
36 // Helper functions shared by InlineTextBox / SVGRootInlineBox
37 void updateGraphicsContext(GraphicsContext*, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace);
38 Color correctedTextColor(Color textColor, Color backgroundColor);
39
40 class InlineTextBox : public InlineBox {
41 public:
42     InlineTextBox(RenderObject* obj)
43         : InlineBox(obj)
44         , m_prevTextBox(0)
45         , m_nextTextBox(0)
46         , m_start(0)
47         , m_len(0)
48         , m_truncation(cNoTruncation)
49     {
50     }
51
52     InlineTextBox* prevTextBox() const { return m_prevTextBox; }
53     InlineTextBox* nextTextBox() const { return m_nextTextBox; }
54     void setNextTextBox(InlineTextBox* n) { m_nextTextBox = n; }
55     void setPreviousTextBox(InlineTextBox* p) { m_prevTextBox = p; }
56
57     unsigned start() const { return m_start; }
58     unsigned end() const { return m_len ? m_start + m_len - 1 : m_start; }
59     unsigned len() const { return m_len; }
60
61     void setStart(unsigned start) { m_start = start; }
62     void setLen(unsigned len) { m_len = len; }
63
64     void offsetRun(int d) { m_start += d; }
65
66     unsigned short truncation() { return m_truncation; }
67
68     bool hasHyphen() const { return m_hasEllipsisBoxOrHyphen; }
69     void setHasHyphen(bool hasHyphen) { m_hasEllipsisBoxOrHyphen = hasHyphen; }
70     static inline bool compareByStart(const InlineTextBox* first, const InlineTextBox* second) { return first->start() < second->start(); }
71
72 private:
73     virtual int selectionTop();
74     virtual int selectionHeight();
75
76 public:
77     virtual IntRect calculateBoundaries() const { return IntRect(x(), y(), logicalWidth(), logicalHeight()); }
78
79     virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
80     bool isSelected(int startPos, int endPos) const;
81     virtual void selectionStartEnd(int& sPos, int& ePos);
82
83 protected:
84     virtual void paint(PaintInfo&, int tx, int ty);
85     virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty);
86
87 public:
88     RenderText* textRenderer() const;
89
90 private:
91     virtual void deleteLine(RenderArena*);
92     virtual void extractLine();
93     virtual void attachLine();
94
95 public:
96     virtual RenderObject::SelectionState selectionState();
97
98 private:
99     virtual void clearTruncation() { m_truncation = cNoTruncation; }
100     virtual int placeEllipsisBox(bool flowIsLTR, int visibleLeftEdge, int visibleRightEdge, int ellipsisWidth, bool& foundBox);
101
102 public:
103     virtual bool isLineBreak() const;
104
105     void setSpaceAdd(int add) { m_logicalWidth -= m_toAdd; m_toAdd = add; m_logicalWidth += m_toAdd; }
106
107 private:
108     virtual bool isInlineTextBox() const { return true; }    
109
110 public:
111     virtual int caretMinOffset() const;
112     virtual int caretMaxOffset() const;
113
114 private:
115     virtual unsigned caretMaxRenderedOffset() const;
116
117     int textPos() const;
118
119 public:
120     virtual int offsetForPosition(int x, bool includePartialGlyphs = true) const;
121     virtual int positionForOffset(int offset) const;
122
123     bool containsCaretOffset(int offset) const; // false for offset after line break
124
125     // Needs to be public, so the static paintTextWithShadows() function can use it.
126     static FloatSize applyShadowToGraphicsContext(GraphicsContext*, const ShadowData*, const FloatRect& textRect, bool stroked, bool opaque);
127
128 private:
129     InlineTextBox* m_prevTextBox; // The previous box that also uses our RenderObject
130     InlineTextBox* m_nextTextBox; // The next box that also uses our RenderObject
131
132     int m_start;
133     unsigned short m_len;
134
135     unsigned short m_truncation; // Where to truncate when text overflow is applied.  We use special constants to
136                       // denote no truncation (the whole run paints) and full truncation (nothing paints at all).
137
138 protected:
139     void paintCompositionBackground(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&, int startPos, int endPos);
140     void paintDocumentMarkers(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&, bool background);
141     void paintCompositionUnderline(GraphicsContext*, int tx, int ty, const CompositionUnderline&);
142 #if PLATFORM(MAC)
143     void paintCustomHighlight(int tx, int ty, const AtomicString& type);
144 #endif
145
146 private:
147     void paintDecoration(GraphicsContext*, int tx, int ty, int decoration, const ShadowData*);
148     void paintSelection(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&);
149     void paintSpellingOrGrammarMarker(GraphicsContext*, int tx, int ty, const DocumentMarker&, RenderStyle*, const Font&, bool grammar);
150     void paintTextMatchMarker(GraphicsContext*, int tx, int ty, const DocumentMarker&, RenderStyle*, const Font&);
151     void computeRectForReplacementMarker(int tx, int ty, const DocumentMarker&, RenderStyle*, const Font&);
152 };
153
154 inline RenderText* InlineTextBox::textRenderer() const
155 {
156     return toRenderText(renderer());
157 }
158
159 } // namespace WebCore
160
161 #endif // InlineTextBox_h