| 54 | } |
| 55 | |
| 56 | inline bool |
| 57 | DrawingCursor::mayMoveDownwards(void) { |
| 58 | return NodeCursor<VisualNode>::mayMoveDownwards() && |
| 59 | !node()->isHidden() && |
| 60 | node()->childrenLayoutIsDone() && |
| 61 | !isClipped(); |
| 62 | } |
| 63 | |
| 64 | inline void |
| 65 | DrawingCursor::moveDownwards(void) { |
nothing calls this directly
no test coverage detected