Re: PlasmaToolTipManager with Python

2009-02-19 Thread Ricardo
Thanks... I did what you said, but now it says this: Plasma.ToolTipManager.self().registerWidget(self) TypeError: argument 1 of ToolTipManager.registerWidget() has an invalid type and without Plasma.ToolTipManager.self().registerWidget(self)

Re: Review Request: Display correct week number in the calendar widget

2009-02-19 Thread Andras Mantia
On 2009-02-18 11:22:20, Aaron Seigo wrote: the week # should be calculated properly according to the region settings. adding the weekday is going to cause layouting problems (which you've already run into :) and just be rather confusing. on the other hand, it makes international

Re: Tokamak III in Switzerland

2009-02-19 Thread Mario Fux
Am Mittwoch, 18. Februar 2009 schrieb Aaron J. Seigo: On Monday 16 February 2009, Mario Fux wrote: Good morning Aaron, Chani and Co So let's go concrete: - Is there still interest (see my mails last year about the details of my offering)? absolutely. Great. - Add your preferences

Re: Plasma Automator

2009-02-19 Thread Dario Freddi
Sorry for the late reply, life can get busy sometimes :\ In data lunedì 16 febbraio 2009 19:21:04, hai scritto: why would i want it to switch to that activity when i start a torrent? the assumption is that starting a torrent means i want to watch it versus do what i was doing otherwise? it

Re: PlasmaToolTipManager with Python

2009-02-19 Thread Benjamin Kleiner
On Thursday, 19. February 2009 11:14:57 Ricardo wrote: Thanks... I did what you said, but now it says this: Plasma.ToolTipManager.self().registerWidget(self) TypeError: argument 1 of ToolTipManager.registerWidget() has an invalid type and without

Re: discrepancy in python bindings for plasma

2009-02-19 Thread Thomas Coopman
I have been running in the same problem and have looked a bit at the code and it looks like createConfigurationInterface is not in AppletScript so there are some changes needed to solve this. But if it is possible to use showConfiguration and get the same dialog I would like to know how too.

Re: Open source user experience

2009-02-19 Thread Michael Rudolph
2009/2/18 Aaron J. Seigo ase...@kde.org: On Tuesday 17 February 2009, Michael Rudolph wrote: So we could just be happy that everybody likes us (well, besides ourselves, designers seem to like us :-), but we could also think about some kind of outreach program, with which we try to bring both

Re: New systemtray: beginnings and how to do

2009-02-19 Thread Marco Martin
On Wednesday 18 February 2009, Aaron J. Seigo wrote: ok, so we don't need a subclass of ksystemtrayicon, but something with roughly the same api, i'm going a bit blindly there because i still never looked at both KSystemTrayIcon and QSystemTrayIcon if you want to focus on the plasma

Re: New systemtray: beginnings and how to do

2009-02-19 Thread Aaron J. Seigo
On Thursday 19 February 2009, Marco Martin wrote: On Wednesday 18 February 2009, Aaron J. Seigo wrote: ok, so we don't need a subclass of ksystemtrayicon, but something with roughly the same api, i'm going a bit blindly there because i still never looked at both KSystemTrayIcon and

Re: [PATCH] To make Plasma Applet System Monitor - Network to display interface names above graphs.

2009-02-19 Thread Aaron J. Seigo
On Thursday 19 February 2009, Shantanu Jha wrote: The attached patch applies to the directory kdebase/workspace/plasma/applets/system-monitor of trunk. can you provide a screenshot as well? for patches that touch visible UI, we encourage providing a screenshot as well. it allows those who

Re: Review Request: Prevent resizing panel vertically from breaking the desktop (or bleeding over into positive coords)

2009-02-19 Thread wilderkde
On 2009-02-18 13:24:30, Aaron Seigo wrote: it's an interesting hint as to the problem, but the code is in completely the wrong place. this fix needs to be in Containment, not a specific View subclass. Aaron Seigo wrote: can you try this patch:

Re: discrepancy in python bindings for plasma

