Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_WindowCocoa.mm
| Show First 20 Lines • Show All 387 Lines • ▼ Show 20 Lines | - (void)magnifyWithEvent:(NSEvent *)event | ||||
| systemCocoa->handleMouseEvent(event); | systemCocoa->handleMouseEvent(event); | ||||
| } | } | ||||
| - (void)rotateWithEvent:(NSEvent *)event | - (void)rotateWithEvent:(NSEvent *)event | ||||
| { | { | ||||
| systemCocoa->handleMouseEvent(event); | systemCocoa->handleMouseEvent(event); | ||||
| } | } | ||||
| - (void)beginGestureWithEvent:(NSEvent *)event | |||||
| { | |||||
| systemCocoa->handleMouseEvent(event); | |||||
| } | |||||
| - (void)endGestureWithEvent:(NSEvent *)event | |||||
| { | |||||
| systemCocoa->handleMouseEvent(event); | |||||
| } | |||||
| - (void)tabletPoint:(NSEvent *)event | - (void)tabletPoint:(NSEvent *)event | ||||
| { | { | ||||
| systemCocoa->handleTabletEvent(event,[event type]); | systemCocoa->handleTabletEvent(event,[event type]); | ||||
| } | } | ||||
| - (void)tabletProximity:(NSEvent *)event | - (void)tabletProximity:(NSEvent *)event | ||||
| { | { | ||||
| systemCocoa->handleTabletEvent(event,[event type]); | systemCocoa->handleTabletEvent(event,[event type]); | ||||
| ▲ Show 20 Lines • Show All 1,195 Lines • Show Last 20 Lines | |||||