Ui: Add safe wrapper "is_window_hovered"

This commit is contained in:
Malik Olivier Boussejra 2018-05-22 00:13:08 +09:00
parent e374eb9f55
commit 6f2b1d76b4

View File

@ -1324,6 +1324,11 @@ impl<'ui> Ui<'ui> {
unsafe { sys::igIsItemHovered(ImGuiHoveredFlags::empty()) }
}
/// Return `true` if the current window is being hovered by the mouse.
pub fn is_window_hovered(&self) -> bool {
unsafe { sys::igIsWindowHovered(ImGuiHoveredFlags::empty()) }
}
/// Returns `true` if the last item is being active.
pub fn is_item_active(&self) -> bool {
unsafe {