Bug 414072 - Integrate better WallPaper plugin with desktops (Linux, Windows, MacOS)
Summary: Integrate better WallPaper plugin with desktops (Linux, Windows, MacOS)
Status: REPORTED
Alias: None
Product: digikam
Classification: Applications
Component: Plugin-Generic-WallPaper (show other bugs)
Version: 7.0.0
Platform: Other All
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-11-12 17:49 UTC by caulier.gilles
Modified: 2021-01-26 13:01 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description caulier.gilles 2019-11-12 17:49:52 UTC
Currently, WallPaper tool is only able to deploy one image to Plasma destop through Dbus command.

As digiKam is multi-platform, we need to support other desktop under Linux or not, as Gnome, generic X11, Windows, MAcOS, etc...

It cannot setup the wallpaper with options as mosaic, size adjustment, multiple screens support, etc.

Some links :

* https://stackoverflow.com/questions/1220826/changing-wallpaper-on-linux-programmatically

* Gnome GIO way :
https://github.com/GNOME/glib/blob/master/gio/gsettings-tool.c
with :
«set org.gnome.desktop.background picture-uri file:///path/to/file.jpg»

* GThumb wallpaper tool : https://github.com/GNOME/gthumb/tree/d644a77a1b2085ce2c947719fb3f9107e068c42c/extensions/desktop_background

* 2 samples of code to set wallpaper under Windows and MacOS :

- http://amin-ahmadi.com/2015/12/07/how-to-change-desktop-background-image-in-c/
- https://stackoverflow.com/questions/5468074/programmatically-changing-desktop-image

Gilles Caulier
Comment 1 caulier.gilles 2021-01-19 22:49:00 UTC
Git commit 97452b65f2158026812f48b48c77aa0b61a307fe by Gilles Caulier.
Committed on 19/01/2021 at 22:47.
Pushed by cgilles into branch 'master'.

Use osascript under macOS to setup current desktop wallpaper with current selected image

M  +1    -3    core/dplugins/generic/tools/CMakeLists.txt
M  +6    -2    core/dplugins/generic/tools/wallpaper/CMakeLists.txt
M  +49   -8    core/dplugins/generic/tools/wallpaper/wallpaperplugin.cpp
M  +2    -1    core/dplugins/generic/tools/wallpaper/wallpaperplugin.h

https://invent.kde.org/graphics/digikam/commit/97452b65f2158026812f48b48c77aa0b61a307fe
Comment 2 caulier.gilles 2021-01-19 22:56:30 UTC
Git commit aee9f3b76af5e031237d3c7d73c7c60fce5a1c0e by Gilles Caulier.
Committed on 19/01/2021 at 22:55.
Pushed by cgilles into branch 'master'.

Try to implement set wallpaper under Windows.

M  +24   -1    core/dplugins/generic/tools/wallpaper/wallpaperplugin.cpp

https://invent.kde.org/graphics/digikam/commit/aee9f3b76af5e031237d3c7d73c7c60fce5a1c0e
Comment 3 caulier.gilles 2021-01-20 13:36:52 UTC
Git commit 166af58a1a8da77e34c782db505e480eefb17f1a by Gilles Caulier.
Committed on 20/01/2021 at 13:34.
Pushed by cgilles into branch 'master'.

Separate well Linux (DBUS), Windows, and macOS wallpaper version

M  +21   -5    core/dplugins/generic/tools/wallpaper/CMakeLists.txt
M  +3    -169  core/dplugins/generic/tools/wallpaper/wallpaperplugin.cpp
M  +12   -2    core/dplugins/generic/tools/wallpaper/wallpaperplugin.h
A  +85   -0    core/dplugins/generic/tools/wallpaper/wallpaperplugin_dbus.cpp     [License: GPL (v2+)]
A  +75   -0    core/dplugins/generic/tools/wallpaper/wallpaperplugin_macos.cpp     [License: GPL (v2+)]
A  +144  -0    core/dplugins/generic/tools/wallpaper/wallpaperplugin_windows.cpp     [License: GPL (v2+)]

https://invent.kde.org/graphics/digikam/commit/166af58a1a8da77e34c782db505e480eefb17f1a
Comment 4 caulier.gilles 2021-01-21 07:44:22 UTC
Git commit 35b6c091ce4c622f026e1a0264f7113bd335a9e8 by Gilles Caulier.
Committed on 21/01/2021 at 07:43.
Pushed by cgilles into branch 'master'.

Add rules to compile or not WallPaper plugin depending of context.
Report state on the console at cmake configuration stage.

M  +18   -4    core/dplugins/generic/tools/wallpaper/CMakeLists.txt

https://invent.kde.org/graphics/digikam/commit/35b6c091ce4c622f026e1a0264f7113bd335a9e8
Comment 5 caulier.gilles 2021-01-21 16:04:21 UTC
Git commit 0c158adea26a6eb758abe10df7237510bce9bb71 by Gilles Caulier.
Committed on 21/01/2021 at 16:03.
Pushed by cgilles into branch 'master'.

Add new wallpaper dialog to tune layout of desktop image

M  +1    -0    core/dplugins/generic/tools/wallpaper/CMakeLists.txt
M  +21   -1    core/dplugins/generic/tools/wallpaper/wallpaperplugin.cpp
M  +15   -1    core/dplugins/generic/tools/wallpaper/wallpaperplugin.h
M  +28   -21   core/dplugins/generic/tools/wallpaper/wallpaperplugin_dbus.cpp
M  +8    -1    core/dplugins/generic/tools/wallpaper/wallpaperplugin_macos.cpp
M  +5    -7    core/dplugins/generic/tools/wallpaper/wallpaperplugin_windows.cpp
A  +126  -0    core/dplugins/generic/tools/wallpaper/wallpaperplugindlg.cpp     [License: GPL (v2+)]
A  +56   -0    core/dplugins/generic/tools/wallpaper/wallpaperplugindlg.h     [License: GPL (v2+)]

