2015-12-10 07:04:22 -06:00
|
|
|
#include "wayland-swaylock-client-protocol.h"
|
2015-12-10 06:52:24 -06:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-12-10 06:57:46 -06:00
|
|
|
#include "client/window.h"
|
|
|
|
#include "client/registry.h"
|
2015-12-10 06:52:24 -06:00
|
|
|
#include "log.h"
|
|
|
|
|
2015-12-10 07:04:22 -06:00
|
|
|
list_t *surfaces;
|
|
|
|
struct registry *registry;
|
|
|
|
|
|
|
|
enum scaling_mode {
|
|
|
|
SCALING_MODE_STRETCH,
|
|
|
|
SCALING_MODE_FILL,
|
|
|
|
SCALING_MODE_FIT,
|
|
|
|
SCALING_MODE_CENTER,
|
|
|
|
SCALING_MODE_TILE,
|
|
|
|
};
|
|
|
|
|
2015-12-10 06:52:24 -06:00
|
|
|
void sway_terminate(void) {
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
init_log(L_INFO);
|
2015-12-10 07:04:22 -06:00
|
|
|
surfaces = create_list();
|
|
|
|
registry = registry_poll();
|
|
|
|
|
|
|
|
if (!registry->swaylock) {
|
|
|
|
sway_abort("swaylock requires the compositor to support the swaylock extension.");
|
|
|
|
}
|
|
|
|
|
|
|
|
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, false);
|
|
|
|
if (!window) {
|
|
|
|
sway_abort("Failed to create surfaces.");
|
|
|
|
}
|
|
|
|
lock_set_lock_surface(registry->swaylock, output->output, window->surface);
|
|
|
|
list_add(surfaces, window);
|
|
|
|
}
|
2015-12-10 06:52:24 -06:00
|
|
|
return 0;
|
|
|
|
}
|