2018-07-29 03:15:12 +00:00
|
|
|
#ifndef _SWAYNAG_SWAYNAG_H
|
|
|
|
#define _SWAYNAG_SWAYNAG_H
|
2018-07-26 01:57:19 +00:00
|
|
|
#include <stdint.h>
|
2018-07-29 02:56:12 +00:00
|
|
|
#include <strings.h>
|
2018-07-26 01:57:19 +00:00
|
|
|
#include "list.h"
|
|
|
|
#include "pool-buffer.h"
|
2018-07-28 13:34:25 +00:00
|
|
|
#include "swaynag/types.h"
|
2018-07-26 01:57:19 +00:00
|
|
|
#include "xdg-output-unstable-v1-client-protocol.h"
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
#define SWAYNAG_MAX_HEIGHT 500
|
|
|
|
|
2018-07-30 05:02:50 +00:00
|
|
|
struct swaynag;
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
enum swaynag_action_type {
|
|
|
|
SWAYNAG_ACTION_DISMISS,
|
|
|
|
SWAYNAG_ACTION_EXPAND,
|
|
|
|
SWAYNAG_ACTION_COMMAND,
|
2018-07-27 05:30:35 +00:00
|
|
|
};
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_pointer {
|
2018-07-26 01:57:19 +00:00
|
|
|
struct wl_pointer *pointer;
|
2018-07-30 17:52:02 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_button {
|
2018-07-26 01:57:19 +00:00
|
|
|
char *text;
|
2018-07-29 03:15:12 +00:00
|
|
|
enum swaynag_action_type type;
|
2018-07-26 01:57:19 +00:00
|
|
|
char *action;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
2018-11-28 04:27:44 +00:00
|
|
|
bool terminal;
|
2018-07-26 01:57:19 +00:00
|
|
|
};
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_details {
|
2018-07-27 05:30:35 +00:00
|
|
|
bool visible;
|
|
|
|
char *message;
|
|
|
|
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
int offset;
|
|
|
|
int visible_lines;
|
|
|
|
int total_lines;
|
2018-08-20 19:06:12 +00:00
|
|
|
struct swaynag_button *button_details;
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_button button_up;
|
|
|
|
struct swaynag_button button_down;
|
2018-07-27 05:30:35 +00:00
|
|
|
};
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag {
|
2018-07-26 01:57:19 +00:00
|
|
|
bool run_display;
|
|
|
|
int querying_outputs;
|
|
|
|
|
|
|
|
struct wl_display *display;
|
|
|
|
struct wl_compositor *compositor;
|
|
|
|
struct wl_seat *seat;
|
|
|
|
struct wl_shm *shm;
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_pointer pointer;
|
2018-07-26 01:57:19 +00:00
|
|
|
struct zxdg_output_manager_v1 *xdg_output_manager;
|
2018-07-30 17:52:02 +00:00
|
|
|
struct wl_list outputs; // swaynag_output::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;
|
|
|
|
struct wl_surface *surface;
|
|
|
|
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
int32_t scale;
|
|
|
|
struct pool_buffer buffers[2];
|
|
|
|
struct pool_buffer *current_buffer;
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_type *type;
|
2018-07-26 01:57:19 +00:00
|
|
|
char *message;
|
|
|
|
list_t *buttons;
|
2018-07-29 03:15:12 +00:00
|
|
|
struct swaynag_details details;
|
2018-07-26 01:57:19 +00:00
|
|
|
};
|
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
void swaynag_setup(struct swaynag *swaynag);
|
2018-07-26 01:57:19 +00:00
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
void swaynag_run(struct swaynag *swaynag);
|
2018-07-26 01:57:19 +00:00
|
|
|
|
2018-07-29 03:15:12 +00:00
|
|
|
void swaynag_destroy(struct swaynag *swaynag);
|
2018-07-26 01:57:19 +00:00
|
|
|
|
|
|
|
#endif
|