2011-09-07 02:02:34 +04:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Kristian Høgsberg
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
|
|
|
#include "wayland-client.h"
|
2011-10-20 21:11:12 +04:00
|
|
|
#include "cairo-util.h"
|
2011-09-07 02:02:34 +04:00
|
|
|
#include "window.h"
|
|
|
|
|
|
|
|
#include <desktop-shell-client-protocol.h>
|
|
|
|
|
|
|
|
struct desktop {
|
|
|
|
struct display *display;
|
|
|
|
struct desktop_shell *shell;
|
|
|
|
struct panel *panel;
|
|
|
|
struct window *background;
|
|
|
|
const char *background_path;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct panel {
|
|
|
|
struct window *window;
|
2011-10-12 08:36:16 +04:00
|
|
|
struct window *menu;
|
2011-09-07 02:02:34 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct panel_item {
|
2011-09-21 05:43:54 +04:00
|
|
|
struct item *item;
|
|
|
|
struct panel *panel;
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_surface_t *icon;
|
|
|
|
int pressed;
|
|
|
|
const char *path;
|
|
|
|
};
|
|
|
|
|
2011-11-15 07:43:37 +04:00
|
|
|
static char *key_background_image;
|
|
|
|
static uint32_t key_panel_color;
|
|
|
|
static char *key_launcher_icon;
|
|
|
|
static char *key_launcher_path;
|
|
|
|
static void launcher_section_done(void *data);
|
|
|
|
|
|
|
|
static const struct config_key shell_config_keys[] = {
|
|
|
|
{ "background-image", CONFIG_KEY_STRING, &key_background_image },
|
|
|
|
{ "panel-color", CONFIG_KEY_INTEGER, &key_panel_color },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct config_key launcher_config_keys[] = {
|
|
|
|
{ "icon", CONFIG_KEY_STRING, &key_launcher_icon },
|
|
|
|
{ "path", CONFIG_KEY_STRING, &key_launcher_path },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct config_section config_sections[] = {
|
|
|
|
{ "wayland-desktop-shell",
|
|
|
|
shell_config_keys, ARRAY_LENGTH(shell_config_keys) },
|
|
|
|
{ "launcher",
|
|
|
|
launcher_config_keys, ARRAY_LENGTH(launcher_config_keys),
|
|
|
|
launcher_section_done }
|
|
|
|
};
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
|
|
|
sigchild_handler(int s)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
while (pid = waitpid(-1, &status, WNOHANG), pid > 0)
|
|
|
|
fprintf(stderr, "child %d exited\n", pid);
|
|
|
|
}
|
|
|
|
|
2011-10-12 08:36:16 +04:00
|
|
|
static void
|
|
|
|
show_menu(struct panel *panel, struct input *input)
|
|
|
|
{
|
|
|
|
int32_t x, y, width = 200, height = 200;
|
|
|
|
struct display *display;
|
|
|
|
|
|
|
|
input_get_position(input, &x, &y);
|
|
|
|
display = window_get_display(panel->window);
|
|
|
|
panel->menu = window_create_transient(display, panel->window,
|
|
|
|
x - 10, y - 10, width, height);
|
|
|
|
|
|
|
|
window_draw(panel->menu);
|
|
|
|
window_flush(panel->menu);
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
|
|
|
panel_activate_item(struct panel *panel, struct panel_item *item)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0) {
|
|
|
|
fprintf(stderr, "fork failed: %m\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (execl(item->path, item->path, NULL) < 0) {
|
|
|
|
fprintf(stderr, "execl failed: %m\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-09-21 05:43:54 +04:00
|
|
|
panel_draw_item(struct item *item, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2011-09-21 05:43:54 +04:00
|
|
|
cairo_t *cr = data;
|
|
|
|
struct panel_item *pi;
|
|
|
|
int x, y, width, height;
|
|
|
|
double dx, dy;
|
|
|
|
|
|
|
|
pi = item_get_user_data(item);
|
|
|
|
width = cairo_image_surface_get_width(pi->icon);
|
|
|
|
height = cairo_image_surface_get_height(pi->icon);
|
|
|
|
x = 0;
|
|
|
|
y = -height / 2;
|
|
|
|
if (pi->pressed) {
|
|
|
|
x++;
|
|
|
|
y++;
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2011-09-21 05:43:54 +04:00
|
|
|
dx = x;
|
|
|
|
dy = y;
|
|
|
|
cairo_user_to_device(cr, &dx, &dy);
|
|
|
|
item_set_allocation(item, dx, dy, width, height);
|
|
|
|
|
|
|
|
cairo_set_source_surface(cr, pi->icon, x, y);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_paint(cr);
|
|
|
|
|
2011-09-21 05:43:54 +04:00
|
|
|
if (window_get_focus_item(pi->panel->window) == item) {
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 0.4);
|
2011-09-21 05:43:54 +04:00
|
|
|
cairo_mask_surface(cr, pi->icon, x, y);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
2011-09-21 05:43:54 +04:00
|
|
|
|
|
|
|
cairo_translate(cr, width + 10, 0);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2011-11-15 07:43:37 +04:00
|
|
|
static void
|
|
|
|
set_hex_color(cairo_t *cr, uint32_t color)
|
|
|
|
{
|
|
|
|
cairo_set_source_rgba(cr,
|
|
|
|
((color >> 16) & 0xff) / 255.0,
|
|
|
|
((color >> 8) & 0xff) / 255.0,
|
|
|
|
((color >> 0) & 0xff) / 255.0,
|
|
|
|
((color >> 24) & 0xff) / 255.0);
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
|
|
|
panel_redraw_handler(struct window *window, void *data)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
window_draw(window);
|
|
|
|
surface = window_get_surface(window);
|
|
|
|
cr = cairo_create(surface);
|
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
|
2011-11-15 07:43:37 +04:00
|
|
|
set_hex_color(cr, key_panel_color);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_paint(cr);
|
|
|
|
|
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
|
2011-09-21 05:43:54 +04:00
|
|
|
cairo_translate(cr, 10, 32 / 2);
|
|
|
|
window_for_each_item(window, panel_draw_item, cr);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
window_flush(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-09-21 05:43:54 +04:00
|
|
|
panel_item_focus_handler(struct window *window,
|
|
|
|
struct item *focus, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2011-09-21 05:43:54 +04:00
|
|
|
window_schedule_redraw(window);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_button_handler(struct window *window,
|
|
|
|
struct input *input, uint32_t time,
|
|
|
|
int button, int state, void *data)
|
|
|
|
{
|
|
|
|
struct panel *panel = data;
|
2011-09-21 05:43:54 +04:00
|
|
|
struct panel_item *pi;
|
|
|
|
struct item *focus;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2011-09-21 05:43:54 +04:00
|
|
|
focus = window_get_focus_item(panel->window);
|
|
|
|
if (focus && button == BTN_LEFT) {
|
|
|
|
pi = item_get_user_data(focus);
|
2011-09-07 02:02:34 +04:00
|
|
|
window_schedule_redraw(panel->window);
|
2011-09-21 05:43:54 +04:00
|
|
|
if (state == 0)
|
|
|
|
panel_activate_item(panel, pi);
|
2011-10-12 08:36:16 +04:00
|
|
|
} else if (button == BTN_RIGHT) {
|
|
|
|
if (state)
|
|
|
|
show_menu(panel, input);
|
|
|
|
else
|
|
|
|
window_destroy(panel->menu);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct panel *
|
|
|
|
panel_create(struct display *display)
|
|
|
|
{
|
|
|
|
struct panel *panel;
|
|
|
|
|
|
|
|
panel = malloc(sizeof *panel);
|
|
|
|
memset(panel, 0, sizeof *panel);
|
|
|
|
|
|
|
|
panel->window = window_create(display, 0, 0);
|
|
|
|
|
|
|
|
window_set_title(panel->window, "panel");
|
|
|
|
window_set_decoration(panel->window, 0);
|
|
|
|
window_set_redraw_handler(panel->window, panel_redraw_handler);
|
|
|
|
window_set_custom(panel->window);
|
|
|
|
window_set_user_data(panel->window, panel);
|
|
|
|
window_set_button_handler(panel->window, panel_button_handler);
|
2011-09-21 05:43:54 +04:00
|
|
|
window_set_item_focus_handler(panel->window, panel_item_focus_handler);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
|
|
|
return panel;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_add_item(struct panel *panel, const char *icon, const char *path)
|
|
|
|
{
|
|
|
|
struct panel_item *item;
|
|
|
|
|
|
|
|
item = malloc(sizeof *item);
|
|
|
|
memset(item, 0, sizeof *item);
|
|
|
|
item->icon = cairo_image_surface_create_from_png(icon);
|
|
|
|
item->path = strdup(path);
|
2011-09-21 05:43:54 +04:00
|
|
|
item->panel = panel;
|
|
|
|
window_add_item(panel->window, item);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
background_draw(struct window *window, int width, int height, const char *path)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface, *image;
|
2011-09-09 02:18:02 +04:00
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
cairo_matrix_t matrix;
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_t *cr;
|
2011-09-09 02:18:02 +04:00
|
|
|
double sx, sy;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
|
|
|
window_set_child_size(window, width, height);
|
|
|
|
window_draw(window);
|
|
|
|
surface = window_get_surface(window);
|
|
|
|
|
|
|
|
cr = cairo_create(surface);
|
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
|
|
|
|
cairo_set_source_rgba(cr, 0.0, 0.0, 0.2, 1.0);
|
|
|
|
cairo_paint(cr);
|
|
|
|
|
|
|
|
if (path) {
|
2011-10-20 21:11:12 +04:00
|
|
|
image = load_jpeg(path);
|
2011-09-09 02:18:02 +04:00
|
|
|
pattern = cairo_pattern_create_for_surface(image);
|
|
|
|
sx = (double) cairo_image_surface_get_width(image) / width;
|
|
|
|
sy = (double) cairo_image_surface_get_height(image) / height;
|
|
|
|
cairo_matrix_init_scale(&matrix, sx, sy);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
cairo_set_source(cr, pattern);
|
|
|
|
cairo_pattern_destroy (pattern);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_paint(cr);
|
2011-10-20 21:11:12 +04:00
|
|
|
cairo_surface_destroy(image);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
window_flush(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
desktop_shell_configure(void *data,
|
|
|
|
struct desktop_shell *desktop_shell,
|
|
|
|
uint32_t time, uint32_t edges,
|
|
|
|
struct wl_surface *surface,
|
|
|
|
int32_t width, int32_t height)
|
|
|
|
{
|
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
|
|
|
if (surface == window_get_wl_surface(desktop->panel->window)) {
|
2011-09-21 05:43:54 +04:00
|
|
|
window_set_child_size(desktop->panel->window, width, 32);
|
|
|
|
window_schedule_redraw(desktop->panel->window);
|
2011-09-07 02:02:34 +04:00
|
|
|
} else if (surface == window_get_wl_surface(desktop->background)) {
|
|
|
|
background_draw(desktop->background,
|
|
|
|
width, height, desktop->background_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
desktop-shell: screen locking protocol
Add protocol and functions for supporting screen locking, triggered by
activity timeout.
After activity timeout, compositor starts the fade to black, and then
enters SLEEPING state. At that point it calls lock() in the shell
plugin.
When input events trigger a wakeup, unlock() in the shell plugin is
called. This sends prepare_lock_surface event to the desktop-shell
client. The screen stays locked while the compositor starts fade-in.
At this point, desktop-shell client usually creates a surface for the
unlocking GUI (e.g. a password prompt), and sends it with the
set_lock_surface request. The compositor supposedly shows and allows
interaction only with the given lock surface (not yet implemented).
When desktop-shell has authenticated the user, or instead of issuing
set_lock_surface, it sends the unlock request. Upon receiving the unlock
request, the shell plugin unlocks the screen.
If desktop-shell client dies, the screen is unlocked automatically.
Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
2011-11-15 15:34:48 +04:00
|
|
|
static void
|
|
|
|
desktop_shell_prepare_lock_surface(void *data,
|
|
|
|
struct desktop_shell *desktop_shell)
|
|
|
|
{
|
|
|
|
/* no-op for now */
|
|
|
|
desktop_shell_unlock(desktop_shell);
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static const struct desktop_shell_listener listener = {
|
desktop-shell: screen locking protocol
Add protocol and functions for supporting screen locking, triggered by
activity timeout.
After activity timeout, compositor starts the fade to black, and then
enters SLEEPING state. At that point it calls lock() in the shell
plugin.
When input events trigger a wakeup, unlock() in the shell plugin is
called. This sends prepare_lock_surface event to the desktop-shell
client. The screen stays locked while the compositor starts fade-in.
At this point, desktop-shell client usually creates a surface for the
unlocking GUI (e.g. a password prompt), and sends it with the
set_lock_surface request. The compositor supposedly shows and allows
interaction only with the given lock surface (not yet implemented).
When desktop-shell has authenticated the user, or instead of issuing
set_lock_surface, it sends the unlock request. Upon receiving the unlock
request, the shell plugin unlocks the screen.
If desktop-shell client dies, the screen is unlocked automatically.
Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
2011-11-15 15:34:48 +04:00
|
|
|
desktop_shell_configure,
|
|
|
|
desktop_shell_prepare_lock_surface
|
2011-09-07 02:02:34 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
global_handler(struct wl_display *display, uint32_t id,
|
|
|
|
const char *interface, uint32_t version, void *data)
|
|
|
|
{
|
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
|
|
|
if (!strcmp(interface, "desktop_shell")) {
|
|
|
|
desktop->shell =
|
|
|
|
wl_display_bind(display, id, &desktop_shell_interface);
|
|
|
|
desktop_shell_add_listener(desktop->shell, &listener, desktop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-15 07:43:37 +04:00
|
|
|
static void
|
|
|
|
launcher_section_done(void *data)
|
|
|
|
{
|
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
|
|
|
if (key_launcher_icon == NULL || key_launcher_path == NULL) {
|
|
|
|
fprintf(stderr, "invalid launcher section\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
panel_add_item(desktop->panel, key_launcher_icon, key_launcher_path);
|
|
|
|
free(key_launcher_icon);
|
|
|
|
key_launcher_icon = NULL;
|
|
|
|
free(key_launcher_path);
|
|
|
|
key_launcher_path = NULL;
|
|
|
|
}
|
2011-09-07 02:02:34 +04:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct desktop desktop;
|
2011-11-15 13:45:40 +04:00
|
|
|
char *config_file;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
|
|
|
desktop.display = display_create(&argc, &argv, NULL);
|
|
|
|
if (desktop.display == NULL) {
|
|
|
|
fprintf(stderr, "failed to create display: %m\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-11-03 16:11:32 +04:00
|
|
|
/* The fd is our private, do not confuse our children with it. */
|
|
|
|
unsetenv("WAYLAND_SOCKET");
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
wl_display_add_global_listener(display_get_display(desktop.display),
|
|
|
|
global_handler, &desktop);
|
|
|
|
|
|
|
|
desktop.panel = panel_create(desktop.display);
|
|
|
|
|
2011-11-15 13:45:40 +04:00
|
|
|
config_file = config_file_path("wayland-desktop-shell.ini");
|
|
|
|
parse_config_file(config_file,
|
2011-11-15 07:43:37 +04:00
|
|
|
config_sections, ARRAY_LENGTH(config_sections),
|
|
|
|
&desktop);
|
2011-11-15 13:45:40 +04:00
|
|
|
free(config_file);
|
2011-11-15 07:43:37 +04:00
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
desktop_shell_set_panel(desktop.shell,
|
|
|
|
window_get_wl_surface(desktop.panel->window));
|
|
|
|
|
|
|
|
desktop.background = window_create(desktop.display, 0, 0);
|
|
|
|
window_set_decoration(desktop.background, 0);
|
|
|
|
window_set_custom(desktop.background);
|
2011-11-15 07:43:37 +04:00
|
|
|
desktop.background_path = key_background_image;
|
2011-09-07 02:02:34 +04:00
|
|
|
desktop_shell_set_background(desktop.shell,
|
|
|
|
window_get_wl_surface(desktop.background));
|
|
|
|
|
|
|
|
signal(SIGCHLD, sigchild_handler);
|
|
|
|
|
|
|
|
display_run(desktop.display);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|