| 216 | } |
| 217 | |
| 218 | void ListBox::notifyMousePressed(Widget* _sender, int _left, int _top, MouseButton _id) |
| 219 | { |
| 220 | if (MouseButton::Left == _id && !mActivateOnClick) |
| 221 | _activateItem(_sender); |
| 222 | |
| 223 | eventNotifyItem( |
| 224 | this, |
| 225 | IBNotifyItemData(getIndexByWidget(_sender), IBNotifyItemData::MousePressed, _left, _top, _id)); |
| 226 | } |
| 227 | |
| 228 | void ListBox::notifyMouseClick(MyGUI::Widget* _sender) |
| 229 | { |
nothing calls this directly
no test coverage detected