KDE CI: Plasma » systemsettings » kf5-qt5 SUSEQt5.15 - Build # 300 - Fixed!

2021-09-22 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Plasma/job/systemsettings/job/kf5-qt5%20SUSEQt5.15/300/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Thu, 23 Sep 2021 01:15:37 +
 Build duration:
10 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/7)0%
(0/18)0%
(0/18)0%
(0/2023)0%
(0/1008)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsapp0%
(0/2)0%
(0/2)0%
(0/337)0%
(0/190)app.ToolTips0%
(0/1)0%
(0/1)0%
(0/102)0%
(0/27)core0%
(0/9)0%
(0/9)0%
(0/722)0%
(0/413)icons0%
(0/3)0%
(0/3)0%
(0/148)0%
(0/50)runner0%
(0/1)0%
(0/1)0%
(0/120)0%
(0/68)sidebar0%
(0/1)0%
(0/1)0%
(0/484)0%
(0/227)sidebar.ToolTips0%
(0/1)0%
(0/1)0%
(0/110)0%
(0/33)

Re: Wallpaper idea

2021-09-22 Thread Albert Astals Cid
El diumenge, 19 de setembre de 2021, a les 2:02:20 (CEST), oldschoolcowboy va 
escriure:
> I have an idea for a wallpaper plugin. I also have never done anything like 
> this. I have no idea where or how to start. Will someone be willing to point 
> me to a starting point so I can start learning?

To create a wallpaper for plasma you need to implement a Plasma/Wallpaper type 
plugin

There are a few of them you can get inspiration from 

https://invent.kde.org/education/marble/-/tree/master/src/plasma/wallpapers/worldmap
https://invent.kde.org/plasma/kdeplasma-addons/-/tree/master/wallpapers

I'm CC'in plasma-devle that may give you more pointers

Cheers,
  Albert

