This commit is contained in:
emersion 2018-07-13 15:52:56 +00:00 committed by GitHub
commit 96d9b0b125
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 524 additions and 238 deletions

View file

@ -474,11 +474,11 @@ void free_sway_binding(struct sway_binding *sb);
struct sway_binding *sway_binding_dup(struct sway_binding *sb);
void load_swaybars();
void load_swaybars(void);
void invoke_swaybar(struct bar_config *bar);
void terminate_swaybg(pid_t pid);
void load_swaybg(void);
struct bar_config *default_bar_config(void);

View file

@ -31,8 +31,6 @@ struct sway_output {
struct wl_list link;
pid_t bg_pid;
struct {
struct wl_signal destroy;
} events;

54
include/swaybg.h Normal file
View file

@ -0,0 +1,54 @@
#ifndef _SWAYBG_H
#define _SWAYBG_H
#include <stdbool.h>
#include <stdint.h>
#include <wayland-client.h>
#include "background-image.h"
#include "cairo.h"
#include "pool-buffer.h"
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
struct swaybg_args {
uint32_t color;
enum background_mode mode;
};
// There is exactly one swaybg_image for each -i argument
struct swaybg_image {
char *path;
char *output_name;
cairo_surface_t *cairo_surface;
struct wl_list link;
};
struct swaybg_state {
struct wl_display *display;
struct wl_compositor *compositor;
struct zwlr_layer_shell_v1 *layer_shell;
struct wl_shm *shm;
struct wl_list surfaces;
struct wl_list images;
struct swaybg_args args;
bool run_display;
struct zxdg_output_manager_v1 *zxdg_output_manager;
};
struct swaybg_surface {
cairo_surface_t *image;
struct swaybg_state *state;
struct wl_output *output;
uint32_t output_global_name;
struct zxdg_output_v1 *xdg_output;
struct wl_surface *surface;
struct zwlr_layer_surface_v1 *layer_surface;
struct pool_buffer buffers[2];
struct pool_buffer *current_buffer;
uint32_t width, height;
int32_t scale;
char *output_name;
struct wl_list link;
};
void render_surface(struct swaybg_surface *surface);
#endif