mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-21 09:50:41 +00:00
Merge branch 'hover-states'
This commit is contained in:
@@ -286,9 +286,14 @@ var CPControlBlackColor = [CPColor blackColor];
|
||||
[self stopTracking:_previousTrackingLocation at:currentLocation mouseIsUp:YES];
|
||||
|
||||
_trackingMouseDownFlags = 0;
|
||||
|
||||
if (isWithinFrame)
|
||||
[self setThemeState:CPThemeStateHovered];
|
||||
}
|
||||
else
|
||||
{
|
||||
[self unsetThemeState:CPThemeStateHovered];
|
||||
|
||||
if (type === CPLeftMouseDown)
|
||||
{
|
||||
_trackingMouseDownFlags = [anEvent modifierFlags];
|
||||
@@ -384,6 +389,25 @@ var CPControlBlackColor = [CPColor blackColor];
|
||||
[self trackMouse:anEvent];
|
||||
}
|
||||
|
||||
- (void)mouseEntered:(CPEvent)anEvent
|
||||
{
|
||||
if (![self isEnabled])
|
||||
return;
|
||||
|
||||
[self setThemeState:CPThemeStateHovered];
|
||||
}
|
||||
|
||||
- (void)mouseExited:(CPEvent)anEvent
|
||||
{
|
||||
var currentLocation = [self convertPoint:[anEvent locationInWindow] fromView:nil],
|
||||
isWithinFrame = [self tracksMouseOutsideOfFrame] || CGRectContainsPoint([self bounds], currentLocation);
|
||||
|
||||
// Make sure we're not still in the frame because Cappuccino will sent mouseExited events
|
||||
// for all of the (ephemeral) subviews of a view as well.
|
||||
if (!isWithinFrame)
|
||||
[self unsetThemeState:CPThemeStateHovered];
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns the receiver's object value
|
||||
*/
|
||||
|
||||
@@ -405,6 +405,7 @@ function CPThemeStateName(aState)
|
||||
CPThemeStateNames[0] = "normal";
|
||||
CPThemeStateNormal = CPThemeStates["normal"] = 0;
|
||||
CPThemeStateDisabled = CPThemeState("disabled");
|
||||
CPThemeStateHovered = CPThemeState("hovered");
|
||||
CPThemeStateHighlighted = CPThemeState("highlighted");
|
||||
CPThemeStateSelected = CPThemeState("selected");
|
||||
CPThemeStateTableDataView = CPThemeState("tableDataView");
|
||||
|
||||
@@ -388,6 +388,7 @@ CPTexturedBackgroundWindowMask
|
||||
_registeredDraggedTypes = [CPSet set];
|
||||
_registeredDraggedTypesArray = [];
|
||||
_isSheet = NO;
|
||||
_acceptsMouseMovedEvents = YES;
|
||||
|
||||
// Set up our window number.
|
||||
_windowNumber = [CPApp._windows count];
|
||||
|
||||
Reference in New Issue
Block a user