> 
> Sent with [ProtonMail](https://protonmail.com/) Secure Email.
> 






Re: Project Submission

2021-09-22 Thread Aleix Pol
Hi Farkas,
Integration is never a problem. QML is also written in C++. In fact, if
something is not possible to do with QML we generally just add it. On the
other hand it's harder to get C++ components to integrate visually without
QML/QtQuick as we use the components transparently.

Most of what you see in Plasma is QML, so if you aspire to integrate with
it, I also would recommend using the same technology. I'm not entirely sure
about what you mean with the different cases you see could be contentious
but I'm sure we'd find a way to integrate them.

You can for example look at the application dashboard plasmoid
(kickerdash), I'm sure it will help you understand how it works and
probably open the possibility to sharing code.
https://invent.kde.org/plasma/plasma-desktop/-/tree/master/applets/kicker/package/contents/ui

Aleix

On Tue, Sep 21, 2021 at 8:46 PM Farkas Máté  wrote:

> Hi Nate,
>
> Thank you for your interest. Following our brief exchange on Reddit where
> I initially announced the project, I have indeed considered rewriting
> things in QML. There are three reasons I stuck with C++ however, but I
> might have been naîve. First, in the long run I would like to allow the
> user to add plasmoids to the dashboard, eliminating the overall need for
> classical menus (as they are the only way to access the power buttons).
> With other words, I think it might be an interesting feature if the user
> could create a menu similar to those on iOS and Android devices containing
> both icons and widgets.
>
> Second, I have heard (from an unreliable source) that touchpad gestures
> are coming to Plasma. From the user's perspective, I believe it would be a
> nice touch to Rocket, if it had an appearance/disappearance animation
> synced to a pre-defined gesture (similar to what Launchpad in MacOS has). I
> am not an expert, but I thought the implementation of these features above
> would be easier in C++. Third, I also played with the idea of using KRunner
> as a backend, which is purely written in C++ as far as I know.
>
> Lastly (this does not really count as a reason), I wanted to accomplish
> something usable in a reasonable timeframe in order to play around with the
> idea a bit, and to see whether there would be any interest at all. Since
> QML still looks weird and annoyingly nonlinear to me (I initially took a
> look at Kickoff's code, and I could barely follow what was going on), I
> stayed with C++, which I am more familiar with; apart from that, I had the
> impression, that some functions in the Plasma libraries are C++-exclusive.
>
> Would you still propose going for QML given in this situation?
>
> Regards,
> Mate
>
> Le mar. 21 sept. 2021 à 18:01, Nate Graham  a écrit :
>
>> Hello Farkas,
>>
>> Have you considered making this a Plasma widget using QML? Plasma has an
>> existing infrastructure for installing, deleting, adding, and removing
>> widgets, and allowing users to see alternatives. Since this is basically
>> an alternative launcher, it would make sense for it to appear in the
>> "Alternatives" popup that shows existing installed alternative widgets.
>> We already have a full screen launcher widget ("Application Dastboard"),
>> so it's conceptually possible to do something like what you've done in
>> QML. However that widget is fairly old and un-loved, and would be a good
>> candidate for being overhauled or replaced with your launcher, if it
>> used the common technical infrastructure for widgets.
>>
>> Nate
>>
>>
>> On 9/16/21 16:09, Farkas Máté wrote:
>> > Dear KDE Team,
>> >
>> > hereby I would like to submit a project I have been working on in the
>> > last months with the aim of incubating it within the KDE project, as I
>> > believe it could contribute to the user experience on touch-capable
>> > devices (such as Microsoft Surface-like hybrid laptops, tablet users,
>> > Wacom-tablet users, etc.).
>> >
>> > It is an application launcher aiming for ease of use on the above
>> > mentioned devices. I believe Kicker is a simple and powerful launcher,
>> > but it still uses a classical old-style approach (i.e.
>> > menu-submenu-sub-submenu-navigation) to help the user to find the app
>> > he/she wants to launch. Using a pen or an equivalent device, this
>> > procedure (with misclicks and spending time looking for the right
>> > category, subcategory, etc.) could unnecessarily worsen the user
>> > experience, which motivated me to implement a launcher similar to those
>> > seen on smart devices and other modern desktop operating systems.
>> >
>> > The launcher (which I have named Rocket) places the user's applications
>> > in a grid and allows him/her to categorize them by making folders. It
>> > supports searching, so opening the launcher with a shortcut and typing
>> > the desired program's name into the already focused search field
>> already
>> > yields results to keep a fluent workflow for keyboard-oriented
>> > power-users too. It aims to be customizable and uses the KF5 framework
>> > 

KDE CI: Plasma » kwin » kf5-qt5 SUSEQt5.15 - Build # 1532 - Fixed!

2021-09-22 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Plasma/job/kwin/job/kf5-qt5%20SUSEQt5.15/1532/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Wed, 22 Sep 2021 15:10:18 +
 Build duration:
26 min and counting
   BUILD ARTIFACTS
  acc/KWinEffects-5.23.80.xml
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 16 test(s), Skipped: 0 test(s), Total: 16 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 117 test(s), Skipped: 0 test(s), Total: 117 test(s)Name: projectroot.autotests.integration Failed: 0 test(s), Passed: 19 test(s), Skipped: 0 test(s), Total: 19 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report66%
(60/91)56%
(344/612)56%
(344/612)44%
(33728/77244)33%
(14242/43319)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsdata0%
(0/1)0%
(0/1)0%
(0/30)0%
(0/8)src88%
(161/182)88%
(161/182)65%
(21690/33173)49%
(10108/20489)src.decorations100%
(8/8)100%
(8/8)72%
(389/538)58%
(124/212)src.effects100%
(2/2)100%
(2/2)99%
(169/171)86%
(24/28)src.effects.backgroundcontrast25%
(1/4)25%
(1/4)4%
(15/387)5%
(14/288)src.effects.blur20%
(1/5)20%
(1/5)2%
(15/693)4%
(15/391)src.effects.colorpicker100%
(2/2)100%
(2/2)20%
(12/61)8%
(2/26)src.effects.desktopgrid67%
(2/3)67%
(2/3)11%
(109/1020)3%
(20/790)src.effects.diminactive33%
(1/3)33%
(1/3)13%
(30/238)2%
(3/166)src.effects.fallapart100%
(2/2)100%
(2/2)33%
(38/116)26%
(17/66)src.effects.glide67%
(2/3)67%
(2/3)72%
(151/209)65%
(64/99)src.effects.highlightwindow100%
(2/2)100%
(2/2)47%
(74/159)26%
(24/92)src.effects.invert33%
(1/3)33%
(1/3)25%
(26/106)3%
(1/32)src.effects.kscreen100%
(2/2)100%
(2/2)38%
(45/120)16%
(13/82)src.effects.lookingglass33%
(1/3)33%
(1/3)1%
(2/193)1%
(1/72)src.effects.magiclamp67%
(2/3)67%
(2/3)52%
(116/221)29%
(36/125)src.effects.magnifier33%
 

Re: nm-applet mouse issue

2021-09-22 Thread Robert David
Hi David,

is there any known workaround? Something like disable some
functionality, some settings?

Thanks,
Robert.


On Friday, September 17, 2021 10:36:13 AM CEST David Edmundson wrote:
> Not for the part in question.
> 
>  See
> https://github.com/KDE/plasma-nm/blob/v5.20.5/applet/contents/ui/PopupDialo
> g.qml#L63