| 640 | } |
| 641 | |
| 642 | void ItemBox::notifyMouseButtonReleased(Widget* _sender, int _left, int _top, MouseButton _id) |
| 643 | { |
| 644 | bool needEvent = !mStartDrop; |
| 645 | mouseButtonReleased(_id); |
| 646 | |
| 647 | if (needEvent) |
| 648 | eventNotifyItem( |
| 649 | this, |
| 650 | IBNotifyItemData(getIndexByWidget(_sender), IBNotifyItemData::MouseReleased, _left, _top, _id)); |
| 651 | } |
| 652 | |
| 653 | void ItemBox::notifyRootMouseChangeFocus(Widget* _sender, bool _focus) |
| 654 | { |
nothing calls this directly
no test coverage detected