kiwmi/include/desktop/output.h

31 lines
797 B
C
Raw Normal View History

2019-02-18 11:37:23 +00:00
/* Copyright (c), Charlotte Meyer <dev@buffet.sh>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef KIWMI_DESKTOP_OUTPUT_H
#define KIWMI_DESKTOP_OUTPUT_H
#include <wayland-server.h>
2019-03-21 16:29:26 +00:00
struct kiwmi_output {
struct wl_list link;
struct kiwmi_desktop *desktop;
struct wlr_output *wlr_output;
struct wl_listener frame;
struct wl_listener destroy;
struct wl_listener mode;
struct wl_listener transform;
2020-01-06 18:25:46 +00:00
struct {
struct wl_signal destroy;
struct wl_signal resize;
2020-01-06 18:25:46 +00:00
} events;
2019-03-21 16:29:26 +00:00
};
2019-02-18 11:37:23 +00:00
void new_output_notify(struct wl_listener *listener, void *data);
#endif /* KIWMI_DESKTOP_OUTPUT_H */