-
Notifications
You must be signed in to change notification settings - Fork 0
/
mlx_mouse.m
52 lines (43 loc) · 1.07 KB
/
mlx_mouse.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
#include <stdio.h>
#import <Cocoa/Cocoa.h>
#import <OpenGL/gl3.h>
#include "mlx_int.h"
#include "mlx_new_window.h"
int mlx_mouse_hide()
{
// CGDisplayHideCursor(kCGDirectMainDisplay);
[NSCursor hide];
return (0);
}
int mlx_mouse_show()
{
// CGDisplayShowCursor(kCGDirectMainDisplay);
[NSCursor unhide];
return (0);
}
int mlx_mouse_move(mlx_win_list_t *win, int x, int y)
{
CGPoint point;
NSRect pos;
id thewin;
thewin = [(id)(win->winid) win];
pos = [thewin frame];
// printf("got win pos %f %f\n", pos.origin.x, pos.origin.y);
point.x = pos.origin.x + x;
point.y = NSHeight([[thewin screen] frame]) - NSHeight([(id)(win->winid) frame]) - pos.origin.y + 1 + y;
CGWarpMouseCursorPosition(point);
CGAssociateMouseAndMouseCursorPosition(true);
return (0);
}
int mlx_mouse_get_pos(mlx_win_list_t *win, int *x, int *y)
{
CGPoint point;
id thewin;
NSRect pos;
thewin = [(id)(win->winid) win];
pos = [(id)(win->winid) frame];
point = [thewin mouseLocationOutsideOfEventStream];
*x = point.x;
*y = NSHeight(pos) - 1 - point.y;
return (0);
}