2017-09-22 04:58:41 +02:00
|
|
|
#ifndef WLR_BACKEND_X11_H
|
|
|
|
#define WLR_BACKEND_X11_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2018-11-10 23:58:14 +01:00
|
|
|
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2018-11-10 23:58:14 +01:00
|
|
|
|
2017-09-22 06:00:27 +02:00
|
|
|
#include <wlr/backend.h>
|
2017-12-19 19:49:46 +01:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-09-22 04:58:41 +02:00
|
|
|
|
2022-03-03 15:43:38 +01:00
|
|
|
struct wlr_input_device;
|
|
|
|
|
2019-01-20 16:14:43 +01:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Creates a new X11 backend. This backend will be created with no outputs;
|
|
|
|
* you must use wlr_x11_output_create() to add them.
|
2019-01-20 16:14:43 +01:00
|
|
|
*
|
|
|
|
* The `x11_display` argument is the name of the X Display socket. Set
|
2022-05-24 18:46:59 +02:00
|
|
|
* to NULL for the default behaviour of XOpenDisplay().
|
2019-01-20 16:14:43 +01:00
|
|
|
*/
|
2017-09-22 06:00:27 +02:00
|
|
|
struct wlr_backend *wlr_x11_backend_create(struct wl_display *display,
|
2020-12-19 11:34:28 +01:00
|
|
|
const char *x11_display);
|
2019-01-20 16:14:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a new output to this backend. You may remove outputs by destroying them.
|
|
|
|
* Note that if called before initializing the backend, this will return NULL
|
|
|
|
* and your outputs will be created during initialization (and given to you via
|
2022-05-24 18:46:59 +02:00
|
|
|
* the new_output signal).
|
2019-01-20 16:14:43 +01:00
|
|
|
*/
|
2018-03-31 04:09:06 +02:00
|
|
|
struct wlr_output *wlr_x11_output_create(struct wlr_backend *backend);
|
2017-09-22 04:58:41 +02:00
|
|
|
|
2019-01-20 16:14:43 +01:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Check whether this backend is an X11 backend.
|
2019-01-20 16:14:43 +01:00
|
|
|
*/
|
2017-09-22 04:58:41 +02:00
|
|
|
bool wlr_backend_is_x11(struct wlr_backend *backend);
|
2019-01-20 16:14:43 +01:00
|
|
|
|
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Check whether this input device is an X11 input device.
|
2019-01-20 16:14:43 +01:00
|
|
|
*/
|
2017-12-19 20:40:36 +01:00
|
|
|
bool wlr_input_device_is_x11(struct wlr_input_device *device);
|
2019-01-20 16:14:43 +01:00
|
|
|
|
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Check whether this output device is an X11 output device.
|
2019-01-20 16:14:43 +01:00
|
|
|
*/
|
2017-12-19 19:49:46 +01:00
|
|
|
bool wlr_output_is_x11(struct wlr_output *output);
|
2017-09-22 04:58:41 +02:00
|
|
|
|
2019-01-20 16:21:04 +01:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Sets the title of a struct wlr_output which is an X11 window.
|
2019-01-20 16:21:04 +01:00
|
|
|
*/
|
|
|
|
void wlr_x11_output_set_title(struct wlr_output *output, const char *title);
|
|
|
|
|
2017-09-22 04:58:41 +02:00
|
|
|
#endif
|