| 97 | } |
| 98 | |
| 99 | void DemoKeeper::notifyPointMove(MyGUI::Widget* _sender, int _left, int _top, MyGUI::MouseButton _id) |
| 100 | { |
| 101 | _sender->setPosition( |
| 102 | MyGUI::IntPoint(_left, _top) - _sender->getCroppedParent()->getAbsolutePosition() - mOffset); |
| 103 | updateSpline(); |
| 104 | } |
| 105 | |
| 106 | void DemoKeeper::notifyPointPressed(MyGUI::Widget* _sender, int _left, int _top, MyGUI::MouseButton _id) |
| 107 | { |
nothing calls this directly
no test coverage detected