An Abitur is the final exams of the "Gymnasium", the highest branch of the three-branch school system in Germany.
http://en.wikipedia.org/wiki/Abitur


I'm pretty sure LBG_mouse_over_object works for all LBGUI objects, not just windows, because internal LBGUI functions also use that function for the same purpose.

But to make sure the mouse is really over that object and no other window is covering it, you should do it like this:


Code:
if(LBG_mouse_over_object(obj) && (obj->parent == LBG_mouse_window()) && LBG_window_mouse_over_content (obj->parent))
{...}



If it's a button with a Condition function, you should also include this: LBG_button_condition(but,but->Condition)