23 static int dev_fd = -1; // file descriptor for /dev/psaux
25 static int pointer_x, pointer_y;
30 if((dev_fd = open("/dev/psaux", O_RDONLY | O_NONBLOCK)) == -1) {
31 fprintf(stderr, "Cannot open /dev/psaux : %s\n", strerror(errno));
35 set_mouse_bounds(get_screen_size());
47 void set_mouse_bounds(const Rect &rect)
57 void process_mouse_event()
60 * - read all pending events from mouse fd (use O_NONBLOCK so that
61 * read will return -1 when there are no more events instead of blocking).
64 int prev_state = bnstate;
65 int prev_x = pointer_x;
66 int prev_y = pointer_y;
68 if(read_mouse() == -1) {
72 unsigned char *fb = get_framebuffer();
73 fb += (bounds.width * pointer_y + pointer_x) * 4;
78 //printf("pointer (x, y) = (%d, %d)\r\n", pointer_x, pointer_y);
80 Window *top = wm->get_window_at_pos(pointer_x, pointer_y);
82 wm->set_focused_window(top);
85 wm->set_focused_window(0);
89 /* - send each pointer move and button press/release to the topmost window
90 * with the pointer on it.
93 int dx = pointer_x - prev_x;
94 int dy = pointer_y - prev_y;
97 MouseMotionFuncType motion_callback = top->get_mouse_motion_callback();
99 Rect rect = top->get_rect();
100 motion_callback(top, pointer_x - rect.x, pointer_y - rect.y);
104 MouseButtonFuncType button_callback = top->get_mouse_button_callback();
105 if(button_callback && (bnstate != prev_state)) {
106 int num_bits = sizeof bnstate * CHAR_BIT;
107 for(int i=0; i<num_bits; i++) {
108 int s = (bnstate >> i) & 1;
109 int prev_s = (prev_state >> i) & 1;
111 button_callback(top, i, s);
117 void get_pointer_pos(int *x, int *y)
123 int get_button_state(int bn)
128 int get_button(int bn)
130 if(bn < 0 || bn >= 3) {
133 return (bnstate & (1 << bn)) != 0;
140 signed char state[3] = {0, 0, 0};
142 if((rd = read(dev_fd, state, 3)) == -1) {
143 fprintf(stderr, "Unable to get mouse state : %s\n", strerror(errno));
147 bnstate = state[0] & 7;
148 pointer_x += state[1];
149 pointer_y -= state[2];
151 if(pointer_x < bounds.x) {
152 pointer_x = bounds.x;
155 if(pointer_y < bounds.y) {
156 pointer_y = bounds.y;
159 if(pointer_x > bounds.x + bounds.width - 1) {
160 pointer_x = bounds.x + bounds.width - 1;
163 if(pointer_y > bounds.y + bounds.height - 1) {
164 pointer_y = bounds.y + bounds.height - 1;