sway/include/swaynag/swaynag.h

112 lines
2.1 KiB
C
Raw Normal View History

#ifndef _SWAYNAG_SWAYNAG_H
#define _SWAYNAG_SWAYNAG_H
2018-07-26 01:57:19 +00:00
#include <stdint.h>
#include <strings.h>
2018-07-26 01:57:19 +00:00
#include "list.h"
#include "pool-buffer.h"
2023-07-29 20:17:48 +00:00
#include "cursor-shape-v1-client-protocol.h"
2018-07-28 13:34:25 +00:00
#include "swaynag/types.h"
2018-07-26 01:57:19 +00:00
#define SWAYNAG_MAX_HEIGHT 500
2018-07-30 05:02:50 +00:00
struct swaynag;
enum swaynag_action_type {
SWAYNAG_ACTION_DISMISS,
SWAYNAG_ACTION_EXPAND,
SWAYNAG_ACTION_COMMAND,
};
struct swaynag_pointer {
2018-07-26 01:57:19 +00:00
struct wl_pointer *pointer;
uint32_t serial;
2018-07-26 01:57:19 +00:00
struct wl_cursor_theme *cursor_theme;
struct wl_cursor_image *cursor_image;
struct wl_surface *cursor_surface;
int x;
int y;
};
struct swaynag_seat {
struct wl_seat *wl_seat;
uint32_t wl_name;
struct swaynag *swaynag;
struct swaynag_pointer pointer;
struct wl_list link;
};
struct swaynag_output {
2018-07-26 01:57:19 +00:00
char *name;
struct wl_output *wl_output;
uint32_t wl_name;
2018-07-30 05:02:50 +00:00
uint32_t scale;
struct swaynag *swaynag;
struct wl_list link;
2018-07-26 01:57:19 +00:00
};
struct swaynag_button {
2018-07-26 01:57:19 +00:00
char *text;
enum swaynag_action_type type;
2018-07-26 01:57:19 +00:00
char *action;
int x;
int y;
int width;
int height;
bool terminal;
bool dismiss;
2018-07-26 01:57:19 +00:00
};
struct swaynag_details {
bool visible;
char *message;
char *details_text;
int x;
int y;
int width;
int height;
int offset;
int visible_lines;
int total_lines;
struct swaynag_button *button_details;
struct swaynag_button button_up;
struct swaynag_button button_down;
};
struct swaynag {
2018-07-26 01:57:19 +00:00
bool run_display;
struct wl_display *display;
struct wl_compositor *compositor;
struct wl_seat *seat;
struct wl_shm *shm;
struct wl_list outputs; // swaynag_output::link
struct wl_list seats; // swaynag_seat::link
2018-07-30 05:02:50 +00:00
struct swaynag_output *output;
2018-07-26 01:57:19 +00:00
struct zwlr_layer_shell_v1 *layer_shell;
struct zwlr_layer_surface_v1 *layer_surface;
2023-07-29 20:17:48 +00:00
struct wp_cursor_shape_manager_v1 *cursor_shape_manager;
2018-07-26 01:57:19 +00:00
struct wl_surface *surface;
uint32_t width;
uint32_t height;
int32_t scale;
struct pool_buffer buffers[2];
struct pool_buffer *current_buffer;
struct swaynag_type *type;
2018-07-26 01:57:19 +00:00
char *message;
list_t *buttons;
struct swaynag_details details;
2018-07-26 01:57:19 +00:00
};
void swaynag_setup(struct swaynag *swaynag);
2018-07-26 01:57:19 +00:00
void swaynag_run(struct swaynag *swaynag);
2018-07-26 01:57:19 +00:00
void swaynag_destroy(struct swaynag *swaynag);
2018-07-26 01:57:19 +00:00
#endif