diff options
author | lukefromdc <[email protected]> | 2023-12-15 02:06:53 -0500 |
---|---|---|
committer | Luke from DC <[email protected]> | 2024-01-17 00:33:59 +0000 |
commit | 3d06d8b6dd1a26c26f34816a347524aeff3430b2 (patch) | |
tree | 109aa2a1f19c02490c3ef0115256cd8ec18cc149 /libcaja-private | |
parent | 8bb93666b35ee6277071d1b5ab4d52ae57d06975 (diff) | |
download | caja-3d06d8b6dd1a26c26f34816a347524aeff3430b2.tar.bz2 caja-3d06d8b6dd1a26c26f34816a347524aeff3430b2.tar.xz |
Manage desktop backgrounds when running in wayland
*Draw the background on the desktop window, using the same code as on navigation windows to bypass the no-root-window issue.
*Works from caja's "Change Desktop Background" menu item, from caja-extensions "set as wallpaper" and with changing the background in dconf-editor.
*All background options available in x11 supported in wayland, UI is new for wayland
*Apply changes immediately, keep the dialog open until closed by user
*Let users see changes in realtime while keeping the dialog open
*Preview both colors and pictures
*Add ability to apply changes from either combobox including using any image saved from when dialog was opened
*Add tooltips to the buttons, filepicker, and comboboxes
Diffstat (limited to 'libcaja-private')
-rw-r--r-- | libcaja-private/caja-icon-container.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libcaja-private/caja-icon-container.c b/libcaja-private/caja-icon-container.c index 18ca2054..4c4c084c 100644 --- a/libcaja-private/caja-icon-container.c +++ b/libcaja-private/caja-icon-container.c @@ -4606,6 +4606,19 @@ draw (GtkWidget *widget, cairo_t *cr) { eel_background_draw (widget, cr); } + /*If this is the desktop on wayland, we must draw it from here + *Calling eel_background_draw() from caja_desktop_window_class_init() + *as we do in x11 gives a black background on wayland + *Wayland is always composited but never has a root window + *We don't have a root window to draw on + *the code used for x11 without compositing somehow fails too + *But we can get caja's toplevel window from here and draw on it + */ + if ((!(GDK_IS_X11_DISPLAY (gdk_display_get_default()))) && (CAJA_ICON_CONTAINER (widget)->details->is_desktop)) + { + GtkWidget *toplevel = gtk_widget_get_toplevel(widget); + eel_background_draw (toplevel, cr); + } return GTK_WIDGET_CLASS (caja_icon_container_parent_class)->draw (widget, cr); |