blob: c65971c4c43fc2a94eeb82cd9b600a772142c221 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/cocoa/clickhold_button_cell.h"
#include "base/logging.h"
// Minimum and maximum click-hold timeout.
static const NSTimeInterval kMinTimeout = 0.01;
static const NSTimeInterval kMaxTimeout = 3600.0;
@implementation ClickHoldButtonCell
// Overrides:
+ (BOOL)prefersTrackingUntilMouseUp {
return NO;
}
- (BOOL)startTrackingAt:(NSPoint)startPoint
inView:(NSView*)controlView {
return enableClickHold_ ?
YES :
[super startTrackingAt:startPoint
inView:controlView];
}
- (BOOL)continueTracking:(NSPoint)lastPoint
at:(NSPoint)currentPoint
inView:(NSView*)controlView {
return enableClickHold_ ?
YES :
[super continueTracking:lastPoint
at:currentPoint
inView:controlView];
}
- (BOOL)trackMouse:(NSEvent*)originalEvent
inRect:(NSRect)cellFrame
ofView:(NSView*)controlView
untilMouseUp:(BOOL)untilMouseUp {
if (!enableClickHold_) {
return [super trackMouse:originalEvent
inRect:cellFrame
ofView:controlView
untilMouseUp:untilMouseUp];
}
// If doing click-hold, track the mouse ourselves.
NSPoint currPoint = [controlView convertPoint:[originalEvent locationInWindow]
fromView:nil];
NSPoint lastPoint = currPoint;
NSTimeInterval timeout =
MAX(MIN(clickHoldTimeout_, kMaxTimeout), kMinTimeout);
NSDate* clickHoldBailTime = [NSDate dateWithTimeIntervalSinceNow:timeout];
if (![self startTrackingAt:currPoint inView:controlView])
return NO;
enum {
kContinueTrack, kStopClickHold, kStopMouseUp, kStopLeftRect, kStopNoContinue
} state = kContinueTrack;
do {
NSEvent* event = [NSApp nextEventMatchingMask:(NSLeftMouseDraggedMask |
NSLeftMouseUpMask)
untilDate:clickHoldBailTime
inMode:NSEventTrackingRunLoopMode
dequeue:YES];
currPoint = [controlView convertPoint:[event locationInWindow]
fromView:nil];
// Time-out or drag.
if (!event || (activateOnDrag_ && ([event type] == NSLeftMouseDragged))) {
state = kStopClickHold;
// Mouse up.
} else if ([event type] == NSLeftMouseUp) {
state = kStopMouseUp;
// Stop tracking if mouse left frame rectangle (if requested to do so).
} else if (trackOnlyInRect_ && ![controlView mouse:currPoint
inRect:cellFrame]) {
state = kStopLeftRect;
// Stop tracking if instructed to.
} else if (![self continueTracking:lastPoint
at:currPoint
inView:controlView]) {
state = kStopNoContinue;
}
lastPoint = currPoint;
} while (state == kContinueTrack);
[self stopTracking:lastPoint
at:lastPoint
inView:controlView
mouseIsUp:NO];
switch (state) {
case kStopClickHold:
if (clickHoldAction_) {
[static_cast<NSControl*>(controlView) sendAction:clickHoldAction_
to:clickHoldTarget_];
}
return YES;
case kStopMouseUp:
if ([self action]) {
[static_cast<NSControl*>(controlView) sendAction:[self action]
to:[self target]];
}
return YES;
case kStopLeftRect:
case kStopNoContinue:
return NO;
default:
NOTREACHED() << "Unknown terminating state!";
}
return NO;
}
// Accessors and mutators:
@synthesize enableClickHold = enableClickHold_;
@synthesize clickHoldTimeout = clickHoldTimeout_;
@synthesize trackOnlyInRect = trackOnlyInRect_;
@synthesize activateOnDrag = activateOnDrag_;
@synthesize clickHoldTarget = clickHoldTarget_;
@synthesize clickHoldAction = clickHoldAction_;
@end // @implementation ClickHoldButtonCell
|