2011-09-07 02:02:34 +04:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Kristian Høgsberg
|
2011-11-15 15:34:56 +04:00
|
|
|
* Copyright © 2011 Collabora, Ltd.
|
2011-09-07 02:02:34 +04:00
|
|
|
*
|
2015-06-11 08:48:59 +03:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2011-09-07 02:02:34 +04:00
|
|
|
*
|
2015-06-11 08:48:59 +03:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2011-09-07 02:02:34 +04:00
|
|
|
*/
|
|
|
|
|
2014-01-15 22:59:50 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2014-01-15 22:59:50 +04:00
|
|
|
#include <errno.h>
|
2011-09-07 02:02:34 +04:00
|
|
|
#include <math.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <linux/input.h>
|
2012-05-23 23:06:28 +04:00
|
|
|
#include <libgen.h>
|
2012-07-24 06:59:33 +04:00
|
|
|
#include <ctype.h>
|
2012-06-08 02:39:11 +04:00
|
|
|
#include <time.h>
|
2016-06-23 19:55:21 +03:00
|
|
|
#include <assert.h>
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2011-11-22 16:18:50 +04:00
|
|
|
#include <wayland-client.h>
|
2022-07-12 18:58:12 +03:00
|
|
|
|
2019-04-04 14:27:31 +03:00
|
|
|
#include <libweston/config-parser.h>
|
2022-07-12 18:58:12 +03:00
|
|
|
#include <libweston/zalloc.h>
|
2015-06-16 01:37:10 +03:00
|
|
|
#include "shared/helpers.h"
|
2016-03-17 00:15:18 +03:00
|
|
|
#include "shared/xalloc.h"
|
2022-07-12 18:58:12 +03:00
|
|
|
#include "shared/cairo-util.h"
|
2018-02-07 00:18:38 +03:00
|
|
|
#include "shared/file-util.h"
|
2022-07-12 18:58:12 +03:00
|
|
|
#include "shared/process-util.h"
|
2020-12-21 12:54:51 +03:00
|
|
|
#include "shared/timespec-util.h"
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2022-07-12 18:58:12 +03:00
|
|
|
#include "window.h"
|
|
|
|
|
2017-12-19 11:33:35 +03:00
|
|
|
#include "tablet-unstable-v2-client-protocol.h"
|
2015-11-17 11:00:33 +03:00
|
|
|
#include "weston-desktop-shell-client-protocol.h"
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2016-03-10 20:02:34 +03:00
|
|
|
#define DEFAULT_CLOCK_FORMAT CLOCK_FORMAT_MINUTES
|
2019-06-27 00:00:43 +03:00
|
|
|
#define DEFAULT_SPACING 10
|
2016-03-10 20:02:34 +03:00
|
|
|
|
2016-06-23 19:55:21 +03:00
|
|
|
enum clock_format {
|
|
|
|
CLOCK_FORMAT_MINUTES,
|
|
|
|
CLOCK_FORMAT_SECONDS,
|
2020-10-30 22:09:23 +03:00
|
|
|
CLOCK_FORMAT_MINUTES_24H,
|
|
|
|
CLOCK_FORMAT_SECONDS_24H,
|
2016-06-23 19:55:21 +03:00
|
|
|
CLOCK_FORMAT_NONE
|
|
|
|
};
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
struct desktop {
|
|
|
|
struct display *display;
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *shell;
|
2011-11-15 15:34:56 +04:00
|
|
|
struct unlock_dialog *unlock_dialog;
|
|
|
|
struct task unlock_task;
|
2011-11-22 15:43:52 +04:00
|
|
|
struct wl_list outputs;
|
2012-06-05 17:58:51 +04:00
|
|
|
|
2016-06-23 19:55:18 +03:00
|
|
|
int want_panel;
|
|
|
|
enum weston_desktop_shell_panel_position panel_position;
|
2016-06-23 19:55:22 +03:00
|
|
|
enum clock_format clock_format;
|
2016-06-23 19:55:18 +03:00
|
|
|
|
2012-06-28 19:08:05 +04:00
|
|
|
struct window *grab_window;
|
|
|
|
struct widget *grab_widget;
|
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
struct weston_config *config;
|
2019-11-26 03:14:24 +03:00
|
|
|
bool locking;
|
2013-07-05 17:05:27 +04:00
|
|
|
|
2012-07-23 04:23:52 +04:00
|
|
|
enum cursor_type grab_cursor;
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
|
|
|
|
int painted;
|
2011-11-22 15:43:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct surface {
|
|
|
|
void (*configure)(void *data,
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *desktop_shell,
|
2012-04-12 06:42:15 +04:00
|
|
|
uint32_t edges, struct window *window,
|
2011-11-22 15:43:52 +04:00
|
|
|
int32_t width, int32_t height);
|
2011-09-07 02:02:34 +04:00
|
|
|
};
|
|
|
|
|
2017-12-07 13:15:01 +03:00
|
|
|
struct output;
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
struct panel {
|
2011-11-22 15:43:52 +04:00
|
|
|
struct surface base;
|
2017-12-07 13:39:15 +03:00
|
|
|
|
|
|
|
struct output *owner;
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
struct window *window;
|
2012-01-10 18:43:58 +04:00
|
|
|
struct widget *widget;
|
|
|
|
struct wl_list launcher_list;
|
2012-06-08 02:39:11 +04:00
|
|
|
struct panel_clock *clock;
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
int painted;
|
2016-06-23 19:55:24 +03:00
|
|
|
enum weston_desktop_shell_panel_position panel_position;
|
2016-06-23 19:55:21 +03:00
|
|
|
enum clock_format clock_format;
|
2013-07-05 17:05:27 +04:00
|
|
|
uint32_t color;
|
2011-09-07 02:02:34 +04:00
|
|
|
};
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
struct background {
|
|
|
|
struct surface base;
|
2017-12-07 13:15:01 +03:00
|
|
|
|
|
|
|
struct output *owner;
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
struct window *window;
|
2012-01-10 21:23:19 +04:00
|
|
|
struct widget *widget;
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
int painted;
|
2013-07-05 17:05:27 +04:00
|
|
|
|
|
|
|
char *image;
|
|
|
|
int type;
|
|
|
|
uint32_t color;
|
2011-11-22 15:43:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct output {
|
|
|
|
struct wl_output *output;
|
2013-10-23 09:58:35 +04:00
|
|
|
uint32_t server_output_id;
|
2011-11-22 15:43:52 +04:00
|
|
|
struct wl_list link;
|
|
|
|
|
2017-12-07 16:30:18 +03:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-11-22 15:43:52 +04:00
|
|
|
struct panel *panel;
|
|
|
|
struct background *background;
|
|
|
|
};
|
|
|
|
|
2012-01-09 20:16:50 +04:00
|
|
|
struct panel_launcher {
|
2012-01-09 00:09:53 +04:00
|
|
|
struct widget *widget;
|
2011-09-21 05:43:54 +04:00
|
|
|
struct panel *panel;
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_surface_t *icon;
|
2012-01-11 09:04:42 +04:00
|
|
|
int focused, pressed;
|
2012-07-24 06:59:33 +04:00
|
|
|
char *path;
|
2021-12-25 03:47:02 +03:00
|
|
|
char *displayname;
|
2012-01-10 18:43:58 +04:00
|
|
|
struct wl_list link;
|
2022-07-12 18:58:12 +03:00
|
|
|
struct custom_env env;
|
|
|
|
char * const *argp;
|
|
|
|
char * const *envp;
|
2011-09-07 02:02:34 +04:00
|
|
|
};
|
|
|
|
|
2012-06-08 02:39:11 +04:00
|
|
|
struct panel_clock {
|
|
|
|
struct widget *widget;
|
|
|
|
struct panel *panel;
|
2018-03-09 14:17:26 +03:00
|
|
|
struct toytimer timer;
|
2016-03-10 20:02:34 +03:00
|
|
|
char *format_string;
|
|
|
|
time_t refresh_timer;
|
2012-06-08 02:39:11 +04:00
|
|
|
};
|
|
|
|
|
2011-11-15 15:34:56 +04:00
|
|
|
struct unlock_dialog {
|
|
|
|
struct window *window;
|
2012-01-10 18:43:58 +04:00
|
|
|
struct widget *widget;
|
2012-01-09 00:09:53 +04:00
|
|
|
struct widget *button;
|
2012-01-11 09:04:42 +04:00
|
|
|
int button_focused;
|
2011-11-15 15:34:56 +04:00
|
|
|
int closing;
|
|
|
|
struct desktop *desktop;
|
|
|
|
};
|
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
static void
|
|
|
|
panel_add_launchers(struct panel *panel, struct desktop *desktop);
|
2011-11-15 07:43:37 +04:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
static int
|
|
|
|
is_desktop_painted(struct desktop *desktop)
|
|
|
|
{
|
|
|
|
struct output *output;
|
|
|
|
|
|
|
|
wl_list_for_each(output, &desktop->outputs, link) {
|
|
|
|
if (output->panel && !output->panel->painted)
|
|
|
|
return 0;
|
|
|
|
if (output->background && !output->background->painted)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_desktop_ready(struct window *window)
|
|
|
|
{
|
|
|
|
struct display *display;
|
|
|
|
struct desktop *desktop;
|
|
|
|
|
|
|
|
display = window_get_display(window);
|
|
|
|
desktop = display_get_user_data(display);
|
|
|
|
|
|
|
|
if (!desktop->painted && is_desktop_painted(desktop)) {
|
|
|
|
desktop->painted = 1;
|
|
|
|
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_desktop_ready(desktop->shell);
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
2012-01-09 20:16:50 +04:00
|
|
|
panel_launcher_activate(struct panel_launcher *widget)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0) {
|
2019-04-27 00:57:31 +03:00
|
|
|
fprintf(stderr, "fork failed: %s\n", strerror(errno));
|
2011-09-07 02:02:34 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid)
|
|
|
|
return;
|
2011-11-22 15:38:48 +04:00
|
|
|
|
2017-03-24 17:41:13 +03:00
|
|
|
if (setsid() == -1)
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
2022-07-12 18:58:12 +03:00
|
|
|
if (execve(widget->argp[0], widget->argp, widget->envp) < 0) {
|
|
|
|
fprintf(stderr, "execl '%s' failed: %s\n", widget->argp[0],
|
2019-04-27 00:57:31 +03:00
|
|
|
strerror(errno));
|
2011-09-07 02:02:34 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-10 21:23:19 +04:00
|
|
|
panel_launcher_redraw_handler(struct widget *widget, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2012-01-10 21:23:19 +04:00
|
|
|
struct panel_launcher *launcher = data;
|
|
|
|
struct rectangle allocation;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
cr = widget_cairo_create(launcher->panel->widget);
|
2012-01-10 21:23:19 +04:00
|
|
|
|
|
|
|
widget_get_allocation(widget, &allocation);
|
2019-06-27 00:00:43 +03:00
|
|
|
allocation.x += allocation.width / 2 -
|
|
|
|
cairo_image_surface_get_width(launcher->icon) / 2;
|
|
|
|
if (allocation.width > allocation.height)
|
|
|
|
allocation.x += allocation.width / 2 - allocation.height / 2;
|
|
|
|
allocation.y += allocation.height / 2 -
|
|
|
|
cairo_image_surface_get_height(launcher->icon) / 2;
|
|
|
|
if (allocation.height > allocation.width)
|
|
|
|
allocation.y += allocation.height / 2 - allocation.width / 2;
|
2012-01-10 18:43:58 +04:00
|
|
|
if (launcher->pressed) {
|
2012-01-10 21:23:19 +04:00
|
|
|
allocation.x++;
|
|
|
|
allocation.y++;
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
cairo_set_source_surface(cr, launcher->icon,
|
|
|
|
allocation.x, allocation.y);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_paint(cr);
|
|
|
|
|
2012-01-11 09:04:42 +04:00
|
|
|
if (launcher->focused) {
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 0.4);
|
2012-01-10 21:23:19 +04:00
|
|
|
cairo_mask_surface(cr, launcher->icon,
|
|
|
|
allocation.x, allocation.y);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
2011-09-21 05:43:54 +04:00
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
cairo_destroy(cr);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2012-05-23 23:06:28 +04:00
|
|
|
static int
|
|
|
|
panel_launcher_motion_handler(struct widget *widget, struct input *input,
|
|
|
|
uint32_t time, float x, float y, void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher = data;
|
|
|
|
|
2021-12-25 03:47:02 +03:00
|
|
|
widget_set_tooltip(widget, launcher->displayname, x, y);
|
2012-05-23 23:06:28 +04:00
|
|
|
|
2012-05-25 17:01:41 +04:00
|
|
|
return CURSOR_LEFT_PTR;
|
2012-05-23 23:06:28 +04:00
|
|
|
}
|
|
|
|
|
2011-11-15 07:43:37 +04:00
|
|
|
static void
|
|
|
|
set_hex_color(cairo_t *cr, uint32_t color)
|
|
|
|
{
|
2015-05-15 18:17:47 +03:00
|
|
|
cairo_set_source_rgba(cr,
|
2011-11-15 07:43:37 +04:00
|
|
|
((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
|
2012-01-10 21:23:19 +04:00
|
|
|
panel_redraw_handler(struct widget *widget, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
2012-01-10 21:23:19 +04:00
|
|
|
struct panel *panel = data;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
cr = widget_cairo_create(panel->widget);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
|
2013-07-05 17:05:27 +04:00
|
|
|
set_hex_color(cr, panel->color);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_paint(cr);
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
2013-05-22 16:41:32 +04:00
|
|
|
surface = window_get_surface(panel->window);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_surface_destroy(surface);
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
panel->painted = 1;
|
|
|
|
check_desktop_ready(panel->window);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2012-01-09 20:22:32 +04:00
|
|
|
static int
|
2012-01-09 20:16:50 +04:00
|
|
|
panel_launcher_enter_handler(struct widget *widget, struct input *input,
|
2012-05-10 20:21:37 +04:00
|
|
|
float x, float y, void *data)
|
2012-01-09 17:42:24 +04:00
|
|
|
{
|
2012-01-11 09:04:42 +04:00
|
|
|
struct panel_launcher *launcher = data;
|
|
|
|
|
|
|
|
launcher->focused = 1;
|
2012-01-09 17:42:24 +04:00
|
|
|
widget_schedule_redraw(widget);
|
2012-01-09 20:22:32 +04:00
|
|
|
|
2012-05-25 17:01:41 +04:00
|
|
|
return CURSOR_LEFT_PTR;
|
2012-01-09 17:42:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-09 20:16:50 +04:00
|
|
|
panel_launcher_leave_handler(struct widget *widget,
|
|
|
|
struct input *input, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2012-01-11 09:04:42 +04:00
|
|
|
struct panel_launcher *launcher = data;
|
|
|
|
|
|
|
|
launcher->focused = 0;
|
2012-05-23 23:06:28 +04:00
|
|
|
widget_destroy_tooltip(widget);
|
2012-01-09 00:18:19 +04:00
|
|
|
widget_schedule_redraw(widget);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-09 20:16:50 +04:00
|
|
|
panel_launcher_button_handler(struct widget *widget,
|
|
|
|
struct input *input, uint32_t time,
|
2012-05-30 19:31:51 +04:00
|
|
|
uint32_t button,
|
|
|
|
enum wl_pointer_button_state state, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2012-01-09 20:16:50 +04:00
|
|
|
struct panel_launcher *launcher;
|
2012-01-09 20:12:05 +04:00
|
|
|
|
2012-01-09 20:16:50 +04:00
|
|
|
launcher = widget_get_user_data(widget);
|
2012-01-09 20:12:05 +04:00
|
|
|
widget_schedule_redraw(widget);
|
2012-05-30 19:31:51 +04:00
|
|
|
if (state == WL_POINTER_BUTTON_STATE_RELEASED)
|
2012-01-09 20:16:50 +04:00
|
|
|
panel_launcher_activate(launcher);
|
2013-08-09 08:28:22 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-15 20:10:08 +04:00
|
|
|
panel_launcher_touch_down_handler(struct widget *widget, struct input *input,
|
|
|
|
uint32_t serial, uint32_t time, int32_t id,
|
2013-08-09 08:28:22 +04:00
|
|
|
float x, float y, void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
|
|
|
launcher = widget_get_user_data(widget);
|
|
|
|
launcher->focused = 1;
|
|
|
|
widget_schedule_redraw(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-15 20:10:08 +04:00
|
|
|
panel_launcher_touch_up_handler(struct widget *widget, struct input *input,
|
2015-05-15 18:17:47 +03:00
|
|
|
uint32_t serial, uint32_t time, int32_t id,
|
2013-08-15 20:10:08 +04:00
|
|
|
void *data)
|
2013-08-09 08:28:22 +04:00
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
|
|
|
launcher = widget_get_user_data(widget);
|
|
|
|
launcher->focused = 0;
|
|
|
|
widget_schedule_redraw(widget);
|
|
|
|
panel_launcher_activate(launcher);
|
2012-01-09 20:12:05 +04:00
|
|
|
}
|
|
|
|
|
2017-12-19 11:33:35 +03:00
|
|
|
static void
|
|
|
|
panel_launcher_tablet_tool_proximity_in_handler(struct widget *widget,
|
|
|
|
struct tablet_tool *tool,
|
|
|
|
struct tablet *tablet, void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
|
|
|
launcher = widget_get_user_data(widget);
|
|
|
|
launcher->focused = 1;
|
|
|
|
widget_schedule_redraw(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_launcher_tablet_tool_proximity_out_handler(struct widget *widget,
|
|
|
|
struct tablet_tool *tool, void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
|
|
|
launcher = widget_get_user_data(widget);
|
|
|
|
launcher->focused = 0;
|
|
|
|
widget_schedule_redraw(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_launcher_tablet_tool_up_handler(struct widget *widget,
|
|
|
|
struct tablet_tool *tool,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
|
|
|
launcher = widget_get_user_data(widget);
|
|
|
|
panel_launcher_activate(launcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_launcher_tablet_tool_button_handler(struct widget *widget,
|
|
|
|
struct tablet_tool *tool,
|
|
|
|
uint32_t button,
|
|
|
|
uint32_t state_w,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
enum zwp_tablet_tool_v2_button_state state = state_w;
|
|
|
|
|
|
|
|
launcher = widget_get_user_data(widget);
|
|
|
|
|
|
|
|
if (state == ZWP_TABLET_TOOL_V2_BUTTON_STATE_RELEASED)
|
|
|
|
panel_launcher_activate(launcher);
|
|
|
|
}
|
|
|
|
|
2023-10-19 12:33:19 +03:00
|
|
|
static int clock_timer_reset(struct panel_clock *clock);
|
|
|
|
|
2012-06-08 02:39:11 +04:00
|
|
|
static void
|
2018-03-09 14:17:26 +03:00
|
|
|
clock_func(struct toytimer *tt)
|
2012-06-08 02:39:11 +04:00
|
|
|
{
|
2018-03-09 14:17:26 +03:00
|
|
|
struct panel_clock *clock = container_of(tt, struct panel_clock, timer);
|
2012-06-08 02:39:11 +04:00
|
|
|
|
2012-06-11 19:10:57 +04:00
|
|
|
widget_schedule_redraw(clock->widget);
|
2023-10-19 12:33:19 +03:00
|
|
|
|
|
|
|
clock_timer_reset(clock);
|
2012-06-08 02:39:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_clock_redraw_handler(struct widget *widget, void *data)
|
|
|
|
{
|
|
|
|
struct panel_clock *clock = data;
|
|
|
|
cairo_t *cr;
|
|
|
|
struct rectangle allocation;
|
|
|
|
cairo_text_extents_t extents;
|
|
|
|
time_t rawtime;
|
|
|
|
struct tm * timeinfo;
|
2012-06-11 19:10:57 +04:00
|
|
|
char string[128];
|
2012-06-08 02:39:11 +04:00
|
|
|
|
2012-06-11 19:03:03 +04:00
|
|
|
time(&rawtime);
|
|
|
|
timeinfo = localtime(&rawtime);
|
2016-03-10 20:02:34 +03:00
|
|
|
strftime(string, sizeof string, clock->format_string, timeinfo);
|
2012-06-08 02:39:11 +04:00
|
|
|
|
|
|
|
widget_get_allocation(widget, &allocation);
|
2012-06-11 19:03:03 +04:00
|
|
|
if (allocation.width == 0)
|
|
|
|
return;
|
2012-06-08 02:39:11 +04:00
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
cr = widget_cairo_create(clock->panel->widget);
|
2012-06-08 02:39:11 +04:00
|
|
|
cairo_set_font_size(cr, 14);
|
2012-06-11 19:10:57 +04:00
|
|
|
cairo_text_extents(cr, string, &extents);
|
2019-06-27 00:00:43 +03:00
|
|
|
if (allocation.x > 0)
|
|
|
|
allocation.x +=
|
|
|
|
allocation.width - DEFAULT_SPACING * 1.5 - extents.width;
|
|
|
|
else
|
|
|
|
allocation.x +=
|
|
|
|
allocation.width / 2 - extents.width / 2;
|
|
|
|
allocation.y += allocation.height / 2 - 1 + extents.height / 2;
|
|
|
|
cairo_move_to(cr, allocation.x + 1, allocation.y + 1);
|
|
|
|
cairo_set_source_rgba(cr, 0, 0, 0, 0.85);
|
2012-06-11 19:10:57 +04:00
|
|
|
cairo_show_text(cr, string);
|
2019-06-27 00:00:43 +03:00
|
|
|
cairo_move_to(cr, allocation.x, allocation.y);
|
|
|
|
cairo_set_source_rgba(cr, 1, 1, 1, 0.85);
|
2012-06-11 19:10:57 +04:00
|
|
|
cairo_show_text(cr, string);
|
2012-06-08 02:39:11 +04:00
|
|
|
cairo_destroy(cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
clock_timer_reset(struct panel_clock *clock)
|
|
|
|
{
|
|
|
|
struct itimerspec its;
|
2020-12-21 12:54:51 +03:00
|
|
|
struct timespec ts;
|
|
|
|
struct tm *tm;
|
|
|
|
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ts);
|
|
|
|
tm = localtime(&ts.tv_sec);
|
2012-06-11 19:03:03 +04:00
|
|
|
|
2023-10-19 12:33:19 +03:00
|
|
|
its.it_interval.tv_sec = 0;
|
2012-06-08 02:39:11 +04:00
|
|
|
its.it_interval.tv_nsec = 0;
|
2020-12-21 12:54:51 +03:00
|
|
|
its.it_value.tv_sec = clock->refresh_timer - tm->tm_sec % clock->refresh_timer;
|
|
|
|
its.it_value.tv_nsec = 10000000; /* 10 ms late to ensure the clock digit has actually changed */
|
|
|
|
timespec_add_nsec(&its.it_value, &its.it_value, -ts.tv_nsec);
|
2012-06-08 02:39:11 +04:00
|
|
|
|
2020-12-21 12:54:51 +03:00
|
|
|
toytimer_arm(&clock->timer, &its);
|
2012-06-08 02:39:11 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-03 08:12:35 +04:00
|
|
|
static void
|
|
|
|
panel_destroy_clock(struct panel_clock *clock)
|
|
|
|
{
|
|
|
|
widget_destroy(clock->widget);
|
2018-03-09 14:17:26 +03:00
|
|
|
toytimer_fini(&clock->timer);
|
2012-10-03 08:12:35 +04:00
|
|
|
free(clock);
|
|
|
|
}
|
|
|
|
|
2012-06-08 02:39:11 +04:00
|
|
|
static void
|
|
|
|
panel_add_clock(struct panel *panel)
|
|
|
|
{
|
|
|
|
struct panel_clock *clock;
|
|
|
|
|
2013-08-08 05:57:05 +04:00
|
|
|
clock = xzalloc(sizeof *clock);
|
2012-06-08 02:39:11 +04:00
|
|
|
clock->panel = panel;
|
|
|
|
panel->clock = clock;
|
|
|
|
|
2016-03-10 20:02:34 +03:00
|
|
|
switch (panel->clock_format) {
|
|
|
|
case CLOCK_FORMAT_MINUTES:
|
|
|
|
clock->format_string = "%a %b %d, %I:%M %p";
|
|
|
|
clock->refresh_timer = 60;
|
|
|
|
break;
|
|
|
|
case CLOCK_FORMAT_SECONDS:
|
|
|
|
clock->format_string = "%a %b %d, %I:%M:%S %p";
|
|
|
|
clock->refresh_timer = 1;
|
|
|
|
break;
|
2020-10-30 22:09:23 +03:00
|
|
|
case CLOCK_FORMAT_MINUTES_24H:
|
|
|
|
clock->format_string = "%a %b %d, %H:%M";
|
|
|
|
clock->refresh_timer = 60;
|
|
|
|
break;
|
|
|
|
case CLOCK_FORMAT_SECONDS_24H:
|
|
|
|
clock->format_string = "%a %b %d, %H:%M:%S";
|
|
|
|
clock->refresh_timer = 1;
|
|
|
|
break;
|
2016-06-23 19:55:21 +03:00
|
|
|
case CLOCK_FORMAT_NONE:
|
|
|
|
assert(!"not reached");
|
2016-03-10 20:02:34 +03:00
|
|
|
}
|
|
|
|
|
2018-03-09 14:17:26 +03:00
|
|
|
toytimer_init(&clock->timer, CLOCK_MONOTONIC,
|
|
|
|
window_get_display(panel->window), clock_func);
|
2012-06-08 02:39:11 +04:00
|
|
|
clock_timer_reset(clock);
|
|
|
|
|
|
|
|
clock->widget = widget_add_widget(panel->widget, clock);
|
2012-06-11 19:03:03 +04:00
|
|
|
widget_set_redraw_handler(clock->widget, panel_clock_redraw_handler);
|
2012-06-08 02:39:11 +04:00
|
|
|
}
|
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
static void
|
|
|
|
panel_resize_handler(struct widget *widget,
|
|
|
|
int32_t width, int32_t height, void *data)
|
|
|
|
{
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
struct panel *panel = data;
|
2019-06-27 00:00:43 +03:00
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
int w = height > width ? width : height;
|
|
|
|
int h = w;
|
2016-06-23 19:55:24 +03:00
|
|
|
int horizontal = panel->panel_position == WESTON_DESKTOP_SHELL_PANEL_POSITION_TOP || panel->panel_position == WESTON_DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
2019-06-27 00:00:43 +03:00
|
|
|
int first_pad_h = horizontal ? 0 : DEFAULT_SPACING / 2;
|
|
|
|
int first_pad_w = horizontal ? DEFAULT_SPACING / 2 : 0;
|
2015-05-15 18:17:47 +03:00
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
wl_list_for_each(launcher, &panel->launcher_list, link) {
|
2019-06-27 00:00:43 +03:00
|
|
|
widget_set_allocation(launcher->widget, x, y,
|
|
|
|
w + first_pad_w + 1, h + first_pad_h + 1);
|
2016-06-23 19:55:24 +03:00
|
|
|
if (horizontal)
|
2019-06-27 00:00:43 +03:00
|
|
|
x += w + first_pad_w;
|
2016-06-23 19:55:24 +03:00
|
|
|
else
|
2019-06-27 00:00:43 +03:00
|
|
|
y += h + first_pad_h;
|
|
|
|
first_pad_h = first_pad_w = 0;
|
2012-01-10 21:23:19 +04:00
|
|
|
}
|
2016-03-10 20:02:34 +03:00
|
|
|
|
|
|
|
if (panel->clock_format == CLOCK_FORMAT_SECONDS)
|
|
|
|
w = 170;
|
2020-10-30 22:09:23 +03:00
|
|
|
else /* CLOCK_FORMAT_MINUTES and 24H versions */
|
2019-06-27 00:00:43 +03:00
|
|
|
w = 150;
|
2012-06-12 18:42:26 +04:00
|
|
|
|
2019-06-27 00:00:43 +03:00
|
|
|
if (horizontal)
|
|
|
|
x = width - w;
|
|
|
|
else
|
|
|
|
y = height - (h = DEFAULT_SPACING * 3);
|
2016-06-23 19:55:23 +03:00
|
|
|
|
2012-06-12 18:42:26 +04:00
|
|
|
if (panel->clock)
|
|
|
|
widget_set_allocation(panel->clock->widget,
|
2016-06-23 19:55:23 +03:00
|
|
|
x, y, w + 1, h + 1);
|
2012-01-10 21:23:19 +04:00
|
|
|
}
|
|
|
|
|
2017-12-07 13:39:15 +03:00
|
|
|
static void
|
|
|
|
panel_destroy(struct panel *panel);
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
static void
|
|
|
|
panel_configure(void *data,
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *desktop_shell,
|
2012-04-12 06:42:15 +04:00
|
|
|
uint32_t edges, struct window *window,
|
2011-11-22 15:43:52 +04:00
|
|
|
int32_t width, int32_t height)
|
|
|
|
{
|
2016-06-23 19:55:24 +03:00
|
|
|
struct desktop *desktop = data;
|
2012-01-10 21:23:19 +04:00
|
|
|
struct surface *surface = window_get_user_data(window);
|
|
|
|
struct panel *panel = container_of(surface, struct panel, base);
|
2017-12-07 13:39:15 +03:00
|
|
|
struct output *owner;
|
|
|
|
|
|
|
|
if (width < 1 || height < 1) {
|
|
|
|
/* Shell plugin configures 0x0 for redundant panel. */
|
|
|
|
owner = panel->owner;
|
|
|
|
panel_destroy(panel);
|
|
|
|
owner->panel = NULL;
|
|
|
|
return;
|
|
|
|
}
|
2012-01-10 21:23:19 +04:00
|
|
|
|
2016-06-23 19:55:24 +03:00
|
|
|
switch (desktop->panel_position) {
|
|
|
|
case WESTON_DESKTOP_SHELL_PANEL_POSITION_TOP:
|
|
|
|
case WESTON_DESKTOP_SHELL_PANEL_POSITION_BOTTOM:
|
2016-06-23 19:55:23 +03:00
|
|
|
height = 32;
|
2016-06-23 19:55:24 +03:00
|
|
|
break;
|
|
|
|
case WESTON_DESKTOP_SHELL_PANEL_POSITION_LEFT:
|
|
|
|
case WESTON_DESKTOP_SHELL_PANEL_POSITION_RIGHT:
|
|
|
|
switch (desktop->clock_format) {
|
|
|
|
case CLOCK_FORMAT_NONE:
|
|
|
|
width = 32;
|
|
|
|
break;
|
|
|
|
case CLOCK_FORMAT_MINUTES:
|
2020-10-30 22:09:23 +03:00
|
|
|
case CLOCK_FORMAT_MINUTES_24H:
|
|
|
|
case CLOCK_FORMAT_SECONDS_24H:
|
2019-06-27 00:00:43 +03:00
|
|
|
width = 150;
|
2016-06-23 19:55:24 +03:00
|
|
|
break;
|
|
|
|
case CLOCK_FORMAT_SECONDS:
|
2019-06-27 00:00:43 +03:00
|
|
|
width = 170;
|
2016-06-23 19:55:24 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-06-23 19:55:23 +03:00
|
|
|
window_schedule_resize(panel->window, width, height);
|
2011-11-22 15:43:52 +04:00
|
|
|
}
|
|
|
|
|
2012-10-03 08:12:35 +04:00
|
|
|
static void
|
|
|
|
panel_destroy_launcher(struct panel_launcher *launcher)
|
|
|
|
{
|
2022-07-12 18:58:12 +03:00
|
|
|
custom_env_fini(&launcher->env);
|
2012-10-03 08:12:35 +04:00
|
|
|
|
|
|
|
free(launcher->path);
|
2021-12-25 03:47:02 +03:00
|
|
|
free(launcher->displayname);
|
2012-10-03 08:12:35 +04:00
|
|
|
|
|
|
|
cairo_surface_destroy(launcher->icon);
|
|
|
|
|
|
|
|
widget_destroy(launcher->widget);
|
|
|
|
wl_list_remove(&launcher->link);
|
|
|
|
|
|
|
|
free(launcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
panel_destroy(struct panel *panel)
|
|
|
|
{
|
|
|
|
struct panel_launcher *tmp;
|
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
2016-03-10 20:02:34 +03:00
|
|
|
if (panel->clock)
|
|
|
|
panel_destroy_clock(panel->clock);
|
2012-10-03 08:12:35 +04:00
|
|
|
|
|
|
|
wl_list_for_each_safe(launcher, tmp, &panel->launcher_list, link)
|
|
|
|
panel_destroy_launcher(launcher);
|
|
|
|
|
|
|
|
widget_destroy(panel->widget);
|
|
|
|
window_destroy(panel->window);
|
|
|
|
|
|
|
|
free(panel);
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static struct panel *
|
2017-12-07 13:39:15 +03:00
|
|
|
panel_create(struct desktop *desktop, struct output *output)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
|
|
|
struct panel *panel;
|
2013-07-05 17:05:27 +04:00
|
|
|
struct weston_config_section *s;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2013-08-08 05:57:05 +04:00
|
|
|
panel = xzalloc(sizeof *panel);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2017-12-07 13:39:15 +03:00
|
|
|
panel->owner = output;
|
2011-11-22 15:43:52 +04:00
|
|
|
panel->base.configure = panel_configure;
|
2013-07-05 17:05:27 +04:00
|
|
|
panel->window = window_create_custom(desktop->display);
|
2012-01-10 18:43:58 +04:00
|
|
|
panel->widget = window_add_widget(panel->window, panel);
|
2012-01-10 21:23:19 +04:00
|
|
|
wl_list_init(&panel->launcher_list);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
|
|
|
window_set_title(panel->window, "panel");
|
|
|
|
window_set_user_data(panel->window, panel);
|
2012-01-09 20:12:05 +04:00
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
widget_set_redraw_handler(panel->widget, panel_redraw_handler);
|
|
|
|
widget_set_resize_handler(panel->widget, panel_resize_handler);
|
2015-05-15 18:17:47 +03:00
|
|
|
|
2016-06-23 19:55:24 +03:00
|
|
|
panel->panel_position = desktop->panel_position;
|
2016-06-23 19:55:22 +03:00
|
|
|
panel->clock_format = desktop->clock_format;
|
2016-03-10 20:02:34 +03:00
|
|
|
if (panel->clock_format != CLOCK_FORMAT_NONE)
|
|
|
|
panel_add_clock(panel);
|
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
s = weston_config_get_section(desktop->config, "shell", NULL, NULL);
|
config-parser: Add weston_config_section_get_color
Previously weston_config_section_get_uint was serving dual purpose for
parsing both unsigned decimal integer values (ids, counts, seconds,
etc.) and hexadecimal values (colors), by relying on strtoul's
auto-detection mechanism.
However, this usage is unable to catch certain kinds of error
conditions, such as specifying a negative number where an unsigned
should be used. And for colors in particular, it would misparse hex
values if the leading 0x was omitted. E.g. "background-color=99999999"
would render a near-black background (effectively 0x05f5e0ff) instead of
medium grey, and "background-color=ffffffff" would be treated as an
error rather than white. "background-color=0x01234567",
"background-color=01234567", and "background-color=1234567" each
resulted in the value being parsed as hexadecimal, octal, and decimal
respectively, resulting in colors 0x01234567, 0x00053977, and 0x0012d687
being displayed.
This new routine forces hexadecimal to be used in all cases when parsing
color values, so "0x01234567" and "01234567" result in the same color
value, "99999999" is grey, and "ffffffff" is white. It also requires
exactly 8 or 10 digits (other lengths likely indicate typos), or the
value "0" (black).
Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2016-07-15 04:28:03 +03:00
|
|
|
weston_config_section_get_color(s, "panel-color",
|
|
|
|
&panel->color, 0xaa000000);
|
2013-07-05 17:05:27 +04:00
|
|
|
|
|
|
|
panel_add_launchers(panel, desktop);
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
return panel;
|
|
|
|
}
|
|
|
|
|
2012-08-29 12:53:36 +04:00
|
|
|
static cairo_surface_t *
|
|
|
|
load_icon_or_fallback(const char *icon)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface = cairo_image_surface_create_from_png(icon);
|
2013-04-15 22:10:40 +04:00
|
|
|
cairo_status_t status;
|
2012-08-29 12:53:36 +04:00
|
|
|
cairo_t *cr;
|
|
|
|
|
2013-04-15 22:10:40 +04:00
|
|
|
status = cairo_surface_status(surface);
|
|
|
|
if (status == CAIRO_STATUS_SUCCESS)
|
2012-08-29 12:53:36 +04:00
|
|
|
return surface;
|
|
|
|
|
|
|
|
cairo_surface_destroy(surface);
|
2013-04-15 22:10:40 +04:00
|
|
|
fprintf(stderr, "ERROR loading icon from file '%s', error: '%s'\n",
|
|
|
|
icon, cairo_status_to_string(status));
|
2012-08-29 12:53:36 +04:00
|
|
|
|
|
|
|
/* draw fallback icon */
|
|
|
|
surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32,
|
|
|
|
20, 20);
|
|
|
|
cr = cairo_create(surface);
|
|
|
|
|
|
|
|
cairo_set_source_rgba(cr, 0.8, 0.8, 0.8, 1);
|
|
|
|
cairo_paint(cr);
|
|
|
|
|
|
|
|
cairo_set_source_rgba(cr, 0, 0, 0, 1);
|
|
|
|
cairo_set_line_cap(cr, CAIRO_LINE_CAP_ROUND);
|
|
|
|
cairo_rectangle(cr, 0, 0, 20, 20);
|
|
|
|
cairo_move_to(cr, 4, 4);
|
|
|
|
cairo_line_to(cr, 16, 16);
|
|
|
|
cairo_move_to(cr, 4, 16);
|
|
|
|
cairo_line_to(cr, 16, 4);
|
|
|
|
cairo_stroke(cr);
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
2021-12-25 03:47:02 +03:00
|
|
|
panel_add_launcher(struct panel *panel, const char *icon, const char *path, const char *displayname)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2012-01-09 20:16:50 +04:00
|
|
|
struct panel_launcher *launcher;
|
|
|
|
|
2013-08-08 05:57:05 +04:00
|
|
|
launcher = xzalloc(sizeof *launcher);
|
2012-08-29 12:53:36 +04:00
|
|
|
launcher->icon = load_icon_or_fallback(icon);
|
2014-01-15 22:59:50 +04:00
|
|
|
launcher->path = xstrdup(path);
|
2021-12-25 03:47:02 +03:00
|
|
|
launcher->displayname = xstrdup(displayname);
|
2012-07-24 06:59:33 +04:00
|
|
|
|
2022-07-12 18:58:12 +03:00
|
|
|
custom_env_init_from_environ(&launcher->env);
|
|
|
|
custom_env_add_from_exec_string(&launcher->env, launcher->path);
|
|
|
|
launcher->envp = custom_env_get_envp(&launcher->env);
|
|
|
|
launcher->argp = custom_env_get_argp(&launcher->env);
|
2012-07-24 06:59:33 +04:00
|
|
|
|
2012-01-09 20:16:50 +04:00
|
|
|
launcher->panel = panel;
|
2012-01-10 18:43:58 +04:00
|
|
|
wl_list_insert(panel->launcher_list.prev, &launcher->link);
|
|
|
|
|
2012-01-10 22:52:34 +04:00
|
|
|
launcher->widget = widget_add_widget(panel->widget, launcher);
|
2012-01-09 20:16:50 +04:00
|
|
|
widget_set_enter_handler(launcher->widget,
|
|
|
|
panel_launcher_enter_handler);
|
|
|
|
widget_set_leave_handler(launcher->widget,
|
|
|
|
panel_launcher_leave_handler);
|
|
|
|
widget_set_button_handler(launcher->widget,
|
|
|
|
panel_launcher_button_handler);
|
2013-08-09 08:28:22 +04:00
|
|
|
widget_set_touch_down_handler(launcher->widget,
|
|
|
|
panel_launcher_touch_down_handler);
|
|
|
|
widget_set_touch_up_handler(launcher->widget,
|
|
|
|
panel_launcher_touch_up_handler);
|
2017-12-19 11:33:35 +03:00
|
|
|
widget_set_tablet_tool_up_handler(launcher->widget,
|
|
|
|
panel_launcher_tablet_tool_up_handler);
|
|
|
|
widget_set_tablet_tool_proximity_handlers(launcher->widget,
|
|
|
|
panel_launcher_tablet_tool_proximity_in_handler,
|
|
|
|
panel_launcher_tablet_tool_proximity_out_handler);
|
|
|
|
widget_set_tablet_tool_button_handler(launcher->widget,
|
|
|
|
panel_launcher_tablet_tool_button_handler);
|
2012-01-10 21:23:19 +04:00
|
|
|
widget_set_redraw_handler(launcher->widget,
|
|
|
|
panel_launcher_redraw_handler);
|
2012-05-23 23:06:28 +04:00
|
|
|
widget_set_motion_handler(launcher->widget,
|
|
|
|
panel_launcher_motion_handler);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2012-01-26 01:34:36 +04:00
|
|
|
enum {
|
|
|
|
BACKGROUND_SCALE,
|
2013-05-22 19:03:10 +04:00
|
|
|
BACKGROUND_SCALE_CROP,
|
2018-08-23 00:56:07 +03:00
|
|
|
BACKGROUND_TILE,
|
|
|
|
BACKGROUND_CENTERED
|
2012-01-26 01:34:36 +04:00
|
|
|
};
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
2012-01-10 21:23:19 +04:00
|
|
|
background_draw(struct widget *widget, void *data)
|
2011-09-07 02:02:34 +04:00
|
|
|
{
|
2012-01-10 21:23:19 +04:00
|
|
|
struct background *background = data;
|
2011-09-07 02:02:34 +04:00
|
|
|
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;
|
2013-05-22 19:03:10 +04:00
|
|
|
double im_w, im_h;
|
|
|
|
double sx, sy, s;
|
|
|
|
double tx, ty;
|
2012-01-10 21:23:19 +04:00
|
|
|
struct rectangle allocation;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
surface = window_get_surface(background->window);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
cr = widget_cairo_create(background->widget);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
|
2018-08-23 00:33:10 +03:00
|
|
|
if (background->color == 0)
|
|
|
|
cairo_set_source_rgba(cr, 0.0, 0.0, 0.2, 1.0);
|
|
|
|
else
|
|
|
|
set_hex_color(cr, background->color);
|
2011-09-07 02:02:34 +04:00
|
|
|
cairo_paint(cr);
|
|
|
|
|
2012-01-10 21:23:19 +04:00
|
|
|
widget_get_allocation(widget, &allocation);
|
2012-01-25 23:55:33 +04:00
|
|
|
image = NULL;
|
2013-07-05 17:05:27 +04:00
|
|
|
if (background->image)
|
|
|
|
image = load_cairo_surface(background->image);
|
2018-02-07 00:18:38 +03:00
|
|
|
else if (background->color == 0) {
|
|
|
|
char *name = file_name_with_datadir("pattern.png");
|
|
|
|
|
|
|
|
image = load_cairo_surface(name);
|
|
|
|
free(name);
|
|
|
|
}
|
2012-01-26 01:34:36 +04:00
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
if (image && background->type != -1) {
|
2013-05-22 19:03:10 +04:00
|
|
|
im_w = cairo_image_surface_get_width(image);
|
|
|
|
im_h = cairo_image_surface_get_height(image);
|
|
|
|
sx = im_w / allocation.width;
|
|
|
|
sy = im_h / allocation.height;
|
|
|
|
|
2011-09-09 02:18:02 +04:00
|
|
|
pattern = cairo_pattern_create_for_surface(image);
|
2013-05-22 19:03:10 +04:00
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
switch (background->type) {
|
2012-01-26 01:34:36 +04:00
|
|
|
case BACKGROUND_SCALE:
|
|
|
|
cairo_matrix_init_scale(&matrix, sx, sy);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
2014-05-09 07:00:35 +04:00
|
|
|
cairo_pattern_set_extend(pattern, CAIRO_EXTEND_PAD);
|
2012-01-26 01:34:36 +04:00
|
|
|
break;
|
2013-05-22 19:03:10 +04:00
|
|
|
case BACKGROUND_SCALE_CROP:
|
|
|
|
s = (sx < sy) ? sx : sy;
|
|
|
|
/* align center */
|
|
|
|
tx = (im_w - s * allocation.width) * 0.5;
|
|
|
|
ty = (im_h - s * allocation.height) * 0.5;
|
|
|
|
cairo_matrix_init_translate(&matrix, tx, ty);
|
|
|
|
cairo_matrix_scale(&matrix, s, s);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
2014-05-09 07:00:35 +04:00
|
|
|
cairo_pattern_set_extend(pattern, CAIRO_EXTEND_PAD);
|
2013-05-22 19:03:10 +04:00
|
|
|
break;
|
2012-01-26 01:34:36 +04:00
|
|
|
case BACKGROUND_TILE:
|
|
|
|
cairo_pattern_set_extend(pattern, CAIRO_EXTEND_REPEAT);
|
|
|
|
break;
|
2018-08-23 00:56:07 +03:00
|
|
|
case BACKGROUND_CENTERED:
|
|
|
|
s = (sx < sy) ? sx : sy;
|
|
|
|
if (s < 1.0)
|
|
|
|
s = 1.0;
|
|
|
|
|
|
|
|
/* align center */
|
|
|
|
tx = (im_w - s * allocation.width) * 0.5;
|
|
|
|
ty = (im_h - s * allocation.height) * 0.5;
|
|
|
|
|
|
|
|
cairo_matrix_init_translate(&matrix, tx, ty);
|
|
|
|
cairo_matrix_scale(&matrix, s, s);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
break;
|
2012-01-26 01:34:36 +04:00
|
|
|
}
|
2013-05-22 19:03:10 +04:00
|
|
|
|
2011-09-09 02:18:02 +04:00
|
|
|
cairo_set_source(cr, pattern);
|
|
|
|
cairo_pattern_destroy (pattern);
|
2011-10-20 21:11:12 +04:00
|
|
|
cairo_surface_destroy(image);
|
2018-08-23 00:56:07 +03:00
|
|
|
cairo_mask(cr, pattern);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
2012-10-24 10:43:08 +04:00
|
|
|
|
shell: wait for desktop-shell init before fade in
On Raspberry Pi, weston-desktop-shell is so slow to start, that the
compositor has time to run the fade-in before the wallpaper is up. The
user launching Weston sees the screen flipping to black, the fbcon
fading in, and then the desktop popping up.
To fix this, wait for the weston-desktop-shell to draw
everything before starting the initial fade-in. A new request is
added to the private desktop-shell protocol to signal it. If a
desktop-shell client does not support the new request, the fade-in
happens already at bind time.
If weston-desktop-shell crashes, or does not send the 'desktop_ready'
request in 15 seconds, the compositor will fade in anyway. This should
avoid a blocked screen in case weston-desktop-shell malfunction.
shell_fade_startup() does not directly start the fade-in but schedules
an idle callback, so that the compositor can process all pending events
before starting the fade clock. Otherwise (on RPi) we risk skipping part
of the animation. Yes, it is a hack, that should have been done in
window.c and weston-desktop-shell instead.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
2013-05-22 19:03:09 +04:00
|
|
|
background->painted = 1;
|
|
|
|
check_desktop_ready(background->window);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
2017-12-07 13:15:01 +03:00
|
|
|
static void
|
|
|
|
background_destroy(struct background *background);
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
static void
|
|
|
|
background_configure(void *data,
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *desktop_shell,
|
2012-04-12 06:42:15 +04:00
|
|
|
uint32_t edges, struct window *window,
|
2011-11-22 15:43:52 +04:00
|
|
|
int32_t width, int32_t height)
|
|
|
|
{
|
2017-12-07 13:15:01 +03:00
|
|
|
struct output *owner;
|
2012-01-10 21:23:19 +04:00
|
|
|
struct background *background =
|
|
|
|
(struct background *) window_get_user_data(window);
|
2011-11-22 15:43:52 +04:00
|
|
|
|
2017-12-07 13:15:01 +03:00
|
|
|
if (width < 1 || height < 1) {
|
|
|
|
/* Shell plugin configures 0x0 for redundant background. */
|
|
|
|
owner = background->owner;
|
|
|
|
background_destroy(background);
|
|
|
|
owner->background = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-16 09:05:45 +03:00
|
|
|
if (!background->image && background->color) {
|
2018-12-11 11:29:07 +03:00
|
|
|
widget_set_viewport_destination(background->widget, width, height);
|
|
|
|
width = 1;
|
|
|
|
height = 1;
|
|
|
|
}
|
|
|
|
|
2014-01-02 04:32:09 +04:00
|
|
|
widget_schedule_resize(background->widget, width, height);
|
2011-11-22 15:43:52 +04:00
|
|
|
}
|
|
|
|
|
2011-11-15 15:34:56 +04:00
|
|
|
static void
|
2012-01-10 21:23:19 +04:00
|
|
|
unlock_dialog_redraw_handler(struct widget *widget, void *data)
|
2011-11-15 15:34:56 +04:00
|
|
|
{
|
2012-01-10 21:23:19 +04:00
|
|
|
struct unlock_dialog *dialog = data;
|
2011-11-15 15:34:56 +04:00
|
|
|
struct rectangle allocation;
|
|
|
|
cairo_surface_t *surface;
|
2013-05-22 16:41:32 +04:00
|
|
|
cairo_t *cr;
|
2011-11-15 15:34:56 +04:00
|
|
|
cairo_pattern_t *pat;
|
|
|
|
double cx, cy, r, f;
|
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
cr = widget_cairo_create(widget);
|
2012-03-06 05:37:51 +04:00
|
|
|
|
2012-01-11 04:11:42 +04:00
|
|
|
widget_get_allocation(dialog->widget, &allocation);
|
2011-11-15 15:34:56 +04:00
|
|
|
cairo_rectangle(cr, allocation.x, allocation.y,
|
|
|
|
allocation.width, allocation.height);
|
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
|
|
|
|
cairo_set_source_rgba(cr, 0, 0, 0, 0.6);
|
2012-03-06 05:37:51 +04:00
|
|
|
cairo_fill(cr);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
2012-03-06 05:37:51 +04:00
|
|
|
cairo_translate(cr, allocation.x, allocation.y);
|
2012-01-11 09:04:42 +04:00
|
|
|
if (dialog->button_focused)
|
2011-11-15 15:34:56 +04:00
|
|
|
f = 1.0;
|
|
|
|
else
|
|
|
|
f = 0.7;
|
|
|
|
|
|
|
|
cx = allocation.width / 2.0;
|
|
|
|
cy = allocation.height / 2.0;
|
|
|
|
r = (cx < cy ? cx : cy) * 0.4;
|
|
|
|
pat = cairo_pattern_create_radial(cx, cy, r * 0.7, cx, cy, r);
|
|
|
|
cairo_pattern_add_color_stop_rgb(pat, 0.0, 0, 0.86 * f, 0);
|
|
|
|
cairo_pattern_add_color_stop_rgb(pat, 0.85, 0.2 * f, f, 0.2 * f);
|
|
|
|
cairo_pattern_add_color_stop_rgb(pat, 1.0, 0, 0.86 * f, 0);
|
|
|
|
cairo_set_source(cr, pat);
|
2012-03-06 05:37:51 +04:00
|
|
|
cairo_pattern_destroy(pat);
|
2011-11-15 15:34:56 +04:00
|
|
|
cairo_arc(cr, cx, cy, r, 0.0, 2.0 * M_PI);
|
|
|
|
cairo_fill(cr);
|
|
|
|
|
2012-01-09 00:09:53 +04:00
|
|
|
widget_set_allocation(dialog->button,
|
2012-03-06 05:37:51 +04:00
|
|
|
allocation.x + cx - r,
|
|
|
|
allocation.y + cy - r, 2 * r, 2 * r);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
|
|
|
cairo_destroy(cr);
|
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
surface = window_get_surface(dialog->window);
|
2011-11-15 15:34:56 +04:00
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-09 20:12:05 +04:00
|
|
|
unlock_dialog_button_handler(struct widget *widget,
|
2011-11-15 15:34:56 +04:00
|
|
|
struct input *input, uint32_t time,
|
2012-05-30 19:31:51 +04:00
|
|
|
uint32_t button,
|
|
|
|
enum wl_pointer_button_state state, void *data)
|
2011-11-15 15:34:56 +04:00
|
|
|
{
|
|
|
|
struct unlock_dialog *dialog = data;
|
|
|
|
struct desktop *desktop = dialog->desktop;
|
|
|
|
|
2012-01-09 20:12:05 +04:00
|
|
|
if (button == BTN_LEFT) {
|
2012-05-30 19:31:51 +04:00
|
|
|
if (state == WL_POINTER_BUTTON_STATE_RELEASED &&
|
|
|
|
!dialog->closing) {
|
2011-11-15 15:34:56 +04:00
|
|
|
display_defer(desktop->display, &desktop->unlock_task);
|
|
|
|
dialog->closing = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 02:58:22 +04:00
|
|
|
static void
|
|
|
|
unlock_dialog_touch_down_handler(struct widget *widget, struct input *input,
|
|
|
|
uint32_t serial, uint32_t time, int32_t id,
|
|
|
|
float x, float y, void *data)
|
|
|
|
{
|
|
|
|
struct unlock_dialog *dialog = data;
|
|
|
|
|
|
|
|
dialog->button_focused = 1;
|
|
|
|
widget_schedule_redraw(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlock_dialog_touch_up_handler(struct widget *widget, struct input *input,
|
|
|
|
uint32_t serial, uint32_t time, int32_t id,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct unlock_dialog *dialog = data;
|
|
|
|
struct desktop *desktop = dialog->desktop;
|
|
|
|
|
|
|
|
dialog->button_focused = 0;
|
|
|
|
widget_schedule_redraw(widget);
|
|
|
|
display_defer(desktop->display, &desktop->unlock_task);
|
|
|
|
dialog->closing = 1;
|
|
|
|
}
|
|
|
|
|
2011-11-15 15:34:56 +04:00
|
|
|
static void
|
|
|
|
unlock_dialog_keyboard_focus_handler(struct window *window,
|
|
|
|
struct input *device, void *data)
|
|
|
|
{
|
|
|
|
window_schedule_redraw(window);
|
|
|
|
}
|
|
|
|
|
2012-01-09 20:22:32 +04:00
|
|
|
static int
|
2012-01-09 17:42:24 +04:00
|
|
|
unlock_dialog_widget_enter_handler(struct widget *widget,
|
2012-04-12 06:42:15 +04:00
|
|
|
struct input *input,
|
2012-05-10 20:21:37 +04:00
|
|
|
float x, float y, void *data)
|
2012-01-09 17:42:24 +04:00
|
|
|
{
|
2012-01-11 09:04:42 +04:00
|
|
|
struct unlock_dialog *dialog = data;
|
|
|
|
|
|
|
|
dialog->button_focused = 1;
|
2012-01-09 17:42:24 +04:00
|
|
|
widget_schedule_redraw(widget);
|
2012-01-09 20:22:32 +04:00
|
|
|
|
2012-05-25 17:01:41 +04:00
|
|
|
return CURSOR_LEFT_PTR;
|
2012-01-09 17:42:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlock_dialog_widget_leave_handler(struct widget *widget,
|
|
|
|
struct input *input, void *data)
|
2011-11-15 15:34:56 +04:00
|
|
|
{
|
2012-01-11 09:04:42 +04:00
|
|
|
struct unlock_dialog *dialog = data;
|
|
|
|
|
|
|
|
dialog->button_focused = 0;
|
2012-01-09 00:18:19 +04:00
|
|
|
widget_schedule_redraw(widget);
|
2011-11-15 15:34:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct unlock_dialog *
|
2011-11-16 01:39:55 +04:00
|
|
|
unlock_dialog_create(struct desktop *desktop)
|
2011-11-15 15:34:56 +04:00
|
|
|
{
|
2011-11-16 01:39:55 +04:00
|
|
|
struct display *display = desktop->display;
|
2011-11-15 15:34:56 +04:00
|
|
|
struct unlock_dialog *dialog;
|
2015-11-17 11:00:33 +03:00
|
|
|
struct wl_surface *surface;
|
2011-11-15 15:34:56 +04:00
|
|
|
|
2013-08-08 05:57:05 +04:00
|
|
|
dialog = xzalloc(sizeof *dialog);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
2012-06-27 05:44:35 +04:00
|
|
|
dialog->window = window_create_custom(display);
|
2013-10-14 04:08:38 +04:00
|
|
|
dialog->widget = window_frame_create(dialog->window, dialog);
|
2011-11-15 15:34:56 +04:00
|
|
|
window_set_title(dialog->window, "Unlock your desktop");
|
|
|
|
|
|
|
|
window_set_user_data(dialog->window, dialog);
|
|
|
|
window_set_keyboard_focus_handler(dialog->window,
|
|
|
|
unlock_dialog_keyboard_focus_handler);
|
2012-01-10 22:52:34 +04:00
|
|
|
dialog->button = widget_add_widget(dialog->widget, dialog);
|
2012-01-10 21:23:19 +04:00
|
|
|
widget_set_redraw_handler(dialog->widget,
|
|
|
|
unlock_dialog_redraw_handler);
|
2012-01-09 17:42:24 +04:00
|
|
|
widget_set_enter_handler(dialog->button,
|
|
|
|
unlock_dialog_widget_enter_handler);
|
|
|
|
widget_set_leave_handler(dialog->button,
|
|
|
|
unlock_dialog_widget_leave_handler);
|
2012-01-09 20:12:05 +04:00
|
|
|
widget_set_button_handler(dialog->button,
|
|
|
|
unlock_dialog_button_handler);
|
2013-08-27 02:58:22 +04:00
|
|
|
widget_set_touch_down_handler(dialog->button,
|
|
|
|
unlock_dialog_touch_down_handler);
|
|
|
|
widget_set_touch_up_handler(dialog->button,
|
|
|
|
unlock_dialog_touch_up_handler);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
2015-11-17 11:00:33 +03:00
|
|
|
surface = window_get_wl_surface(dialog->window);
|
|
|
|
weston_desktop_shell_set_lock_surface(desktop->shell, surface);
|
2011-11-16 01:39:55 +04:00
|
|
|
|
2012-01-18 18:51:30 +04:00
|
|
|
window_schedule_resize(dialog->window, 260, 230);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
|
|
|
return dialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlock_dialog_destroy(struct unlock_dialog *dialog)
|
|
|
|
{
|
|
|
|
window_destroy(dialog->window);
|
|
|
|
free(dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlock_dialog_finish(struct task *task, uint32_t events)
|
|
|
|
{
|
|
|
|
struct desktop *desktop =
|
2011-11-22 15:38:48 +04:00
|
|
|
container_of(task, struct desktop, unlock_task);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_unlock(desktop->shell);
|
2011-11-15 15:34:56 +04:00
|
|
|
unlock_dialog_destroy(desktop->unlock_dialog);
|
|
|
|
desktop->unlock_dialog = NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
|
|
|
desktop_shell_configure(void *data,
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *desktop_shell,
|
2012-04-12 06:42:15 +04:00
|
|
|
uint32_t edges,
|
2012-06-27 00:29:50 +04:00
|
|
|
struct wl_surface *surface,
|
2011-09-07 02:02:34 +04:00
|
|
|
int32_t width, int32_t height)
|
|
|
|
{
|
2012-06-27 00:29:50 +04:00
|
|
|
struct window *window = wl_surface_get_user_data(surface);
|
2011-11-28 16:11:15 +04:00
|
|
|
struct surface *s = window_get_user_data(window);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2012-04-12 06:42:15 +04:00
|
|
|
s->configure(data, desktop_shell, edges, window, width, height);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
|
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,
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *desktop_shell)
|
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
|
|
|
{
|
2011-11-15 15:34:56 +04:00
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
if (!desktop->locking) {
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_unlock(desktop->shell);
|
2011-12-08 12:06:53 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-15 15:34:56 +04:00
|
|
|
if (!desktop->unlock_dialog) {
|
2011-11-16 01:39:55 +04:00
|
|
|
desktop->unlock_dialog = unlock_dialog_create(desktop);
|
2011-11-15 15:34:56 +04:00
|
|
|
desktop->unlock_dialog->desktop = desktop;
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2012-06-28 19:08:05 +04:00
|
|
|
static void
|
|
|
|
desktop_shell_grab_cursor(void *data,
|
2015-11-17 11:00:33 +03:00
|
|
|
struct weston_desktop_shell *desktop_shell,
|
2012-06-28 19:08:05 +04:00
|
|
|
uint32_t cursor)
|
|
|
|
{
|
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
|
|
|
switch (cursor) {
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_NONE:
|
2012-08-24 17:43:55 +04:00
|
|
|
desktop->grab_cursor = CURSOR_BLANK;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_BUSY:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_WATCH;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_MOVE:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_DRAGGING;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_TOP:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_TOP;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_BOTTOM:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_BOTTOM;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_LEFT:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_LEFT;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_RIGHT:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_RIGHT;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_TOP_LEFT:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_TOP_LEFT;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_TOP_RIGHT:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_TOP_RIGHT;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_BOTTOM_LEFT:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_BOTTOM_LEFT;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_RESIZE_BOTTOM_RIGHT:
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_cursor = CURSOR_BOTTOM_RIGHT;
|
|
|
|
break;
|
2015-11-17 11:00:33 +03:00
|
|
|
case WESTON_DESKTOP_SHELL_CURSOR_ARROW:
|
2012-06-28 19:08:05 +04:00
|
|
|
default:
|
|
|
|
desktop->grab_cursor = CURSOR_LEFT_PTR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-17 11:00:33 +03:00
|
|
|
static const struct weston_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,
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop_shell_prepare_lock_surface,
|
|
|
|
desktop_shell_grab_cursor
|
2011-09-07 02:02:34 +04:00
|
|
|
};
|
|
|
|
|
2012-10-03 08:12:35 +04:00
|
|
|
static void
|
|
|
|
background_destroy(struct background *background)
|
|
|
|
{
|
|
|
|
widget_destroy(background->widget);
|
|
|
|
window_destroy(background->window);
|
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
free(background->image);
|
2012-10-03 08:12:35 +04:00
|
|
|
free(background);
|
|
|
|
}
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
static struct background *
|
2017-12-07 13:15:01 +03:00
|
|
|
background_create(struct desktop *desktop, struct output *output)
|
2011-11-22 15:43:52 +04:00
|
|
|
{
|
|
|
|
struct background *background;
|
2013-07-05 17:05:27 +04:00
|
|
|
struct weston_config_section *s;
|
|
|
|
char *type;
|
2011-11-22 15:43:52 +04:00
|
|
|
|
2013-08-08 05:57:05 +04:00
|
|
|
background = xzalloc(sizeof *background);
|
2017-12-07 13:15:01 +03:00
|
|
|
background->owner = output;
|
2011-11-22 15:43:52 +04:00
|
|
|
background->base.configure = background_configure;
|
2012-06-27 00:29:50 +04:00
|
|
|
background->window = window_create_custom(desktop->display);
|
2012-01-10 21:23:19 +04:00
|
|
|
background->widget = window_add_widget(background->window, background);
|
2011-11-22 15:43:52 +04:00
|
|
|
window_set_user_data(background->window, background);
|
2012-01-10 21:23:19 +04:00
|
|
|
widget_set_redraw_handler(background->widget, background_draw);
|
2014-08-25 22:56:49 +04:00
|
|
|
widget_set_transparent(background->widget, 0);
|
2011-11-22 15:43:52 +04:00
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
s = weston_config_get_section(desktop->config, "shell", NULL, NULL);
|
|
|
|
weston_config_section_get_string(s, "background-image",
|
2014-04-22 09:54:37 +04:00
|
|
|
&background->image, NULL);
|
config-parser: Add weston_config_section_get_color
Previously weston_config_section_get_uint was serving dual purpose for
parsing both unsigned decimal integer values (ids, counts, seconds,
etc.) and hexadecimal values (colors), by relying on strtoul's
auto-detection mechanism.
However, this usage is unable to catch certain kinds of error
conditions, such as specifying a negative number where an unsigned
should be used. And for colors in particular, it would misparse hex
values if the leading 0x was omitted. E.g. "background-color=99999999"
would render a near-black background (effectively 0x05f5e0ff) instead of
medium grey, and "background-color=ffffffff" would be treated as an
error rather than white. "background-color=0x01234567",
"background-color=01234567", and "background-color=1234567" each
resulted in the value being parsed as hexadecimal, octal, and decimal
respectively, resulting in colors 0x01234567, 0x00053977, and 0x0012d687
being displayed.
This new routine forces hexadecimal to be used in all cases when parsing
color values, so "0x01234567" and "01234567" result in the same color
value, "99999999" is grey, and "ffffffff" is white. It also requires
exactly 8 or 10 digits (other lengths likely indicate typos), or the
value "0" (black).
Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2016-07-15 04:28:03 +03:00
|
|
|
weston_config_section_get_color(s, "background-color",
|
|
|
|
&background->color, 0x00000000);
|
2013-07-05 17:05:27 +04:00
|
|
|
|
|
|
|
weston_config_section_get_string(s, "background-type",
|
|
|
|
&type, "tile");
|
2014-01-15 22:59:50 +04:00
|
|
|
if (type == NULL) {
|
|
|
|
fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
if (strcmp(type, "scale") == 0) {
|
|
|
|
background->type = BACKGROUND_SCALE;
|
|
|
|
} else if (strcmp(type, "scale-crop") == 0) {
|
|
|
|
background->type = BACKGROUND_SCALE_CROP;
|
|
|
|
} else if (strcmp(type, "tile") == 0) {
|
|
|
|
background->type = BACKGROUND_TILE;
|
2018-08-23 00:56:07 +03:00
|
|
|
} else if (strcmp(type, "centered") == 0) {
|
|
|
|
background->type = BACKGROUND_CENTERED;
|
2013-07-05 17:05:27 +04:00
|
|
|
} else {
|
|
|
|
background->type = -1;
|
|
|
|
fprintf(stderr, "invalid background-type: %s\n",
|
|
|
|
type);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(type);
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
return background;
|
|
|
|
}
|
|
|
|
|
2012-06-05 17:58:51 +04:00
|
|
|
static int
|
2012-06-28 19:08:05 +04:00
|
|
|
grab_surface_enter_handler(struct widget *widget, struct input *input,
|
2012-06-05 17:58:51 +04:00
|
|
|
float x, float y, void *data)
|
|
|
|
{
|
2012-06-28 19:08:05 +04:00
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
|
|
|
return desktop->grab_cursor;
|
2012-06-05 17:58:51 +04:00
|
|
|
}
|
|
|
|
|
2012-10-03 08:12:35 +04:00
|
|
|
static void
|
|
|
|
grab_surface_destroy(struct desktop *desktop)
|
|
|
|
{
|
|
|
|
widget_destroy(desktop->grab_widget);
|
|
|
|
window_destroy(desktop->grab_window);
|
|
|
|
}
|
|
|
|
|
2012-06-05 17:58:51 +04:00
|
|
|
static void
|
2012-06-28 19:08:05 +04:00
|
|
|
grab_surface_create(struct desktop *desktop)
|
2012-06-05 17:58:51 +04:00
|
|
|
{
|
|
|
|
struct wl_surface *s;
|
|
|
|
|
2012-07-16 15:15:50 +04:00
|
|
|
desktop->grab_window = window_create_custom(desktop->display);
|
2012-06-28 19:08:05 +04:00
|
|
|
window_set_user_data(desktop->grab_window, desktop);
|
|
|
|
|
|
|
|
s = window_get_wl_surface(desktop->grab_window);
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_set_grab_surface(desktop->shell, s);
|
2012-06-05 17:58:51 +04:00
|
|
|
|
2012-06-28 19:08:05 +04:00
|
|
|
desktop->grab_widget =
|
|
|
|
window_add_widget(desktop->grab_window, desktop);
|
2012-06-05 17:58:51 +04:00
|
|
|
/* We set the allocation to 1x1 at 0,0 so the fake enter event
|
|
|
|
* at 0,0 will go to this widget. */
|
2012-06-28 19:08:05 +04:00
|
|
|
widget_set_allocation(desktop->grab_widget, 0, 0, 1, 1);
|
2012-06-05 17:58:51 +04:00
|
|
|
|
2012-06-28 19:08:05 +04:00
|
|
|
widget_set_enter_handler(desktop->grab_widget,
|
|
|
|
grab_surface_enter_handler);
|
2012-06-05 17:58:51 +04:00
|
|
|
}
|
|
|
|
|
2012-10-03 08:12:35 +04:00
|
|
|
static void
|
|
|
|
output_destroy(struct output *output)
|
|
|
|
{
|
2017-12-07 13:15:01 +03:00
|
|
|
if (output->background)
|
|
|
|
background_destroy(output->background);
|
2014-08-12 17:07:51 +04:00
|
|
|
if (output->panel)
|
|
|
|
panel_destroy(output->panel);
|
2012-10-03 08:12:35 +04:00
|
|
|
wl_output_destroy(output->output);
|
|
|
|
wl_list_remove(&output->link);
|
|
|
|
|
|
|
|
free(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
desktop_destroy_outputs(struct desktop *desktop)
|
|
|
|
{
|
|
|
|
struct output *tmp;
|
|
|
|
struct output *output;
|
|
|
|
|
|
|
|
wl_list_for_each_safe(output, tmp, &desktop->outputs, link)
|
|
|
|
output_destroy(output);
|
|
|
|
}
|
|
|
|
|
2013-05-22 16:41:32 +04:00
|
|
|
static void
|
|
|
|
output_handle_geometry(void *data,
|
|
|
|
struct wl_output *wl_output,
|
|
|
|
int x, int y,
|
|
|
|
int physical_width,
|
|
|
|
int physical_height,
|
|
|
|
int subpixel,
|
|
|
|
const char *make,
|
|
|
|
const char *model,
|
|
|
|
int transform)
|
|
|
|
{
|
|
|
|
struct output *output = data;
|
|
|
|
|
2017-12-07 16:30:18 +03:00
|
|
|
output->x = x;
|
|
|
|
output->y = y;
|
|
|
|
|
2014-08-12 17:07:51 +04:00
|
|
|
if (output->panel)
|
|
|
|
window_set_buffer_transform(output->panel->window, transform);
|
2017-12-07 13:15:01 +03:00
|
|
|
if (output->background)
|
|
|
|
window_set_buffer_transform(output->background->window, transform);
|
2013-05-22 16:41:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_handle_mode(void *data,
|
|
|
|
struct wl_output *wl_output,
|
|
|
|
uint32_t flags,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int refresh)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_handle_done(void *data,
|
|
|
|
struct wl_output *wl_output)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_handle_scale(void *data,
|
|
|
|
struct wl_output *wl_output,
|
2013-05-24 15:09:43 +04:00
|
|
|
int32_t scale)
|
2013-05-22 16:41:32 +04:00
|
|
|
{
|
|
|
|
struct output *output = data;
|
|
|
|
|
2014-08-12 17:07:51 +04:00
|
|
|
if (output->panel)
|
|
|
|
window_set_buffer_scale(output->panel->window, scale);
|
2017-12-07 13:15:01 +03:00
|
|
|
if (output->background)
|
|
|
|
window_set_buffer_scale(output->background->window, scale);
|
2013-05-22 16:41:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_output_listener output_listener = {
|
|
|
|
output_handle_geometry,
|
|
|
|
output_handle_mode,
|
|
|
|
output_handle_done,
|
|
|
|
output_handle_scale
|
|
|
|
};
|
|
|
|
|
2013-07-05 17:05:28 +04:00
|
|
|
static void
|
|
|
|
output_init(struct output *output, struct desktop *desktop)
|
|
|
|
{
|
|
|
|
struct wl_surface *surface;
|
|
|
|
|
2016-06-23 19:55:18 +03:00
|
|
|
if (desktop->want_panel) {
|
2017-12-07 13:39:15 +03:00
|
|
|
output->panel = panel_create(desktop, output);
|
2014-08-12 17:07:51 +04:00
|
|
|
surface = window_get_wl_surface(output->panel->window);
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_set_panel(desktop->shell,
|
|
|
|
output->output, surface);
|
2014-08-12 17:07:51 +04:00
|
|
|
}
|
2013-07-05 17:05:28 +04:00
|
|
|
|
2017-12-07 13:15:01 +03:00
|
|
|
output->background = background_create(desktop, output);
|
2013-07-05 17:05:28 +04:00
|
|
|
surface = window_get_wl_surface(output->background->window);
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_set_background(desktop->shell,
|
|
|
|
output->output, surface);
|
2013-07-05 17:05:28 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 15:43:52 +04:00
|
|
|
static void
|
|
|
|
create_output(struct desktop *desktop, uint32_t id)
|
|
|
|
{
|
|
|
|
struct output *output;
|
|
|
|
|
2016-02-12 03:42:49 +03:00
|
|
|
output = zalloc(sizeof *output);
|
2011-11-22 15:43:52 +04:00
|
|
|
if (!output)
|
|
|
|
return;
|
|
|
|
|
2012-10-11 05:34:26 +04:00
|
|
|
output->output =
|
2013-05-22 16:41:32 +04:00
|
|
|
display_bind(desktop->display, id, &wl_output_interface, 2);
|
2013-10-23 09:58:35 +04:00
|
|
|
output->server_output_id = id;
|
2013-05-22 16:41:32 +04:00
|
|
|
|
|
|
|
wl_output_add_listener(output->output, &output_listener, output);
|
2011-11-22 15:43:52 +04:00
|
|
|
|
|
|
|
wl_list_insert(&desktop->outputs, &output->link);
|
2013-07-05 17:05:28 +04:00
|
|
|
|
|
|
|
/* On start up we may process an output global before the shell global
|
|
|
|
* in which case we can't create the panel and background just yet */
|
|
|
|
if (desktop->shell)
|
|
|
|
output_init(output, desktop);
|
2011-11-22 15:43:52 +04:00
|
|
|
}
|
|
|
|
|
2017-12-07 16:30:18 +03:00
|
|
|
static void
|
|
|
|
output_remove(struct desktop *desktop, struct output *output)
|
|
|
|
{
|
|
|
|
struct output *cur;
|
|
|
|
struct output *rep = NULL;
|
|
|
|
|
|
|
|
if (!output->background) {
|
|
|
|
output_destroy(output);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find a wl_output that is a clone of the removed wl_output.
|
|
|
|
* We don't want to leave the clone without a background or panel. */
|
|
|
|
wl_list_for_each(cur, &desktop->outputs, link) {
|
|
|
|
if (cur == output)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* XXX: Assumes size matches. */
|
|
|
|
if (cur->x == output->x && cur->y == output->y) {
|
|
|
|
rep = cur;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rep) {
|
2018-06-21 15:38:56 +03:00
|
|
|
/* If found and it does not already have a background or panel,
|
|
|
|
* hand over the background and panel so they don't get
|
|
|
|
* destroyed.
|
|
|
|
*
|
|
|
|
* We never create multiple backgrounds or panels for clones,
|
|
|
|
* but if the compositor moves outputs, a pair of wl_outputs
|
|
|
|
* might become "clones". This may happen temporarily when
|
|
|
|
* an output is about to be removed and the rest are reflowed.
|
|
|
|
* In this case it is correct to let the background/panel be
|
|
|
|
* destroyed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!rep->background) {
|
|
|
|
rep->background = output->background;
|
|
|
|
output->background = NULL;
|
|
|
|
rep->background->owner = rep;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rep->panel) {
|
|
|
|
rep->panel = output->panel;
|
|
|
|
output->panel = NULL;
|
|
|
|
if (rep->panel)
|
|
|
|
rep->panel->owner = rep;
|
|
|
|
}
|
2017-12-07 16:30:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
output_destroy(output);
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
static void
|
2012-10-11 05:34:26 +04:00
|
|
|
global_handler(struct display *display, uint32_t id,
|
2011-09-07 02:02:34 +04:00
|
|
|
const char *interface, uint32_t version, void *data)
|
|
|
|
{
|
|
|
|
struct desktop *desktop = data;
|
|
|
|
|
2015-11-17 11:00:33 +03:00
|
|
|
if (!strcmp(interface, "weston_desktop_shell")) {
|
2012-10-11 05:34:26 +04:00
|
|
|
desktop->shell = display_bind(desktop->display,
|
2015-11-17 11:00:33 +03:00
|
|
|
id,
|
|
|
|
&weston_desktop_shell_interface,
|
|
|
|
1);
|
|
|
|
weston_desktop_shell_add_listener(desktop->shell,
|
|
|
|
&listener,
|
|
|
|
desktop);
|
2011-11-22 15:43:52 +04:00
|
|
|
} else if (!strcmp(interface, "wl_output")) {
|
|
|
|
create_output(desktop, id);
|
2011-09-07 02:02:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-23 09:58:35 +04:00
|
|
|
static void
|
|
|
|
global_handler_remove(struct display *display, uint32_t id,
|
|
|
|
const char *interface, uint32_t version, void *data)
|
|
|
|
{
|
|
|
|
struct desktop *desktop = data;
|
|
|
|
struct output *output;
|
|
|
|
|
|
|
|
if (!strcmp(interface, "wl_output")) {
|
|
|
|
wl_list_for_each(output, &desktop->outputs, link) {
|
|
|
|
if (output->server_output_id == id) {
|
2017-12-07 16:30:18 +03:00
|
|
|
output_remove(desktop, output);
|
2013-10-23 09:58:35 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-15 07:43:37 +04:00
|
|
|
static void
|
2013-07-05 17:05:27 +04:00
|
|
|
panel_add_launchers(struct panel *panel, struct desktop *desktop)
|
2011-11-15 07:43:37 +04:00
|
|
|
{
|
2013-07-05 17:05:27 +04:00
|
|
|
struct weston_config_section *s;
|
2021-12-25 03:47:02 +03:00
|
|
|
char *icon, *path, *displayname;
|
2013-07-05 17:05:27 +04:00
|
|
|
const char *name;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
s = NULL;
|
|
|
|
while (weston_config_next_section(desktop->config, &s, &name)) {
|
|
|
|
if (strcmp(name, "launcher") != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
weston_config_section_get_string(s, "icon", &icon, NULL);
|
|
|
|
weston_config_section_get_string(s, "path", &path, NULL);
|
2021-12-25 03:47:02 +03:00
|
|
|
weston_config_section_get_string(s, "displayname", &displayname, NULL);
|
|
|
|
if (displayname == NULL)
|
|
|
|
displayname = xstrdup(basename(path));
|
2013-07-05 17:05:27 +04:00
|
|
|
|
|
|
|
if (icon != NULL && path != NULL) {
|
2021-12-25 03:47:02 +03:00
|
|
|
panel_add_launcher(panel, icon, path, displayname);
|
2013-07-26 19:29:45 +04:00
|
|
|
count++;
|
2013-07-05 17:05:27 +04:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "invalid launcher section\n");
|
|
|
|
}
|
2011-11-15 07:43:37 +04:00
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
free(icon);
|
|
|
|
free(path);
|
2021-12-25 03:47:02 +03:00
|
|
|
free(displayname);
|
2012-06-08 02:39:11 +04:00
|
|
|
}
|
2011-11-22 15:43:52 +04:00
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
if (count == 0) {
|
2021-07-31 18:25:41 +03:00
|
|
|
char *name = file_name_with_datadir("terminal.png");
|
2018-02-07 00:18:38 +03:00
|
|
|
|
2013-07-05 17:05:27 +04:00
|
|
|
/* add default launcher */
|
|
|
|
panel_add_launcher(panel,
|
2018-02-07 00:18:38 +03:00
|
|
|
name,
|
2021-12-25 03:47:02 +03:00
|
|
|
BINDIR "/weston-terminal",
|
|
|
|
"Terminal");
|
2018-02-07 00:18:38 +03:00
|
|
|
free(name);
|
2013-07-05 17:05:27 +04:00
|
|
|
}
|
2012-01-26 01:57:11 +04:00
|
|
|
}
|
|
|
|
|
2016-06-23 19:55:18 +03:00
|
|
|
static void
|
|
|
|
parse_panel_position(struct desktop *desktop, struct weston_config_section *s)
|
|
|
|
{
|
|
|
|
char *position;
|
|
|
|
|
2017-01-16 16:18:21 +03:00
|
|
|
desktop->want_panel = 1;
|
|
|
|
|
2016-06-23 19:55:18 +03:00
|
|
|
weston_config_section_get_string(s, "panel-position", &position, "top");
|
2017-01-16 16:18:21 +03:00
|
|
|
if (strcmp(position, "top") == 0) {
|
2016-06-23 19:55:18 +03:00
|
|
|
desktop->panel_position = WESTON_DESKTOP_SHELL_PANEL_POSITION_TOP;
|
2017-01-16 16:18:21 +03:00
|
|
|
} else if (strcmp(position, "bottom") == 0) {
|
2016-06-23 19:55:18 +03:00
|
|
|
desktop->panel_position = WESTON_DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
2017-01-16 16:18:21 +03:00
|
|
|
} else if (strcmp(position, "left") == 0) {
|
2016-06-23 19:55:18 +03:00
|
|
|
desktop->panel_position = WESTON_DESKTOP_SHELL_PANEL_POSITION_LEFT;
|
2017-01-16 16:18:21 +03:00
|
|
|
} else if (strcmp(position, "right") == 0) {
|
2016-06-23 19:55:18 +03:00
|
|
|
desktop->panel_position = WESTON_DESKTOP_SHELL_PANEL_POSITION_RIGHT;
|
2017-01-16 16:18:21 +03:00
|
|
|
} else {
|
|
|
|
/* 'none' is valid here */
|
|
|
|
if (strcmp(position, "none") != 0)
|
|
|
|
fprintf(stderr, "Wrong panel position: %s\n", position);
|
|
|
|
desktop->want_panel = 0;
|
2016-06-23 19:55:18 +03:00
|
|
|
}
|
2017-01-16 16:18:21 +03:00
|
|
|
free(position);
|
2016-06-23 19:55:18 +03:00
|
|
|
}
|
|
|
|
|
2016-06-23 19:55:22 +03:00
|
|
|
static void
|
|
|
|
parse_clock_format(struct desktop *desktop, struct weston_config_section *s)
|
|
|
|
{
|
|
|
|
char *clock_format;
|
|
|
|
|
|
|
|
weston_config_section_get_string(s, "clock-format", &clock_format, "");
|
|
|
|
if (strcmp(clock_format, "minutes") == 0)
|
|
|
|
desktop->clock_format = CLOCK_FORMAT_MINUTES;
|
|
|
|
else if (strcmp(clock_format, "seconds") == 0)
|
|
|
|
desktop->clock_format = CLOCK_FORMAT_SECONDS;
|
2020-10-30 22:09:23 +03:00
|
|
|
else if (strcmp(clock_format, "minutes-24h") == 0)
|
|
|
|
desktop->clock_format = CLOCK_FORMAT_MINUTES_24H;
|
|
|
|
else if (strcmp(clock_format, "seconds-24h") == 0)
|
|
|
|
desktop->clock_format = CLOCK_FORMAT_SECONDS_24H;
|
2016-06-23 19:55:22 +03:00
|
|
|
else if (strcmp(clock_format, "none") == 0)
|
|
|
|
desktop->clock_format = CLOCK_FORMAT_NONE;
|
|
|
|
else
|
|
|
|
desktop->clock_format = DEFAULT_CLOCK_FORMAT;
|
|
|
|
free(clock_format);
|
|
|
|
}
|
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2011-11-15 15:34:56 +04:00
|
|
|
struct desktop desktop = { 0 };
|
2011-11-22 15:43:52 +04:00
|
|
|
struct output *output;
|
2013-07-05 17:05:27 +04:00
|
|
|
struct weston_config_section *s;
|
2015-03-24 16:56:19 +03:00
|
|
|
const char *config_file;
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2011-11-15 15:34:56 +04:00
|
|
|
desktop.unlock_task.run = unlock_dialog_finish;
|
2011-11-22 15:43:52 +04:00
|
|
|
wl_list_init(&desktop.outputs);
|
2011-11-15 15:34:56 +04:00
|
|
|
|
2015-03-24 16:56:19 +03:00
|
|
|
config_file = weston_config_get_name_from_env();
|
|
|
|
desktop.config = weston_config_parse(config_file);
|
2013-07-05 17:05:27 +04:00
|
|
|
s = weston_config_get_section(desktop.config, "shell", NULL, NULL);
|
2019-11-26 03:14:24 +03:00
|
|
|
weston_config_section_get_bool(s, "locking", &desktop.locking, true);
|
2016-06-23 19:55:18 +03:00
|
|
|
parse_panel_position(&desktop, s);
|
2016-06-23 19:55:22 +03:00
|
|
|
parse_clock_format(&desktop, s);
|
2013-07-05 17:05:27 +04:00
|
|
|
|
2013-02-21 00:27:49 +04:00
|
|
|
desktop.display = display_create(&argc, argv);
|
2011-09-07 02:02:34 +04:00
|
|
|
if (desktop.display == NULL) {
|
2019-04-27 00:57:31 +03:00
|
|
|
fprintf(stderr, "failed to create display: %s\n",
|
|
|
|
strerror(errno));
|
2020-11-25 04:05:40 +03:00
|
|
|
weston_config_destroy(desktop.config);
|
2011-09-07 02:02:34 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-05 17:58:51 +04:00
|
|
|
display_set_user_data(desktop.display, &desktop);
|
2012-10-11 05:34:26 +04:00
|
|
|
display_set_global_handler(desktop.display, global_handler);
|
2013-10-23 09:58:35 +04:00
|
|
|
display_set_global_handler_remove(desktop.display, global_handler_remove);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2013-07-05 17:05:28 +04:00
|
|
|
/* Create panel and background for outputs processed before the shell
|
|
|
|
* global interface was processed */
|
2016-06-23 19:55:18 +03:00
|
|
|
if (desktop.want_panel)
|
|
|
|
weston_desktop_shell_set_panel_position(desktop.shell, desktop.panel_position);
|
2013-07-05 17:05:28 +04:00
|
|
|
wl_list_for_each(output, &desktop.outputs, link)
|
2023-11-22 21:53:56 +03:00
|
|
|
if (!output->background)
|
2013-07-05 17:05:28 +04:00
|
|
|
output_init(output, &desktop);
|
2011-09-07 02:02:34 +04:00
|
|
|
|
2012-06-28 19:08:05 +04:00
|
|
|
grab_surface_create(&desktop);
|
2012-06-05 17:58:51 +04:00
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
signal(SIGCHLD, sigchild_handler);
|
|
|
|
|
|
|
|
display_run(desktop.display);
|
|
|
|
|
2012-10-03 08:12:35 +04:00
|
|
|
/* Cleanup */
|
|
|
|
grab_surface_destroy(&desktop);
|
|
|
|
desktop_destroy_outputs(&desktop);
|
|
|
|
if (desktop.unlock_dialog)
|
|
|
|
unlock_dialog_destroy(desktop.unlock_dialog);
|
2015-11-17 11:00:33 +03:00
|
|
|
weston_desktop_shell_destroy(desktop.shell);
|
2012-10-03 08:12:35 +04:00
|
|
|
display_destroy(desktop.display);
|
2020-11-25 04:05:40 +03:00
|
|
|
weston_config_destroy(desktop.config);
|
2012-10-03 08:12:35 +04:00
|
|
|
|
2011-09-07 02:02:34 +04:00
|
|
|
return 0;
|
|
|
|
}
|