Changeset 20610 for trunk/WebCore/rendering/RenderText.h
- Timestamp:
- 03/30/07 02:59:57 (22 months ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderText.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderText.h
r19997 r20610 126 126 InlineTextBox* findNextInlineTextBox(int offset, int& pos) const; 127 127 128 int allowTabs() const { return !style()->collapseWhiteSpace(); } 129 128 130 protected: 129 131 void setTextInternal(PassRefPtr<StringImpl>); … … 139 141 void calcMinMaxWidthInternal(int leadWidth); 140 142 141 void updateMonospaceCharacterWidth(); 142 int widthFromCache(const Font&, int start, int len, int tabWidth, int xPos) const; 143 int widthFromCache(const Font&, int start, int len, int xPos) const; 143 144 bool isAllASCII() const { return m_isAllASCII; } 144 145 … … 165 166 bool m_containsReversedText : 1; 166 167 bool m_isAllASCII : 1; 167 168 int m_monospaceCharacterWidth;169 168 }; 170 169