Re: My SoK project - Plasma D-Bus API

2009-05-28 Thread Gökmen GÖKSEL
On Wednesday 27 May 2009 14:25:18 Aaron J. Seigo wrote: > On Tuesday 26 May 2009, Ivan Čukić wrote: > > - containment handling > > - listing, adding (? + signal?), removing > > - wallpaper :) - panel position - plasma theme ;) -- Gökmen GÖKSEL Pardus Developer signature.asc Description:

Translating scripted applets

2009-05-28 Thread Petri Damstén
Hi, Continuing testing python applets and trying to get translations working. I tried contents/locale/fi/LC_MESSAGES/pluginname.mo but it didn't work before I added following code. Is this correct fix or should I use something else for po file names? Petri Index: applet.cpp @@ -2271,6 +2275,7

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Gökmen GÖKSEL
On Friday 29 May 2009 03:43:37 Aaron J. Seigo wrote: > in which case an API like this: > > Animation a(item); > a.add(animator.fadeIn()); > Animation b; > b.setParallel(true); > b.add(animator.blur(0.8)); > b.add(animator.bounce(4)); > a.add(b); > a.addPause(10); // a.add(animator.pause(10));? > a.

Re: Photobox plasmoid

2009-05-28 Thread Reza Shah
Please try http://www.box.net/shared/a3m5rdex5m It still pretty basic. Only capture image. I grab the icon from net, so if some body has better icons please let me include to this plasmoid. Suggestion welcome, especially how to provide better animation. Reza ___

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Akmanalp, Mehmet A wrote: > On Thu, May 28, 2009 at 9:38 PM, Aaron J. Seigo wrote: > > Animation *a = Animator::fadeIn(item); > > Animation *b = Animator::add(a, Animator::bounce(item, timesToBounce)); > > a = Animator::while(b, Animator::blur(item, amount)); > > Animator:

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Sebastian Kügler
On Thursday 28 May 2009 21:10:07 Aaron J. Seigo wrote: > On Thursday 28 May 2009, Chani wrote: > > On May 28, 2009 11:09:08 Aaron J. Seigo wrote: > > > On Thursday 28 May 2009, Chani wrote: > > > > > > PS: By the way, there is a bug about time configuration. By > > > > > > default, update interval

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
On Fri, May 29, 2009 at 12:20 AM, Alexis Ménard wrote: > What about trying to achieve that with the actual grammar that is in dui, > the curly brace based language?? Check out the whole aseigo / ivan conversation above. ~ mali (http://constant.inople.net/) _

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
> Even if we don't create a whole new language as Ivan proposes, we > could imitate it in the name of ease of use: > > Animator a; > a.animate(item, > a.series( > a.fadeIn(), > a.parallel( > a.blur(amount, time), > a.series( > a.bounce(timesToBounce), > a.flip() >

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Alexis Ménard
What about trying to achieve that with the actual grammar that is in dui, the curly brace based language?? On Thu, May 28, 2009 at 11:14 PM, Akmanalp, Mehmet A wrote: > On Thu, May 28, 2009 at 9:38 PM, Aaron J. Seigo wrote: > > Animation *a = Animator::fadeIn(item); > > Animation *b = Animator::

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
On Thu, May 28, 2009 at 9:38 PM, Aaron J. Seigo wrote: > Animation *a = Animator::fadeIn(item); > Animation *b = Animator::add(a, Animator::bounce(item, timesToBounce)); > a = Animator::while(b, Animator::blur(item, amount)); > Animator::add(a, Animator::fadeOut(item)); > // auto starts when event

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
> > And, Trolls are already making declarative UI, so this would go perfectly > > alongside that. > > that's actually a concern of mine; we're already going to be getting a DUI > at some point, not sure we want to create a "simple DUI" of our own. You're probably right, we should wait for DUI to

Re: Fwd: Some explanations/suggestion on plasmate

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Artur Souza(MoRpHeUz) wrote: > > there is no such thing as a file in the Plasma::Package that isn't part > > of the Plasma::Package, so i don't think this would do anything other > > than make another step that the user has to do and can get wrong (by > > forgetting) > > I

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Ivan Čukić wrote: > > neat idea; would require a small parser on our side, but it wouldn't be > > an overly complex one. what would the benefits be? > > - simpler syntax - no need to do addAnimation(blah blah) for each > /animation atom/ > - no need to pass the item variabl

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Ivan Čukić wrote: > yet another one > - that could make, for example, feedback when the user clicks an IconWidget > themable. Aya could use the standard nudge 2px bottom right, while some > other theme could use the bounce effect. these are already themable, really. nobody

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
yet another one - that could make, for example, feedback when the user clicks an IconWidget themable. Aya could use the standard nudge 2px bottom right, while some other theme could use the bounce effect. ___ Plasma-devel mailing list Plasma-devel@kde.o

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
> neat idea; would require a small parser on our side, but it wouldn't be an > overly complex one. what would the benefits be? - simpler syntax - no need to do addAnimation(blah blah) for each /animation atom/ - no need to pass the item variable to be animated into every animation atom (Animator

Re: Fwd: Some explanations/suggestion on plasmate

2009-05-28 Thread Artur Souza(MoRpHeUz)
On Thursday 28 May 2009, 16:18 Aaron J. Seigo wrote: > i'd rather see us use something that already exists as well, be that vng or > whatever is used in QtCreator or, and this is my personal favourite btw, > the git plugin in kdevplatform which already has what we need implemented. Yes, that was m

Re: Fwd: Some explanations/suggestion on plasmate

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Diego Casella ([Po]lentino) wrote: > On Thursday 28 May 2009, 07:34 you wrote: > > a class declaration ). So, I was wondering if could I continue on > > riccardo code, adding all the basical function needed ( such as > > init,clone, pull, diff, apply, status, checkout and c

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Ivan Čukić wrote: > > the question is how to expose this in the API. > > Maybe it could be exposed via some kind of declarative syntax (as far as > script languages are concerned)? neat idea; would require a small parser on our side, but it wouldn't be an overly complex o

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Chani wrote: > On May 28, 2009 11:09:08 Aaron J. Seigo wrote: > > On Thursday 28 May 2009, Chani wrote: > > > > > PS: By the way, there is a bug about time configuration. By > > > > > default, update interval of digital-clock plasmoid is 60 seconds > > > > > when showSecond

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread David Nolden
Am Donnerstag 28 Mai 2009 17:54:24 schrieb Aaron J. Seigo: > > PS: By the way, there is a bug about time configuration. By default, > > update interval of digital-clock plasmoid is 60 seconds when showSeconds > > is false, and 1 second if it's true. If you change time from clock kcm > > and showSec

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
> the question is how to expose this in the API. Maybe it could be exposed via some kind of declarative syntax (as far as script languages are concerned)? For an example Animator::animate(item, " fadeIn() parallel { blur(amount, time) serial { bounce(timesToBounce

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Chani
On May 28, 2009 11:09:08 Aaron J. Seigo wrote: > On Thursday 28 May 2009, Chani wrote: > > > > PS: By the way, there is a bug about time configuration. By default, > > > > update interval of digital-clock plasmoid is 60 seconds when > > > > showSeconds is false, and 1 second if it's true. If you ch

Fwd: Some explanations/suggestion on plasmate

2009-05-28 Thread Diego Casella ([Po]lentino)
Well, I forwarded the message I sent today to morpeuz about some ideas on plasmate. Take a look, then tell me what you think about =) -- Forwarded message -- From: Artur Souza(MoRpHeUz) Date: 2009/5/28 Subject: Re: Some explanations/suggestion on plasmate To: "Diego Casella ([Po]l

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Alexis Ménard wrote: > > doseries(fadein, doparallel(bounce, blur), fadeout) > > That is what QSequentialAnimationGroup is doing... the question is how to expose this in the API. there are two use cases here .. there's "fire and forget" and "define and run later". in th

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Gökçen Eraslan wrote: > I've said "it was in KDE3" because I see this as some kind of a usability > regression. I mean, if you can configure time by right clicking the clock > itself in KDE3 and now, you have to go through Menu->"System > Settings"->"Date and Time" path to

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
2009/5/28 Alexis Ménard : >> doseries(fadein, doparallel(bounce, blur), fadeout) > That is what QSequentialAnimationGroup is doing... Yeah, and QParallelAnimationGroup, but what I mean is, do we want to use it in libplasma? Or do we just have a set bunch of animations and don't allow for combinatio

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Chani wrote: > > > PS: By the way, there is a bug about time configuration. By default, > > > update interval of digital-clock plasmoid is 60 seconds when > > > showSeconds is false, and 1 second if it's true. If you change time > > > from clock kcm and showSeconds is false

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
2009/5/28 Ivan Čukić : > OK, I think I've misunderstood you. You already meant to have the effects > animated? (take flip for an example - it would animate the flip, not just show > the item flipped, right?) Yup! :) Although I guess this brings up another question: do we want transitions without an

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Alexis Ménard
On Thu, May 28, 2009 at 7:35 PM, Akmanalp, Mehmet A wrote: > 2009/5/28 Ivan Čukić : > > One effect that I would need, that would be an extension of > grow/shrink/scale > > is grow/shrink/scale while moving. > > Alternatively, you could make a simple move transition which could be > combined > > wi

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
> doseries(fadein, doparallel(bounce, blur), fadeout) > > would fade in, bounce and blur at the same time, and fade out. Or do > we not need this at this point? I think this would be a cool thing to have. But I don't know whether we really need it. (except for the specific feature that I mentione

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
2009/5/28 Ivan Čukić : > One effect that I would need, that would be an extension of grow/shrink/scale > is grow/shrink/scale while moving. > Alternatively, you could make a simple move transition which could be combined > with g/s/s to achieve the desired effect. On this, do you think instead of h

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Gökçen Eraslan
Perşembe 28 May 2009 günü (saat 18:54:24) Aaron J. Seigo şunları yazmıştı: > On Thursday 28 May 2009, Gökçen Eraslan wrote: > > A patch for $subject is attached. This was the default behaviour in KDE3, > > now users have to open systemsettings to configure date/time. > > the "it was in KDE3" argume

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Chani
> > PS: By the way, there is a bug about time configuration. By default, > > update interval of digital-clock plasmoid is 60 seconds when showSeconds > > is false, and 1 second if it's true. If you change time from clock kcm > > and showSeconds is false, digital-clock applet refreshes itself 1 min

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
On Thu, May 28, 2009 at 7:04 PM, Aaron J. Seigo wrote: > if you need an SVN account, don't hesitate to get one: Whoops, forgot to check that one out, I got one yesterday on your recommendation on IRC (makmanalp). > for instance, there's no "flip" in your list, though that's a natural effect > to

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Ivan Čukić
Hi, One effect that I would need, that would be an extension of grow/shrink/scale is grow/shrink/scale while moving. That is, a widget has a current geometry (QRectF), and I want a smooth transition to another geometry. Alternatively, you could make a simple move transition which could be combi

Re: Review Request: Fix krunner issues with TAB

2009-05-28 Thread Aaron Seigo
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.kde.org/r/775/#review1218 --- Ship it! the whitespace/alignment in the eventFilter of the new class

Re: KDE/kdebase/workspace/plasma/applets/systemtray/protocols/fdo

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Casper Clemence wrote: > hmmm... there must be a design pattern that achieves this elegantly > with no extra overhead... maybe Pixmap bg = XCreatePixmap(display, clientWinId(), width(), height(), d- >attr.depth); XPixmapJanitor janitor(bg); XPixmapJanitor would do the ne

Re: Review Request: Fix krunner issues with TAB

2009-05-28 Thread Jacopo De Simoi
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.kde.org/r/775/ --- (Updated 2009-05-28 09:07:51.068321) Review request for Plasma and Aaron Seigo.

Re: Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Akmanalp, Mehmet A wrote: > Hello All, > I'm the gsoc guy who's working on integrating QT Kinetic effects into > libplasma. Here's a preliminary project plan and a roadmap: > http://docs.google.com/View?id=dfscskwm_121fdhzq7dn cool; welcome to plasma :) i really look forwa

Review Request:

2009-05-28 Thread Jacopo De Simoi
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.kde.org/r/775/ --- Review request for Plasma and Aaron Seigo. Summary --- Krunner has some issu

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Gökçen Eraslan wrote: > A patch for $subject is attached. This was the default behaviour in KDE3, > now users have to open systemsettings to configure date/time. the "it was in KDE3" argument is meaningless. either a feature is good and desirable, in which case it stands

Re: Plasma & Netbook

2009-05-28 Thread Aaron J. Seigo
On Thursday 28 May 2009, Marco Martin wrote: > here the problem is that applets would steal mouse events? > no idea if there is a reliable way to chose between delivering events only > to the view/containment or to the applet? qgraphicsview does give us the ability to control it, depending on what

Re: KDE/kdebase/workspace/plasma/applets/systemtray/protocols/fdo

2009-05-28 Thread Casper Clemence
hmmm... there must be a design pattern that achieves this elegantly with no extra overhead... maybe If there are certain actions that need to be performed at whatever the function was exited. If only it were possible to define (private) classes locally that had access to local variables as if they

Re: Code snippet review for plasmate

2009-05-28 Thread Artur Souza(MoRpHeUz)
On Thursday 28 May 2009, 03:43 Shantanu Tushar Jha wrote: > I tried a lot to find what the problem is, but couldn't get a solution. API > page on KService says - > *parentWidget* A parent widget for the service. This is used e. g. for > parts But, I'm not sure what do I have to pass as parentWidget

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread dantti85-dev
>> PS: By the way, there is a bug about time configuration. By default, update >> interval of digital-clock plasmoid is 60 seconds when showSeconds is false, >> and 1 second if it's true. If you change time from clock kcm and >> showSeconds is false, digital-clock applet refreshes itself 1 minute

Re: Plasma & Netbook

2009-05-28 Thread Marco Martin
On Thursday 28 May 2009, Aaron J. Seigo wrote: > On Wednesday 27 May 2009, Artur Souza(MoRpHeUz) wrote: > > On Wednesday 27 May 2009, 14:53 you wrote: > > > hmm, i think a scrollbar is fine since a netbook is still quite > > > mouse/touchpad based (regardless if it has a touchscreen or not) > > > >

Re: Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Marco Martin
On Thursday 28 May 2009, Gökçen Eraslan wrote: > Hi, > > A patch for $subject is attached. This was the default behaviour in KDE3, > now users have to open systemsettings to configure date/time. > > Any reviews, comments? could make sense i miss that feature too... however it will have to wait sin

Qt Kinetic + Plasma Call For Ideas / Project Plan

2009-05-28 Thread Akmanalp, Mehmet A
Hello All, I'm the gsoc guy who's working on integrating QT Kinetic effects into libplasma. Here's a preliminary project plan and a roadmap: http://docs.google.com/View?id=dfscskwm_121fdhzq7dn Basically, what we want is a simplified set of effects and animations that Plasma developers can use with

Configuring time and date from context menu of digital-clock applet

2009-05-28 Thread Gökçen Eraslan
Hi, A patch for $subject is attached. This was the default behaviour in KDE3, now users have to open systemsettings to configure date/time. Any reviews, comments? PS: By the way, there is a bug about time configuration. By default, update interval of digital-clock plasmoid is 60 seconds when s

Re: Photobox plasmoid

2009-05-28 Thread SUJITH H
> Hi, > > I'm developing a plasmoid to take photo or record video using > available webcam. > The plasmoid name is Keren. > It's indonesian means Cool :) > > Cool :) Awaiting for getting that plasmoid in our trunk :) Sujith H ___ Plasma-devel mailing