Re: Plasma Wallpapers in QML

2012-09-25 Thread Aaron J. Seigo
On Tuesday, September 25, 2012 03:21:39 Aleix Pol wrote: git clone kde:scratch/apol/qmlwallpapers works very nicely; would be even nicer if mouse events were passed through, though, to allow some level of interaction, but given the mechanism that is needed to be used to make this work at the

Re: api review for DataEngineConsumer

2012-09-25 Thread Aaron J. Seigo
On Monday, September 24, 2012 21:09:57 Marco Martin wrote: rationale to remove remoteDataEngine the difference between dataEngine and remoteDataEngine was passing a QUrl for the remote engine. it seemed natural to merge the two things. not only does this give us just one method in the public

libplasma2 and Wallpaper

2012-09-25 Thread Aaron J. Seigo
hello ... Plasma::Wallpaper has a number of limitations that are a result of the times it came from :) namely, it directly paints using QPainter and forwards in a rather artifical means various mouse events. nothing else was really possible without dong the wallpapers in individual

Re: Plasma Wallpapers in QML

2012-09-25 Thread Aleix Pol
On Tue, Sep 25, 2012 at 9:31 AM, Aaron J. Seigo ase...@kde.org wrote: On Tuesday, September 25, 2012 03:21:39 Aleix Pol wrote: git clone kde:scratch/apol/qmlwallpapers works very nicely; would be even nicer if mouse events were passed through, though, to allow some level of interaction, but

Re: api review for DataEngineConsumer

2012-09-25 Thread Marco Martin
On Tue, Sep 25, 2012 at 9:36 AM, Aaron J. Seigo ase...@kde.org wrote: On Monday, September 24, 2012 21:09:57 Marco Martin wrote: rationale to remove remoteDataEngine the difference between dataEngine and remoteDataEngine was passing a QUrl for the remote engine. it seemed natural to merge the

Re: libplasma2 and Wallpaper

2012-09-25 Thread Marco Martin
On Tue, Sep 25, 2012 at 9:49 AM, Aaron J. Seigo ase...@kde.org wrote: we may even want to put support for these new plugins into the QML helper for Containment so that shells don't need to do anything at all. this is the design we have right now in libplasma for Wallpapers and Containments and

Behavior on systray icon clicking

2012-09-25 Thread Martin Klapetek
Hi, in KDE Telepathy we get /a lot/ of requests for enabling show/hide contact list behavior when clicking the presence plasmoid (ie. click - contact list opens; click again - contact list closes). Adding such feature is trivial, however after discussing this with Martin Graesslin, he pointed out

Re: Behavior on systray icon clicking

2012-09-25 Thread Ivan Čukić
for closing windows, not clicking systray icons. While I agree in principle, pretty much none of the apps behave this way - Amarok, Clementine, Quassel... - if you click its systray icon, it opens, clicking it again it closes. Even Klipper, which opens just a QMenu though, behaves I'd go for

Re: Behavior on systray icon clicking

2012-09-25 Thread Kåre Särs
On Tuesday 25 September 2012 12:01:17 Aaron J. Seigo wrote: On Tuesday, September 25, 2012 11:42:40 Ivan Čukić wrote: This replicates the behaviour of tasks applet - think of click-to-minimise. .. and why appliation tray icons really ought to be merged with the tasks applet. I hope

Re: Fit Grid elements in Item

2012-09-25 Thread Sebastian Kügler
On Monday, September 24, 2012 22:37:03 Luiz Romário Santana Rios wrote: And another thing: while this works for the width, the analogous code for the height (height: (grid.height / grid.rows) - grid.spacing) does this: http://oi48.tinypic.com/24l7jom.jpg . Why? That looks odd. Can you post the

Re: Plasma Wallpapers in QML

2012-09-25 Thread Sebastian Kügler
On Tuesday, September 25, 2012 10:24:04 Aleix Pol wrote: On Tue, Sep 25, 2012 at 9:31 AM, Aaron J. Seigo ase...@kde.org wrote: On Tuesday, September 25, 2012 03:21:39 Aleix Pol wrote: git clone kde:scratch/apol/qmlwallpapers works very nicely; would be even nicer if mouse events were

Re: Behavior on systray icon clicking

2012-09-25 Thread Aaron J. Seigo
On Tuesday, September 25, 2012 13:33:11 Kåre Särs wrote: I have spacial memory this is a basic part of human cognitive abilities. even toddlers who can only crawl exhibit it :) I don't use grouping of windows because I can use the taskbar-items to select all my individual windows with just

Re: Behavior on systray icon clicking

