mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
27 lines
520 B
C
27 lines
520 B
C
#ifndef _SWAY_OUTPUT_H
|
|
#define _SWAY_OUTPUT_H
|
|
#include <time.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/types/wlr_output.h>
|
|
|
|
struct sway_server;
|
|
struct sway_container;
|
|
|
|
struct sway_output {
|
|
struct wlr_output *wlr_output;
|
|
struct sway_container *swayc;
|
|
struct sway_server *server;
|
|
struct timespec last_frame;
|
|
|
|
struct {
|
|
struct wl_signal scale;
|
|
struct wl_signal transform;
|
|
} events;
|
|
|
|
struct wl_listener frame;
|
|
struct wl_listener resolution;
|
|
struct wl_listener scale;
|
|
struct wl_listener transform;
|
|
};
|
|
|
|
#endif
|