Added --window-image option to swaylock

This allows setting window specific images.

Also Changed:
  - The colored background is _always_ drawn, to prevent non-fullscreen
    images from leaking information.
  - Added function list_arbitrary_insert, which allows insertion to a
    list at an arbitrary location less than the capacity. It silently
    fails otherwise.
This commit is contained in:
Nuew 2016-03-22 01:20:11 -04:00
parent 4ce1ab8a26
commit 1ca5453678
3 changed files with 108 additions and 33 deletions

View file

@ -47,6 +47,14 @@ void list_insert(list_t *list, int index, void *item) {
list->items[index] = item;
}
// Added because IDK if it's safe to remove that memmove
void list_arbitrary_insert(list_t *list, int index, void *item) {
list_resize(list);
if(index > list->capacity) return;
if(list->length < index) list->length = index;
list->items[index] = item;
}
void list_del(list_t *list, int index) {
list->length--;
memmove(&list->items[index], &list->items[index + 1], sizeof(void*) * (list->length - index));

View file

@ -12,6 +12,7 @@ void list_free(list_t *list);
void list_foreach(list_t *list, void (*callback)(void* item));
void list_add(list_t *list, void *item);
void list_insert(list_t *list, int index, void *item);
void list_arbitrary_insert(list_t *list, int index, void *item);
void list_del(list_t *list, int index);
void list_cat(list_t *list, list_t *source);
// See qsort. Remember to use *_qsort functions as compare functions,

View file

@ -12,6 +12,7 @@
#include "client/registry.h"
#include "client/cairo.h"
#include "log.h"
#include "list.h"
list_t *surfaces;
struct registry *registry;
@ -24,6 +25,17 @@ enum scaling_mode {
SCALING_MODE_TILE,
};
enum none_one_list_choice {
NOL_NONE,
NOL_ONE,
NOL_LIST
};
struct none_one_list {
enum none_one_list_choice type;
void *a, *b;
};
void sway_terminate(int exit_code) {
int i;
for (i = 0; i < surfaces->length; ++i) {
@ -124,7 +136,6 @@ void notify_key(enum wl_keyboard_key_state state, xkb_keysym_t sym, uint32_t cod
void render_color(struct window *window, uint32_t color) {
cairo_set_source_u32(window->cairo, color);
cairo_paint(window->cairo);
window_render(window);
}
void render_image(struct window *window, cairo_surface_t *image, enum scaling_mode scaling_mode) {
@ -193,14 +204,35 @@ void render_image(struct window *window, cairo_surface_t *image, enum scaling_mo
}
cairo_paint(window->cairo);
}
window_render(window);
cairo_surface_t *load_image(char *image_path) {
cairo_surface_t *image = NULL;
#ifdef WITH_GDK_PIXBUF
GError *err = NULL;
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(image_path, &err);
if (!pixbuf) {
fprintf(stderr, "GDK Error: %s\n", err->message);
sway_abort("Failed to load background image.");
}
image = gdk_cairo_image_surface_create_from_pixbuf(pixbuf);
g_object_unref(pixbuf);
#else
image = cairo_image_surface_create_from_png(image_path);
#endif //WITH_GDK_PIXBUF
if (!image) {
sway_abort("Failed to read background image.");
}
return image;
}
int main(int argc, char **argv) {
char *image_path = NULL;
struct none_one_list images = { NOL_NONE, NULL, NULL };
char *scaling_mode_str = "fit";
uint32_t color = 0xFFFFFFFF;
int i;
init_log(L_INFO);
@ -211,6 +243,7 @@ int main(int argc, char **argv) {
{"scaling", required_argument, NULL, 's'},
{"tiling", no_argument, NULL, 't'},
{"version", no_argument, NULL, 'v'},
{"window-image", required_argument, NULL, 'w'},
{0, 0, 0, 0}
};
@ -222,7 +255,8 @@ int main(int argc, char **argv) {
" -s, --scaling Scaling mode: stretch, fill, fit, center, tile.\n"
" -t, --tiling Same as --scaling=tile.\n"
" -v, --version Show the version number and quit.\n"
" -i, --image <path> Display the given image.\n";
" -i, --image <path> Display the given image.\n"
" --window-image <window>:<path> Display the given image on the given window.\n";
int c;
while (1) {
@ -249,7 +283,36 @@ int main(int argc, char **argv) {
break;
}
case 'i':
image_path = optarg;
if(images.type == NOL_NONE) {
images = (struct none_one_list) { NOL_ONE, optarg, NULL };
} else {
fprintf(stderr, "only one of --image/--window-image is allowed\n");
exit(EXIT_FAILURE);
}
break;
case 'w':
if(images.type == NOL_NONE) {
images = (struct none_one_list) { NOL_LIST, create_list(), create_list() };
for(i = 0; i <= ((list_t*) images.a)->capacity; ++i) {
// this isn't perfect - if you hav>e more than 10 monitors there's a small chance of
// a segfault from uninitialized data. I honestly don't think enough people have more than
// 10 monitors to care about that though.
((list_t*) images.a)->items[i] = NULL;
((list_t*) images.b)->items[i] = NULL;
}
} else if(images.type == NOL_ONE) {
fprintf(stderr, "only one of --image/--window-image is allowed\n");
exit(EXIT_FAILURE);
}
char *image_path;
int index = strtol(optarg, &image_path, 0);
if(*image_path != ':') {
fprintf(stderr, "--window-image should be in form '<window #>:<image path>'\n");
exit(EXIT_FAILURE);
} else image_path++;
list_arbitrary_insert(images.a, index, image_path);
break;
case 's':
scaling_mode_str = optarg;
@ -302,7 +365,6 @@ int main(int argc, char **argv) {
registry->pointer = NULL;
}
int i;
for (i = 0; i < registry->outputs->length; ++i) {
struct output_state *output = registry->outputs->items[i];
struct window *window = window_setup(registry, output->width, output->height, true);
@ -314,22 +376,13 @@ int main(int argc, char **argv) {
registry->input->notify = notify_key;
cairo_surface_t *image = NULL;
if (image_path) {
#ifdef WITH_GDK_PIXBUF
GError *err = NULL;
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(image_path, &err);
if (!pixbuf) {
sway_abort("Failed to load background image.");
if(images.type == NOL_ONE) {
images.b = load_image(images.a);
} else if(images.type == NOL_LIST) {
for(i = 0; i <= ((list_t*) images.a)->length; ++i) {
if(((list_t*) images.a)->items[i] != NULL) {
list_arbitrary_insert(images.b, i, load_image(((list_t*) images.a)->items[i]));
}
image = gdk_cairo_image_surface_create_from_pixbuf(pixbuf);
g_object_unref(pixbuf);
#else
cairo_surface_t *image = cairo_image_surface_create_from_png(argv[1]);
#endif //WITH_GDK_PIXBUF
if (!image) {
sway_abort("Failed to read background image.");
}
}
@ -338,15 +391,28 @@ int main(int argc, char **argv) {
if (!window_prerender(window) || !window->cairo) {
continue;
}
if (image) {
render_image(window, image, scaling_mode);
} else {
// always render the color in case the image doesn't fully cover the screen
render_color(window, color);
if (images.type == NOL_ONE) {
render_image(window, images.b, scaling_mode);
} else if(images.type == NOL_LIST) {
if(((list_t*) images.b)->items[i] != NULL) {
render_image(window, ((list_t*) images.b)->items[i], scaling_mode);
}
}
if (image) {
cairo_surface_destroy(image);
window_render(window);
}
if(images.type == NOL_ONE) {
cairo_surface_destroy(images.b);
} else if(images.type == NOL_LIST) {
for(i = 0; i <= ((list_t*) images.a)->length; ++i) {
cairo_surface_destroy(((list_t*) images.b)->items[i]);
}
list_free(images.a);
list_free(images.b);
}
bool locked = false;