Summary: | New tool to export images as desktop wallpaper folder [patch] | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Martin Tlustos <martin.tlustos> |
Component: | Plugin-Generic-WallPaper | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | antropovi, aspotashev, caulier.gilles |
Priority: | NOR | ||
Version: | 6.0.0 | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | https://commits.kde.org/digikam/51aeb061222513cfb3cda52fb80084e04ba5da8f | Version Fixed In: | 6.1.0 |
Sentry Crash Report: | |||
Bug Depends on: | 217950 | ||
Bug Blocks: | |||
Attachments: | Patch with plugin to export img as wallpaper |
Description
Martin Tlustos
2010-10-22 10:24:45 UTC
For info, this is a private message from Aditya Bhatt about to implement walpaper plugin with Plasma : // ------------------------------------------------- Hi Gilles, there's this Plasma::Wallpaper entry in the API docs : http://api.kde.org/4.x-api/kdelibs-apidocs/plasma/html/classPlasma_1_1Wallpaper.html Looks like you can draw stuff using QPainter... Regards, Aditya // ------------------------------------------------- There is also an entry in plasma here : https://bugs.kde.org/show_bug.cgi?id=231574 Gilles Caulier Another entry in bugzilla about DBUS way to change wallpaper: https://bugs.kde.org/show_bug.cgi?id=217950 Gilles Caulier *** Bug 192020 has been marked as a duplicate of this bug. *** WARNING : with digiKam 6.0.0 and later, we will not support kipi interface anymore. All tools are now located in digiKam core as well for a plan to provide a more power-full integration with Batch Queue Manager and to be able to export a workflow on a web-service. All export tools are now available everywhere : album view, Image editor, Light table, and Showfoto. Previously, only album view from digiKam core was able to deal with export tools through libkipi. All export tools are now located here : https://cgit.kde.org/digikam.git/tree/core/utilities/assistants/webservices All export tools use now a dedicated interface to communicate with the application : - digiKam (database) : https://cgit.kde.org/digikam.git/tree/core/libs/database/utils/ifaces/dbinfoiface.h - Showfoto (files metadata) : https://cgit.kde.org/digikam.git/tree/core/utilities/assistants/common/dmetainfoiface.h There is not direct use of digiKam database for compatibility with Showfoto. We plan later to provide a dynamic loading of export tools using a plugins mechanism. This will reduce overloading of the internal core libraries. A dedicated devel branch have been created for that, but it's not yet complete: https://cgit.kde.org/digikam.git/tree/?h=development/dplugins But take a care, digiKam export tools as plugins will not be shared with another external application. API will still private and only shared between Showfoto and digiKam core. The experience with libkipi was bad and complex to maintain/extend in time. Gilles Caulier Created attachment 119216 [details]
Patch with plugin to export img as wallpaper
I made a simple plugin to set selected image as wallpaper. It is located in Tools->Export as wallpaper.
Git commit 51aeb061222513cfb3cda52fb80084e04ba5da8f by Gilles Caulier. Committed on 02/04/2019 at 21:26. Pushed by cgilles into branch 'master'. add new plugin from Igor Antropov to set image as linux desktop wall paper. FIXED-IN: 6.1.0 Related: bug 192020 M +4 -1 NEWS M +4 -0 core/dplugins/generic/tools/CMakeLists.txt A +26 -0 core/dplugins/generic/tools/wallpaper/CMakeLists.txt A +138 -0 core/dplugins/generic/tools/wallpaper/wallpaperplugin.cpp [License: GPL (v2+)] A +64 -0 core/dplugins/generic/tools/wallpaper/wallpaperplugin.h [License: GPL (v2+)] https://commits.kde.org/digikam/51aeb061222513cfb3cda52fb80084e04ba5da8f |