| 126 | } |
| 127 | |
| 128 | bool TextureControl::getSelectorsCapture() |
| 129 | { |
| 130 | if (mMouseCapture) |
| 131 | return true; |
| 132 | |
| 133 | for (auto& selector : mSelectors) |
| 134 | { |
| 135 | if (selector->getCapture()) |
| 136 | return true; |
| 137 | } |
| 138 | |
| 139 | return false; |
| 140 | } |
| 141 | |
| 142 | void TextureControl::notifyMouseWheel(MyGUI::Widget* _sender, int _rel) |
| 143 | { |
nothing calls this directly
no test coverage detected