mirror of
https://github.com/swaywm/sway.git
synced 2025-10-31 22:25:26 -04:00
swaynag: refactor {sway_,}nagbar to swaynag
This commit is contained in:
parent
6124d0f9a2
commit
a6145914c6
10 changed files with 415 additions and 411 deletions
104
include/swaynag/swaynag.h
Normal file
104
include/swaynag/swaynag.h
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
#ifndef _SWAYNAG_SWAYNAG_H
|
||||
#define _SWAYNAG_SWAYNAG_H
|
||||
#include <stdint.h>
|
||||
#include <strings.h>
|
||||
#include "list.h"
|
||||
#include "pool-buffer.h"
|
||||
#include "swaynag/types.h"
|
||||
#include "xdg-output-unstable-v1-client-protocol.h"
|
||||
|
||||
#define SWAYNAG_BAR_BORDER_THICKNESS 2
|
||||
#define SWAYNAG_MESSAGE_PADDING 8
|
||||
#define SWAYNAG_DETAILS_BORDER_THICKNESS 3
|
||||
#define SWAYNAG_BUTTON_BORDER_THICKNESS 3
|
||||
#define SWAYNAG_BUTTON_GAP 20
|
||||
#define SWAYNAG_BUTTON_GAP_CLOSE 15
|
||||
#define SWAYNAG_BUTTON_MARGIN_RIGHT 2
|
||||
#define SWAYNAG_BUTTON_PADDING 3
|
||||
|
||||
#define SWAYNAG_MAX_HEIGHT 500
|
||||
|
||||
enum swaynag_action_type {
|
||||
SWAYNAG_ACTION_DISMISS,
|
||||
SWAYNAG_ACTION_EXPAND,
|
||||
SWAYNAG_ACTION_COMMAND,
|
||||
};
|
||||
|
||||
struct swaynag_pointer {
|
||||
struct wl_pointer *pointer;
|
||||
struct wl_cursor_theme *cursor_theme;
|
||||
struct wl_cursor_image *cursor_image;
|
||||
struct wl_surface *cursor_surface;
|
||||
int x;
|
||||
int y;
|
||||
};
|
||||
|
||||
struct swaynag_output {
|
||||
char *name;
|
||||
struct wl_output *wl_output;
|
||||
uint32_t wl_name;
|
||||
};
|
||||
|
||||
struct swaynag_button {
|
||||
char *text;
|
||||
enum swaynag_action_type type;
|
||||
char *action;
|
||||
int x;
|
||||
int y;
|
||||
int width;
|
||||
int height;
|
||||
};
|
||||
|
||||
struct swaynag_details {
|
||||
bool visible;
|
||||
char *message;
|
||||
|
||||
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 {
|
||||
bool run_display;
|
||||
int querying_outputs;
|
||||
|
||||
struct wl_display *display;
|
||||
struct wl_compositor *compositor;
|
||||
struct wl_seat *seat;
|
||||
struct wl_shm *shm;
|
||||
struct swaynag_pointer pointer;
|
||||
struct zxdg_output_manager_v1 *xdg_output_manager;
|
||||
struct swaynag_output output;
|
||||
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;
|
||||
|
||||
struct swaynag_type *type;
|
||||
uint32_t anchors;
|
||||
char *message;
|
||||
char *font;
|
||||
list_t *buttons;
|
||||
struct swaynag_details details;
|
||||
};
|
||||
|
||||
void swaynag_setup(struct swaynag *swaynag);
|
||||
|
||||
void swaynag_run(struct swaynag *swaynag);
|
||||
|
||||
void swaynag_destroy(struct swaynag *swaynag);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue