2024-03-30 00:18:51 +01:00
|
|
|
#ifndef DIYAC_OUTPUT_H
|
|
|
|
#define DIYAC_OUTPUT_H
|
|
|
|
#include "diyac.h"
|
|
|
|
|
|
|
|
void diyac_server_new_output(struct wl_listener *listener, void *data);
|
2024-03-31 16:09:01 +02:00
|
|
|
void diyac_output_update_usable_area(struct diyac_output *output);
|
|
|
|
struct diyac_output *diyac_output_from_cursor(struct diyac_server *server);
|
2024-04-15 13:56:11 +02:00
|
|
|
void diyac_output_usable_area(struct diyac_output * output,struct wlr_box* box);
|
|
|
|
void diyac_output_full_area(struct diyac_output *output,struct wlr_box* area);
|
2024-03-30 00:18:51 +01:00
|
|
|
#endif
|