mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-08-10 17:21:32 +00:00
Replay held keys after focus enters the client window. Track modifiers and lock LEDs for cooked and grabbed raw input. Handle external XKB indicator changes while the window stays focused.
128 lines
3.0 KiB
C
128 lines
3.0 KiB
C
/**
|
|
* Looking Glass
|
|
* Copyright © 2017-2026 The Looking Glass Authors
|
|
* https://looking-glass.io
|
|
*
|
|
* This program 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 program 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 program; if not, write to the Free Software Foundation, Inc., 59
|
|
* Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef _H_X11DS_X11_
|
|
#define _H_X11DS_X11_
|
|
|
|
#include <stdatomic.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xatom.h>
|
|
#include <X11/Xutil.h>
|
|
#include <X11/extensions/Xfixes.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
#include "interface/displayserver.h"
|
|
#include "common/locking.h"
|
|
#include "common/thread.h"
|
|
#include "common/types.h"
|
|
#include "input_event.h"
|
|
#include "wm.h"
|
|
|
|
enum Modifiers
|
|
{
|
|
MOD_CTRL_LEFT = 0,
|
|
MOD_CTRL_RIGHT,
|
|
MOD_SHIFT_LEFT,
|
|
MOD_SHIFT_RIGHT,
|
|
MOD_ALT_LEFT,
|
|
MOD_ALT_RIGHT,
|
|
MOD_SUPER_LEFT,
|
|
MOD_SUPER_RIGHT,
|
|
};
|
|
|
|
#define MOD_COUNT (MOD_SUPER_RIGHT + 1)
|
|
|
|
#define _NET_WM_STATE_REMOVE 0
|
|
#define _NET_WM_STATE_ADD 1
|
|
#define _NET_WM_STATE_TOGGLE 2
|
|
|
|
struct X11DSState
|
|
{
|
|
Display * display;
|
|
Window window;
|
|
XVisualInfo * visual;
|
|
X11WM * wm;
|
|
|
|
int minKeycode, maxKeycode;
|
|
_Atomic(unsigned int) keyboardGroup;
|
|
int numLockIndicator;
|
|
int capsLockIndicator;
|
|
int scrollLockIndicator;
|
|
int xkbEvent;
|
|
|
|
//Extended Window Manager Hints
|
|
//ref: https://specifications.freedesktop.org/wm-spec/latest/
|
|
bool ewmhSupport;
|
|
bool ewmhHasFocusEvent;
|
|
|
|
_Atomic(uint64_t) lastWMEvent;
|
|
bool invalidateAll;
|
|
bool doFullscreenOnExpose;
|
|
|
|
int xpresentOp;
|
|
bool jitRender;
|
|
_Atomic(uint64_t) presentMsc, presentUst;
|
|
_Atomic(uint64_t) presentPeriod;
|
|
_Atomic(uint64_t) nominalPeriod;
|
|
_Atomic(bool) presentDiscontinuity;
|
|
uint32_t presentSerial;
|
|
Pixmap presentPixmap;
|
|
XserverRegion presentRegion;
|
|
_Atomic(unsigned) frameEventFlags;
|
|
LGEvent * frameEvent;
|
|
|
|
bool xrandrSupported;
|
|
int xrandrEvent;
|
|
|
|
LGThread * eventThread;
|
|
|
|
int xinputOp;
|
|
int pointerDev;
|
|
int keyboardDev;
|
|
int xValuator;
|
|
int yValuator;
|
|
|
|
X11Input input;
|
|
LG_Lock pointerLock;
|
|
_Atomic(bool) captureActive;
|
|
_Atomic(bool) pointerGrabbed;
|
|
bool keyboardGrabbed;
|
|
bool fullscreen;
|
|
|
|
struct Rect rect;
|
|
struct Border border;
|
|
|
|
Cursor cursors[LG_POINTER_COUNT];
|
|
|
|
XIM xim;
|
|
XIC xic;
|
|
bool modifiers[MOD_COUNT];
|
|
|
|
// XFixes vars
|
|
int eventBase;
|
|
int errorBase;
|
|
};
|
|
|
|
extern struct X11DSState x11;
|
|
|
|
#endif
|