| 263 | } |
| 264 | |
| 265 | void DemoKeeper::notifyMouseButtonReleased(MyGUI::Widget* _sender, int _left, int _top, MyGUI::MouseButton _id) |
| 266 | { |
| 267 | if (_id == MyGUI::MouseButton::Right) |
| 268 | { |
| 269 | mClickPosition.left = _left; |
| 270 | mClickPosition.top = _top; |
| 271 | mContextMenu->setVisible(true); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | void DemoKeeper::notifyFrameStarted(float _time) |
| 276 | { |
nothing calls this directly
no test coverage detected