Changeset 13393 for trunk/WebCore/rendering/RenderText.h
- Timestamp:
- 03/19/06 18:57:59 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderText.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderText.h
r13134 r13393 26 26 #define KHTML_RenderText_H 27 27 28 #include "Text Impl.h"29 #include " render_object.h"28 #include "Text.h" 29 #include "RenderObject.h" 30 30 #include <assert.h> 31 31 #include <kxmlcore/PassRefPtr.h> … … 46 46 47 47 public: 48 RenderText(Node Impl*, StringImpl*);48 RenderText(Node*, StringImpl*); 49 49 50 50 virtual bool isTextFragment() const; … … 73 73 HitTestAction hitTestAction) { assert(false); return false; } 74 74 75 virtual void absoluteRects( QValueList<IntRect>& rects, int _tx, int _ty);76 virtual QValueList<IntRect> RenderText::lineBoxRects();75 virtual void absoluteRects(DeprecatedValueList<IntRect>& rects, int _tx, int _ty); 76 virtual DeprecatedValueList<IntRect> RenderText::lineBoxRects(); 77 77 78 78 virtual VisiblePosition positionForCoordinates(int x, int y); … … 117 117 118 118 void setText(StringImpl*, bool force = false); 119 void setTextWithOffset(StringImpl*, u int offset, uintlen, bool force = false);119 void setTextWithOffset(StringImpl*, unsigned offset, unsigned len, bool force = false); 120 120 121 121 virtual bool canBeSelectionLeaf() const { return true; } … … 133 133 const Font* font(bool firstLine) const; 134 134 135 Text Impl *element() const { return static_cast<TextImpl*>(RenderObject::element()); }135 Text *element() const { return static_cast<Text*>(RenderObject::element()); } 136 136 137 137 InlineTextBox* firstTextBox() const { return m_firstTextBox; }