52 lines
1.4 KiB
C
Raw Normal View History

2020-01-18 23:30:09 +00:00
#pragma once
#ifndef XDISPLAY_H
#define XDISPLAY_H
#include <X11/Xlib.h>
2020-06-21 01:57:52 +02:00
#include <X11/XKBlib.h>
2020-02-11 05:15:59 +00:00
#include <X11/extensions/Xrandr.h>
2020-01-18 23:30:09 +00:00
#include <X11/extensions/XTest.h>
#include <libclipboard.h>
2020-01-18 23:30:09 +00:00
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h> /* For fputs() */
#include <string.h> /* For strdup() */
2020-02-11 05:15:59 +00:00
extern void goCreateScreenSize(int index, int width, int height, int mwidth, int mheight);
extern void goSetScreenRates(int index, int rate_index, short rate);
2021-04-12 19:29:19 +02:00
typedef struct xkeys_t {
KeySym keysym;
KeyCode keycode;
struct xkeys_t *next;
} xkeys_t;
2020-01-18 23:30:09 +00:00
/* Returns the main display, closed either on exit or when closeMainDisplay()
* is invoked. This removes a bit of the overhead of calling XOpenDisplay() &
* XCloseDisplay() everytime the main display needs to be used.
*
* Note that this is almost certainly not thread safe. */
Display *getXDisplay(void);
clipboard_c *getClipboard(void);
2020-01-18 23:30:09 +00:00
2020-01-25 14:29:52 +00:00
void XMove(int x, int y);
void XScroll(int x, int y);
void XButton(unsigned int button, int down);
2021-04-10 23:48:23 +00:00
void XKey(unsigned long key, int down);
2020-01-25 14:29:52 +00:00
2020-02-11 05:15:59 +00:00
void XClipboardSet(char *src);
char *XClipboardGet();
void XGetScreenConfigurations();
void XSetScreenConfiguration(int index, short rate);
int XGetScreenSize();
short XGetScreenRate();
void XDisplayClose(void);
void XDisplaySet(char *input);
2020-06-15 23:14:23 +02:00
2020-06-20 02:15:38 +02:00
void SetKeyboardModifiers(int num_lock, int caps_lock, int scroll_lock);
2020-01-18 23:30:09 +00:00
#endif