Changeset 12953 for trunk/WebCore/rendering/RenderBlock.h
- Timestamp:
- 02/23/06 19:08:41 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderBlock.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderBlock.h
r12476 r12953 25 25 #define RenderBlock_H 26 26 27 #include "GapRects.h" 28 #include "render_flow.h" 27 29 #include <qptrlist.h> 28 30 29 #include "render_flow.h" 30 31 typedef enum { 31 namespace WebCore { 32 33 class Position; 34 35 enum CaretType { 32 36 CursorCaret, 33 37 DragCaret, 34 } CaretType; 35 36 namespace WebCore { 37 38 class Position; 39 40 class RenderBlock : public RenderFlow 41 { 38 }; 39 40 class RenderBlock : public RenderFlow { 42 41 public: 43 RenderBlock( DOM::NodeImpl* node);42 RenderBlock(NodeImpl*); 44 43 virtual ~RenderBlock(); 45 44 … … 274 273 275 274 private: 276 DOM::Position positionForBox(InlineBox *box, bool start=true) const;277 DOM::Position positionForRenderer(RenderObject *renderer, bool start=true) const;275 Position positionForBox(InlineBox *box, bool start=true) const; 276 Position positionForRenderer(RenderObject *renderer, bool start=true) const; 278 277 279 278 protected: … … 436 435 }; 437 436 438 } ;// namespace437 } // namespace 439 438 440 439 #endif // RENDER_BLOCK_H