2009-02-19 Thread Aaron J. Seigo
On Thursday 19 February 2009, Benjamin Kleiner wrote: I have played around with the python bindings for plasma, and I noticed that the config dialog can't be hijacked, so my question to you is, why do you want to do this? since plasmascript.Applet.createConfigurationInterface() won't get

Re: New systemtray: beginnings and how to do

2009-02-19 Thread Marco Martin
On Thursday 19 February 2009, Aaron J. Seigo wrote: On Thursday 19 February 2009, Marco Martin wrote: On Wednesday 18 February 2009, Aaron J. Seigo wrote: ok, so we don't need a subclass of ksystemtrayicon, but something with roughly the same api, i'm going a bit blindly there because i

Re: 4.3 feature plan

2009-02-19 Thread Aaron J. Seigo
On Wednesday 18 February 2009, Sebastian Kügler wrote: The battery applet for example loads another battery applet (without the popup) into the popup. it doesn't do so via Applet::load, however. it simply creates a new instance of a class it already has. you'll also note that it causes some

Re: SoConcepts

2009-02-19 Thread Aaron J. Seigo
On Wednesday 18 February 2009, Chani wrote: * savable containments: save / restore to file individual containments or entire layouts; both locally for later restoration as well as external export for sharing with others. is this really enough work for a soc project? if the nice way to

Re: [PATCH] To make Plasma Applet System Monitor - Network to display interface names above graphs.

2009-02-19 Thread Shantanu Jha
1. Please find the screenshot here http://www.shantanutushar.com/screenshots/plasmoid_sm_net.jpg . 2. Though I think It looks good, but still, the user should be free to decide on it. 3. I've uploaded the backtrace at http://www.shantanutushar.com/plasmoidviewer.kcrash . I was running the latest

Re: PlasmaToolTipManager with Python

2009-02-19 Thread Ricardo
Thanks a lot Benjamin, now it runs without complaining but when i pass the mouse over the applet it doesn't show the tooltip :( is there any other thing i should do? thanks in advance 2009/2/19 Benjamin Kleiner bizzl.greek...@web.de: On Thursday, 19. February 2009 11:14:57 Ricardo wrote:

Re: SoConcepts

2009-02-19 Thread Chani
On February 19, 2009 12:26:10 Aaron J. Seigo wrote: On Wednesday 18 February 2009, Chani wrote: * savable containments: save / restore to file individual containments or entire layouts; both locally for later restoration as well as external export for sharing with others. is this

Re: PlasmaToolTipManager with Python

2009-02-19 Thread Benjamin Kleiner
On Thursday, 19. February 2009 22:36:08 Ricardo wrote: Thanks a lot Benjamin, now it runs without complaining but when i pass the mouse over the applet it doesn't show the tooltip :( is there any other thing i should do? Implementing it in hoverMoveEvent did the trick for me. def

Re: discrepancy in python bindings for plasma

2009-02-19 Thread Aaron J. Seigo
On Thursday 19 February 2009, Benjamin Kleiner wrote: On Thursday, 19. February 2009 16:55:38 Thomas Coopman wrote: I have been running in the same problem and have looked a bit at the code and it looks like createConfigurationInterface is not in AppletScript so there are some changes

Re: SoConcepts

2009-02-19 Thread Alessandro Diaferia
2009/2/19 Aaron J. Seigo ase...@kde.org On Thursday 19 February 2009, Chani wrote: On February 19, 2009 12:26:10 Aaron J. Seigo wrote: On Wednesday 18 February 2009, Chani wrote: * savable containments: save / restore to file individual containments or entire layouts; both

Re: Review Request: [Pager] Add different actions when user click on the current desktop

2009-02-19 Thread Loïc Marteau
Hello ! Any tough on this patch for the pager ? I can discard the review if you think that this feature is not interesting, it's not a problem... Cheers Loic On Mon, Feb 9, 2009 at 5:46 PM, Loic Marteau loic.mart...@gmail.com wrote: ---

Re: Review Request: [Pager] Add different actions when user click on the current desktop

2009-02-19 Thread Aaron Seigo
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.kde.org/r/30/#review182 --- Ship it! - Aaron On 2009-02-09 08:46:19, Loic Marteau wrote: