Conversation
| void MouseEvent(UiAreaHandler *self, uiArea *area, uiAreaMouseEvent *event) { | ||
| UiAreaMouseEvent *ev = new UiAreaMouseEvent(event); | ||
| (*(self->mouseEvent))(controlsMap[uiControl(area)], ev); | ||
| (*(self->mouseEvent))((UiArea *)controlsMap[uiControl(area)], ev); |
There was a problem hiding this comment.
the event callbacks got a UiControl object (not UiArea)
|
Looks good! |
|
Maybe for a borderless window to implement a completely own ui with a menubar? |
Added, please test it on High Sierra. Doesn't work for me: andlabs/libui#357 |
Doesn't work on high sierra too... |
|
Since the resize feature is blocked by the libui issue, I purpose to move it to version 0_4_0 and merge only the move feature here. |
Here is the PR to fix this: andlabs/libui#385 |

Closes #99