1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00
This commit is contained in:
jules 2007-10-29 18:13:03 +00:00
parent 2a4fb4fd6b
commit 3230a03e33
5 changed files with 40 additions and 7 deletions

View file

@ -3371,7 +3371,7 @@ bool Component::hasKeyboardFocus (const bool trueIfChildIsFocused) const throw()
|| (trueIfChildIsFocused && isParentOf (currentlyFocusedComponent));
}
Component* Component::getCurrentlyFocusedComponent() throw()
Component* JUCE_CALLTYPE Component::getCurrentlyFocusedComponent() throw()
{
return currentlyFocusedComponent;
}
@ -3403,7 +3403,7 @@ bool Component::isMouseOverOrDragging() const throw()
return flags.mouseOverFlag || flags.draggingFlag;
}
bool Component::isMouseButtonDownAnywhere() throw()
bool JUCE_CALLTYPE Component::isMouseButtonDownAnywhere() throw()
{
return ModifierKeys::getCurrentModifiers().isAnyMouseButtonDown();
}
@ -3450,7 +3450,7 @@ void Component::enableUnboundedMouseMovement (bool enable,
}
}
Component* Component::getComponentUnderMouse() throw()
Component* JUCE_CALLTYPE Component::getComponentUnderMouse() throw()
{
return componentUnderMouse;
}