2012-09-25 Thread Kåre Särs
On Tuesday 25 September 2012 12:56:40 Aaron J. Seigo wrote: On Tuesday, September 25, 2012 13:33:11 Kåre Särs wrote: I have spacial memory this is a basic part of human cognitive abilities. even toddlers who can only crawl exhibit it :) What I mean is that people are different. Some people

Re: Behavior on systray icon clicking

2012-09-25 Thread David Edmundson
Back to the topic of the KTp plasmoid. The original goals of that plasmoid was not to be a silly shortcut to the contact list anyway. It's purpose /was/ to provide access to change your online-ness. I'd like to see it go back to what it was designed to do, rather than it's current state and the

Re: Fit Grid elements in Item

2012-09-25 Thread Marco Martin
On Mon, Sep 24, 2012 at 5:05 AM, Luiz Romário Santana Rios luizroma...@gmail.com wrote: Hello. I'm trying to port the Calculator plasmoid to QML, but I'm stuck trying to make the buttons fit their parent item. I'm doing this: take a look at the bettio/qml-gsoc-calculator branch, you should

Re: libplasma2 and Wallpaper

2012-09-25 Thread Marco Martin
On Tue, Sep 25, 2012 at 11:45 AM, Aaron J. Seigo ase...@kde.org wrote: as the current, the lifecycle of the qml wallpaper should depend if the view wants a wallpaper at all yes ... this is something that could remain present in the Containment API much as we done it in libplasma1 speaking of

Re: Fit Grid elements in Item

2012-09-25 Thread Luiz Romário Santana Rios
Em 25/09/2012 07:49, Sebastian Kügler se...@kde.org escreveu: On Monday, September 24, 2012 22:37:03 Luiz Romário Santana Rios wrote: And another thing: while this works for the width, the analogous code for the height (height: (grid.height / grid.rows) - grid.spacing) does this:

Re: Fit Grid elements in Item

2012-09-25 Thread Luiz Romário Santana Rios
Em 25/09/2012 08:44, Marco Martin notm...@gmail.com escreveu: On Mon, Sep 24, 2012 at 5:05 AM, Luiz Romário Santana Rios luizroma...@gmail.com wrote: Hello. I'm trying to port the Calculator plasmoid to QML, but I'm stuck trying to make the buttons fit their parent item. I'm doing this:

Re: Behavior on systray icon clicking

2012-09-25 Thread Sebastian Kügler
On Tuesday, September 25, 2012 14:37:45 Kåre Särs wrote: On Tuesday 25 September 2012 12:56:40 Aaron J. Seigo wrote: On Tuesday, September 25, 2012 13:33:11 Kåre Särs wrote: I have spacial memory this is a basic part of human cognitive abilities. even toddlers who can only crawl

Re: Fit Grid elements in Item

2012-09-25 Thread Sebastian Kügler
On Tuesday, September 25, 2012 12:42:58 Luiz Romário Santana Rios wrote: And also, are there more plasmoids which are not in that listing? The list *should* be complete. If you find anything that's not in there, please add it. -- sebas http://www.kde.org | http://vizZzion.org | GPG Key ID:

Re: Review Request: expand the theme package in order to include *.svgz files

2012-09-25 Thread Franz Fellner
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/106557/#review19401 --- Should't there be added image/svg+xml-compressed to the

Re: Git policy for kde-baseapps?

2012-09-25 Thread Frank Reininghaus
Hi, 2012/9/20 Luca Beltrame: In data giovedì 20 settembre 2012 09:53:53, Daniel Kreuter ha scritto: is already in the KDE 4.9 branch. Maybe we can regularly merge the latest stable branch into the master or next version branch, f.e. once a week? I'm not sure merging if once a week is really

Re: Plasma Wallpapers in QML

2012-09-25 Thread Aleix Pol
On Tue, Sep 25, 2012 at 1:49 PM, Marco Martin notm...@gmail.com wrote: On Tue, Sep 25, 2012 at 10:24 AM, Aleix Pol aleix...@kde.org wrote: There's some wallpaper that has mouse events already, I think it's mandelbrot or marble.. I can see if I can forward those events to the scene... OTOH, it

Re: Review Request: Fix wrong selection background rendering (visible e.g. with Plastique)

2012-09-25 Thread Commit Hook
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/106544/#review19427 --- This review has been submitted with commit

Re: Plasma Wallpapers in QML

2012-09-25 Thread Reza Shah
Hi I tried converting current color wallpaper to qml (painting is hybrid, some background type still painted in c++). I put in kde:scratch/rshah/colorwallpaperqml Regards, Reza ___ Plasma-devel mailing list Plasma-devel@kde.org