Changeset 13393 for trunk/WebCore/rendering/RenderInline.h
- Timestamp:
- 03/19/06 18:57:59 (3 years ago)
- Files:
-
- 1 moved
-
trunk/WebCore/rendering/RenderInline.h (moved) (moved from trunk/WebCore/rendering/render_inline.h) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderInline.h
r12263 r13393 26 26 #define RENDER_INLINE_H 27 27 28 #include " render_flow.h"28 #include "RenderFlow.h" 29 29 30 namespace DOM{30 namespace WebCore { 31 31 class Position; 32 32 } 33 33 34 namespace khtml{34 namespace WebCore { 35 35 36 36 class RenderInline : public RenderFlow 37 37 { 38 38 public: 39 RenderInline( DOM::NodeImpl* node);39 RenderInline(WebCore::Node* node); 40 40 virtual ~RenderInline(); 41 41 … … 71 71 virtual int height() const; 72 72 73 // used to calculate offsetWidth/Height. Overridden by inlines ( render_flow) to return73 // used to calculate offsetWidth/Height. Overridden by inlines (RenderFlow) to return 74 74 // the remaining width on a given line (and the height of a single line). 75 75 virtual int offsetLeft() const; 76 76 virtual int offsetTop() const; 77 77 78 void absoluteRects( QValueList<IntRect>& rects, int _tx, int _ty);78 void absoluteRects(DeprecatedValueList<IntRect>& rects, int _tx, int _ty); 79 79 80 80 virtual VisiblePosition positionForCoordinates(int x, int y);