forked from cl3m/MiddleClick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.m
147 lines (120 loc) · 4.05 KB
/
main.m
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
137
138
139
140
141
142
143
144
145
146
147
//
// MiddleClick
// main.m
//
// Created by Clem on 21.06.09.
//
#import <Cocoa/Cocoa.h>
#import "TrayMenu.h"
#include <math.h>
#include <unistd.h>
#include <CoreFoundation/CoreFoundation.h>
#import <Foundation/Foundation.h>
#import "WakeObserver.h"
typedef struct { float x,y; } mtPoint;
typedef struct { mtPoint pos,vel; } mtReadout;
typedef struct {
int frame;
double timestamp;
int identifier, state, foo3, foo4;
mtReadout normalized;
float size;
int zero1;
float angle, majorAxis, minorAxis; // ellipsoid
mtReadout mm;
int zero2[2];
float unk2;
} Finger;
typedef int MTDeviceRef;
typedef int (*MTContactCallbackFunction)(int,Finger*,int,double,int);
MTDeviceRef MTDeviceCreateDefault();
void MTRegisterContactFrameCallback(MTDeviceRef, MTContactCallbackFunction);
void MTDeviceStart(MTDeviceRef);
CFMutableArrayRef MTDeviceCreateList(void); //returns a CFMutableArrayRef array of all multitouch devices
BOOL maybeMiddleClick;
NSDate *touchStartTime;
float middleclickX, middleclickY;
float middleclickX2, middleclickY2;
MTDeviceRef dev;
int callback(int device, Finger *data, int nFingers, double timestamp, int frame) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//detect triple tap click from raw finger data
if (nFingers==0){
touchStartTime = NULL;
if(middleclickX+middleclickY) {
float delta = ABS(middleclickX-middleclickX2)+ABS(middleclickY-middleclickY2);
if (delta < 0.4f) {
// Emulate a middle click
// get the current pointer location
CGEventRef ourEvent = CGEventCreate(NULL);
CGPoint ourLoc = CGEventGetLocation(ourEvent);
/*
// CMD+Click code
CGPostKeyboardEvent( (CGCharCode)0, (CGKeyCode)55, true );
CGPostMouseEvent( ourLoc, 1, 1, 1);
CGPostMouseEvent( ourLoc, 1, 1, 0);
CGPostKeyboardEvent( (CGCharCode)0, (CGKeyCode)55, false );
*/
// Real middle click
CGPostMouseEvent( ourLoc, 1, 3, 0, 0, 1);
CGPostMouseEvent( ourLoc, 1, 3, 0, 0, 0);
}
}
} else if (nFingers>0 && touchStartTime == NULL){
NSDate *now = [[NSDate alloc] init];
touchStartTime = [now retain];
[now release];
maybeMiddleClick = YES;
middleclickX = 0.0f;
middleclickY = 0.0f;
} else {
if (maybeMiddleClick==YES){
NSTimeInterval elapsedTime = -[touchStartTime timeIntervalSinceNow];
if (elapsedTime > 0.5f)
maybeMiddleClick = NO;
}
}
if (nFingers>3) {
maybeMiddleClick = NO;
middleclickX = 0.0f;
middleclickY = 0.0f;
}
if (nFingers==3) {
Finger *f1 = &data[0];
Finger *f2 = &data[1];
Finger *f3 = &data[2];
if (maybeMiddleClick==YES) {
middleclickX = (f1->normalized.pos.x+f2->normalized.pos.x+f3->normalized.pos.x);
middleclickY = (f1->normalized.pos.y+f2->normalized.pos.y+f3->normalized.pos.y);
middleclickX2 = middleclickX;
middleclickY2 = middleclickY;
maybeMiddleClick=NO;
} else {
middleclickX2 = (f1->normalized.pos.x+f2->normalized.pos.x+f3->normalized.pos.x);
middleclickY2 = (f1->normalized.pos.y+f2->normalized.pos.y+f3->normalized.pos.y);
}
}
[pool release];
return 0;
}
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[NSApplication sharedApplication];
//Get list of all multi touch devices
NSMutableArray* deviceList = (NSMutableArray*)MTDeviceCreateList(); //grab our device list
//Iterate and register callbacks for multitouch devices.
for(int i = 0; i<[deviceList count]; i++) //iterate available devices
{
MTRegisterContactFrameCallback((MTDeviceRef)[deviceList objectAtIndex:i], callback); //assign callback for device
MTDeviceStart((MTDeviceRef)[deviceList objectAtIndex:i]); //start sending events
}
//register a callback to know when osx come back from sleep
WakeObserver *wo = [[WakeObserver alloc] init];
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver: wo selector: @selector(receiveWakeNote:) name: NSWorkspaceDidWakeNotification object: NULL];
//add traymenu
TrayMenu *menu = [[TrayMenu alloc] init];
[NSApp setDelegate:menu];
[NSApp run];
[pool release];
return EXIT_SUCCESS;
}