1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 02:49:02 +00:00
trezor-firmware/embed/unix/touch.c

57 lines
1.6 KiB
C
Raw Normal View History

2017-03-16 18:14:12 +00:00
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
2017-03-16 18:40:20 +00:00
#include <stdint.h>
#ifndef TREZOR_NOUI
2017-03-16 18:14:12 +00:00
#include <SDL2/SDL.h>
2017-03-16 18:40:20 +00:00
#endif
2017-03-16 18:14:12 +00:00
#include "options.h"
2017-10-26 14:23:04 +00:00
#include "embed/trezorhal/touch.h"
2017-03-16 18:14:12 +00:00
uint32_t touch_read(void)
{
2017-03-16 18:40:20 +00:00
#ifndef TREZOR_NOUI
2017-03-16 18:14:12 +00:00
SDL_Event event;
int x, y;
SDL_PumpEvents();
if (SDL_PollEvent(&event) > 0) {
switch (event.type) {
case SDL_MOUSEBUTTONDOWN:
case SDL_MOUSEMOTION:
case SDL_MOUSEBUTTONUP:
x = event.button.x - DISPLAY_BORDER;
y = event.button.y - DISPLAY_BORDER;
if (x < 0 || y < 0 || x >= DISPLAY_RESX || y >= DISPLAY_RESY) break;
switch (event.type) {
case SDL_MOUSEBUTTONDOWN:
2017-10-26 14:23:04 +00:00
return TOUCH_START | (x << 12) | y;
2017-03-16 18:14:12 +00:00
case SDL_MOUSEMOTION:
// remove other SDL_MOUSEMOTION events from queue
SDL_FlushEvent(SDL_MOUSEMOTION);
if (event.motion.state) {
2017-10-26 14:23:04 +00:00
return TOUCH_MOVE | (x << 12) | y;
2017-03-16 18:14:12 +00:00
}
break;
case SDL_MOUSEBUTTONUP:
2017-10-26 14:23:04 +00:00
return TOUCH_END | (x << 12) | y;
2017-03-16 18:14:12 +00:00
}
break;
case SDL_KEYUP:
if (event.key.keysym.sym == SDLK_ESCAPE) {
exit(3);
}
break;
case SDL_QUIT:
exit(3);
break;
}
}
2017-03-16 18:40:20 +00:00
#endif
2017-03-16 18:14:12 +00:00
return 0;
}