| 1531 | } |
| 1532 | |
| 1533 | void UINode::startDragging( const Vector2f& position ) { |
| 1534 | setDragging( true ); |
| 1535 | |
| 1536 | if ( NULL != getEventDispatcher() ) |
| 1537 | getEventDispatcher()->setNodeDragging( this ); |
| 1538 | |
| 1539 | mDragPoint = position; |
| 1540 | } |
| 1541 | |
| 1542 | bool UINode::ownsChildPosition() const { |
| 1543 | return 0 != ( mFlags & UI_OWNS_CHILDREN_POSITION ); |
no test coverage detected