https://invent.kde.org/graphics/digikam/commit/0c158adea26a6eb758abe10df7237510bce9bb71
Comment 6 caulier.gilles 2021-01-25 09:10:09 UTC
Maik,

The Windows code to push an image as Wallper do not work.

If a wall paper is already set on the desktop, this one become a background black screen. I do not see any errors in native Windows API calls.

I suspected the encoding path in UTF16 badly formatted but i think no.
I suspected also the fact hat my VMs running Windows 7 or Windows 10 are not registered (aka wallpaper cannot be customized), but i can see the same dysfunction with a registered Windows 10.

The Windows API calls used are older one to be compatible with Windows 7, else new API will be compatible with Windows 8. I found sample of code in stackoverflow.

If you have an idea, the code is located here :

https://invent.kde.org/graphics/digikam/-/blob/master/core/dplugins/generic/tools/wallpaper/wallpaperplugin_windows.cpp

Gilles
Comment 7 Maik Qualmann 2021-01-25 11:37:24 UTC
Git commit 09fe9e2ff92df2927fa964f378809d2515736864 by Maik Qualmann.
Committed on 25/01/2021 at 11:36.
Pushed by mqualmann into branch 'master'.

try to fix Windows Wallpaper

M  +2    -1    core/dplugins/generic/tools/wallpaper/wallpaperplugin_windows.cpp

https://invent.kde.org/graphics/digikam/commit/09fe9e2ff92df2927fa964f378809d2515736864
Comment 8 Maik Qualmann 2021-01-25 11:59:03 UTC
Gilles,

if I understand correctly, it addresses the Windows Active Desktop API. However, this is no longer supported in current Windows versions.

Maik
Comment 9 Maik Qualmann 2021-01-25 12:03:29 UTC
We should only support iDesktopWallpaper::SetWallpaper. Windows7 has been discontinued and plays less and less of a role.

Maik
Comment 10 caulier.gilles 2021-01-25 12:18:39 UTC
Ah ok, i seen.

So if we need to use the new API, we must take a care about lower Windows version to support with MXE for backward compatibility. I'm not sure if new API will be able to compile with MXE Min Windows VERSION set to 7.0.0

Gilles
Comment 11 Maik Qualmann 2021-01-25 12:57:47 UTC
Gilles,

The current Windows bundles open an error window here under Windows7, stating that an entry in dbghelp.dll is not found. It should come from DrMinGW.

Maik
Comment 12 caulier.gilles 2021-01-25 13:22:38 UTC
Strange i check the same bundle this morning without this error message...

Gilles
Comment 13 caulier.gilles 2021-01-25 13:42:00 UTC
Maik,

Dll is well here in digiKam install path:

https://i.imgur.com/Biz3bC6.png

Gilles
Comment 14 Maik Qualmann 2021-01-25 14:05:52 UTC
The message is in German, I'm trying to translate it:

The procedure entry "dbgcore.MiniDumpReadDumpStream" was not found in the DLL "dbghelp.dll".

DigiKam starts up after ok.

Maik
Comment 15 caulier.gilles 2021-01-25 14:07:58 UTC
Git commit c7fe5b51fe789d77caa586c06eb8b2912ab17ae9 by Gilles Caulier.
Committed on 25/01/2021 at 14:05.
Pushed by cgilles into branch 'master'.

Add missing symsrv.yes file registration for symsrv.dll, used by dbghelp.dll

M  +1    -0    project/bundles/mxe/installer/digikam.nsi

https://invent.kde.org/graphics/digikam/commit/c7fe5b51fe789d77caa586c06eb8b2912ab17ae9
Comment 16 caulier.gilles 2021-01-25 14:11:51 UTC
This is strange, i don't have this warning on my windows 10.

NSIS installer miss to bunble a symsrv.yes" file linked to symsrv.dll, used by the famous dbghelp.dll... We will see if it better now...

The dbghelp.dll show the trace course dialog with the backtrace, as kdebugdialog do with Plasma desktop, Until now, i drop this dll as the bactrace in automatically recorded in a log file from user home directory, but if we can simplify the life of end-user in case of crash...

Gilles
Comment 17 caulier.gilles 2021-01-25 14:24:08 UTC
Maik, do you have Microsoft Visual Studio IDE installed ? on mine yes, version 2019 community). This can make a difference, as MSVC include a debugger, and i think this dll rely on this component.

Gilles
Comment 18 Maik Qualmann 2021-01-25 17:56:46 UTC
No, this is a computer in my company, there is no IDE installed.

Maik
Comment 19 Maik Qualmann 2021-01-26 08:01:15 UTC
The cause is certainly that there is also a older dbghelp.dll under C:\Windows\System32. Only Visual C ++ and Studio runtimes are installed.

Maik
Comment 20 caulier.gilles 2021-01-26 10:52:43 UTC
Maik,

I tested on my second Windows 10 VM without any SDK and IDE installed, and i cannot reproduce the Dll error.

Did you use Windows 10 or Windows 7 ?

Gilles
Comment 21 Maik Qualmann 2021-01-26 13:01:54 UTC
This computer here has Windows7. The problem is clear, the dbghelp.dll installed under System32 is used and is too old. 

Maik