mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
71 lines
2.1 KiB
C
71 lines
2.1 KiB
C
/* Copyright (C) 2009 TightVNC Team
|
|
* Copyright (C) 2009, 2010 Red Hat, Inc.
|
|
* Copyright (C) 2009, 2010 TigerVNC Team
|
|
* Copyright 2013-2015 Pierre Ossman for Cendio AB
|
|
*
|
|
* This is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This software is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
* USA.
|
|
*/
|
|
|
|
/* Make sure macro doesn't conflict with macro in include/input.h. */
|
|
#ifndef INPUT_H_
|
|
#define INPUT_H_
|
|
|
|
#include <stdlib.h>
|
|
#include <X11/X.h>
|
|
#include "stdbool.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void vncInitInputDevice(bool freeKeyMappings);
|
|
|
|
void vncPointerButtonAction(int buttonMask, const unsigned char skipclick,
|
|
const unsigned char skiprelease);
|
|
void vncPointerMove(int x, int y);
|
|
void vncPointerMoveRelative(int x, int y, int absx, int absy);
|
|
|
|
void vncScroll(int x, int y);
|
|
void vncGetPointerPos(int *x, int *y);
|
|
|
|
void vncKeyboardEvent(KeySym keysym, unsigned xtcode, int down);
|
|
|
|
/* Backend dependent functions below here */
|
|
|
|
void vncPrepareInputDevices(void);
|
|
|
|
unsigned vncGetKeyboardState(void);
|
|
unsigned vncGetLevelThreeMask(void);
|
|
|
|
KeyCode vncPressShift(void);
|
|
size_t vncReleaseShift(KeyCode *keys, size_t maxKeys);
|
|
|
|
KeyCode vncPressLevelThree(void);
|
|
size_t vncReleaseLevelThree(KeyCode *keys, size_t maxKeys);
|
|
|
|
KeyCode vncKeysymToKeycode(KeySym keysym, unsigned state, unsigned *new_state);
|
|
|
|
int vncIsAffectedByNumLock(KeyCode keycode);
|
|
|
|
KeyCode vncAddKeysym(KeySym keysym, unsigned state, unsigned int *needfree, bool freeKeys);
|
|
void vncRemoveKeycode(unsigned keycode);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|