mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-12 19:10:30 +00:00
198346d148
If Ctrl is hold when the left-click button is pressed, enable pinch-to-zoom to scale and rotate relative to the center of the screen. Fixes #24 <https://github.com/Genymobile/scrcpy/issues/24>
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
#ifndef INPUTMANAGER_H
|
|
#define INPUTMANAGER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include "config.h"
|
|
#include "common.h"
|
|
#include "controller.h"
|
|
#include "fps_counter.h"
|
|
#include "scrcpy.h"
|
|
#include "screen.h"
|
|
#include "video_buffer.h"
|
|
|
|
struct input_manager {
|
|
struct controller *controller;
|
|
struct video_buffer *video_buffer;
|
|
struct screen *screen;
|
|
|
|
// SDL reports repeated events as a boolean, but Android expects the actual
|
|
// number of repetitions. This variable keeps track of the count.
|
|
unsigned repeat;
|
|
|
|
bool control;
|
|
bool forward_key_repeat;
|
|
bool prefer_text;
|
|
|
|
struct {
|
|
unsigned data[SC_MAX_SHORTCUT_MODS];
|
|
unsigned count;
|
|
} sdl_shortcut_mods;
|
|
|
|
bool vfinger_down;
|
|
};
|
|
|
|
void
|
|
input_manager_init(struct input_manager *im,
|
|
const struct scrcpy_options *options);
|
|
|
|
void
|
|
input_manager_process_text_input(struct input_manager *im,
|
|
const SDL_TextInputEvent *event);
|
|
|
|
void
|
|
input_manager_process_key(struct input_manager *im,
|
|
const SDL_KeyboardEvent *event);
|
|
|
|
void
|
|
input_manager_process_mouse_motion(struct input_manager *im,
|
|
const SDL_MouseMotionEvent *event);
|
|
|
|
void
|
|
input_manager_process_touch(struct input_manager *im,
|
|
const SDL_TouchFingerEvent *event);
|
|
|
|
void
|
|
input_manager_process_mouse_button(struct input_manager *im,
|
|
const SDL_MouseButtonEvent *event);
|
|
|
|
void
|
|
input_manager_process_mouse_wheel(struct input_manager *im,
|
|
const SDL_MouseWheelEvent *event);
|
|
|
|
#endif
|