Re: Review Request: Prevent Plasma popups from showing over screensaver

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Chani wrote: > I'm still wondering... why does the existing screensaver restacking code > not work on these popups? hazarding a complete guess: because we mark the windows to be ignored by the window manager. and apparently that means no help, not even for the screensave

Re: how to use the cache-to-disk feature in Wallpaper

2009-04-10 Thread Benoit Jacob
Update: I hadn't seen revision 952060... very useful detail indeed! So there's no need for removeFromCache. Thanks, Benoit 2009/4/11 Benoit Jacob : > 2009/4/10 Aaron J. Seigo : >> On Friday 10 April 2009, Benoit Jacob wrote: >>> I did setUsingDiskCache(true); in the constructor, and I emit >> >

Re: how to use the cache-to-disk feature in Wallpaper

2009-04-10 Thread Benoit Jacob
2009/4/10 Aaron J. Seigo : > On Friday 10 April 2009, Benoit Jacob wrote: >> I did setUsingDiskCache(true); in the constructor, and I emit > > when you are ready to cache the image, you can now call: > > insertIntoCache(const QString& key, const QImage &image); > > and if you want to see if it exis

Re: Review Request: Prevent Plasma popups from showing over screensaver

2009-04-10 Thread Chani
On April 9, 2009 21:36:13 Lucas Murray wrote: > --- > This is an automatically generated e-mail. To reply, visit: > http://reviewboard.kde.org/r/546/#review890 > --- > > > Although the ol

Re: Review Request: Prevent Plasma popups from showing over screensaver

2009-04-10 Thread Aaron Seigo
> On 2009-04-09 21:36:18, Lucas Murray wrote: > > Although the old code also used the tool window type I would highly > > recommend against using the same technique again as it's only by chance > > that it does what it does and can be broken fairly innocently by both > > developers working on

Re: how to use the cache-to-disk feature in Wallpaper

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Benoit Jacob wrote: > I did setUsingDiskCache(true); in the constructor, and I emit when you are ready to cache the image, you can now call: insertIntoCache(const QString& key, const QImage &image); and if you want to see if it exists and retrieve it call: bool findInCa

Re: Systray jobs and notifications

2009-04-10 Thread Jamboarder
Aaron J. Seigo wrote > ... > so to be ++ verbose, this would give us (where N = notification, P = job in > progress, C = job completed): > > ScenarioText > -- > 3 N3 > 3 N, 2 P3/5 > 3 N, 1 C, 1 P4/5 > 1 C, 2 P1/3 > 2 P0

Re: Systray jobs and notifications

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Rob Scheepmaker wrote: > Still that doesn't make it any easier to interpret say '3/4' in front of a ah and if all are completed, then you can just say "N" instead of "N/N" ... so to be ++ verbose, this would give us (where N = notification, P = job in progress, C = job c

Re: Systray jobs and notifications

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Rob Scheepmaker wrote: > Still that doesn't make it any easier to interpret say '3/4' in front of a > spinner. to me it says "there are four things here, three of which are completed" notifications can therefore be viewed as jobs that completed in zero time. -- Aaron J.

Re: Snapshot of quicklaunch applet

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, you wrote: > Hi Aron, > > I am sending the snapshot of the quicklaunch applet. > http://imagebin.org/45059 > > In the constructor I had called kDebug() << "Foo Start" > and just after the resize(sizeHint(Qt::PreferredSize)) i had called another > kDebug() << "Bar see" in t

Re: Systray jobs and notifications

2009-04-10 Thread Rob Scheepmaker
On Friday 10 April 2009 18:58:53 Aaron J. Seigo wrote: > On Friday 10 April 2009, Rob Scheepmaker wrote: > > Well, the problem kind of is that the systray shows multiple things: > > running jobs and notifications, which are distinctively different. Still > > are they? > > both are communicating sys

Re: Mandelbrot progress, need Qt GUI help!

2009-04-10 Thread Benoit Jacob
2009/4/10 Aaron J. Seigo : > On Friday 10 April 2009, Benoit Jacob wrote: >> I allowed myself to remove the horiz spacer to the right of the >> KComboBox, letting it be horizontally expanded. >> Indeed (also to answer Andrew's question) my motivation was that the >> last items in this combo box cou

Re: Usability questions for Mandelbrot

2009-04-10 Thread Benoit Jacob
2009/4/10 Aaron J. Seigo : > On Friday 10 April 2009, Benoit Jacob wrote: >> 2) There are no hoverEnterEvent and hoverLeaveEvent methods in >> Wallpaper. So I tried reimplementing QObject::event() but it doesn't >> seem to ever get called: the following gives nothing, not even the >> mouse events t

Re: how to use the cache-to-disk feature in Wallpaper

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Benoit Jacob wrote: > I did setUsingDiskCache(true); in the constructor, and I emit > renderCompleted once my image has finished rendering, but that doesn't > make any difference. dang, i just KNEW someone would want to do this eventually ;P right now it's all pretty inte

Re: Usability questions for Mandelbrot

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Benoit Jacob wrote: > 1) There doesn't seem to be a QCursor::setCursor(). There is a > setCursor method in QWidget and in QApplication; how can i leverage > either? if (qApp) { qApp->setCursor(..); } > 2) There are no hoverEnterEvent and hoverLeaveEvent methods in > W

Re: Mandelbrot progress, need Qt GUI help!

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Benoit Jacob wrote: > I allowed myself to remove the horiz spacer to the right of the > KComboBox, letting it be horizontally expanded. > Indeed (also to answer Andrew's question) my motivation was that the > last items in this combo box could fail to fit in the given space

Re: Systray jobs and notifications

2009-04-10 Thread Aaron J. Seigo
On Friday 10 April 2009, Rob Scheepmaker wrote: > Well, the problem kind of is that the systray shows multiple things: > running jobs and notifications, which are distinctively different. Still are they? both are communicating system or application status to the user; both might offer interactio

Re: Systray jobs and notifications

2009-04-10 Thread Rob Scheepmaker
On Friday 10 April 2009 17:50:54 Marco Martin wrote: > On Friday 10 April 2009, Rob Scheepmaker wrote: > > I've been doing some more thinking about this: what about splitting this > > up in 2 icons? One "i" icon with a number that shows the total amount of > > notifications, and the spinner with a

Re: Systray jobs and notifications

2009-04-10 Thread Marco Martin
On Friday 10 April 2009, Rob Scheepmaker wrote: > On Tuesday 07 April 2009 03:04:32 Aaron J. Seigo wrote: > > On Monday 06 April 2009, Celeste Lyn Paul wrote: > > > On Monday 06 April 2009 08:01:16 pm Aaron J. Seigo wrote: > > > > On Monday 06 April 2009, Rob Scheepmaker wrote: > > > > > On Monday

Re: akonadi engine checkout

2009-04-10 Thread Sebastian Kügler
Hi David, Please keep replies on the list. In this case, you would most likely already have received an answer. My personal mailbox is almost always slower, and we tend to do stuff in the open. On Friday 10 April 2009 09:52:47 you wrote: > I cannot get on to > svn+ssh://svn.kde.org/home/kde/tru

Re: Systray jobs and notifications

2009-04-10 Thread Rob Scheepmaker
On Tuesday 07 April 2009 03:04:32 Aaron J. Seigo wrote: > On Monday 06 April 2009, Celeste Lyn Paul wrote: > > On Monday 06 April 2009 08:01:16 pm Aaron J. Seigo wrote: > > > On Monday 06 April 2009, Rob Scheepmaker wrote: > > > > On Monday 06 April 2009 19:02:58 Aaron J. Seigo wrote: > > > > > wha

how to use the cache-to-disk feature in Wallpaper

2009-04-10 Thread Benoit Jacob
Hi, I think Mandelbrot is a good candidate for cache-to-disk, however, how do i enable this feature? I did setUsingDiskCache(true); in the constructor, and I emit renderCompleted once my image has finished rendering, but that doesn't make any difference. Thanks, Benoit __

Re: Usability questions for Mandelbrot

2009-04-10 Thread Benoit Jacob
2009/4/10 Aaron J. Seigo : > On Thursday 09 April 2009, Benoit Jacob wrote: >> 2009/4/9 Aaron J. Seigo : >> > QCursor::setCursor? >> >> ah, thanks! >> >> > i wonder if the hoverOut events are accurate enough for that though.. >> > hm.. >> >> i can't seem to find any hoverEvents in the Wallpaper cla

Re: Mandelbrot progress, need Qt GUI help!

2009-04-10 Thread Benoit Jacob
2009/4/10 Aaron J. Seigo : > it's because you didn't put a layout in the widget itself. to do so in > designer: > > * click on the background > * select a layout from the toolbar > > this is equivalent to: > > QWidget *topLevelWidget  = new QWidget(this); > QGridLayout *layout = new QGridLayout(top

Re: Mandelbrot progress, need Qt GUI help!

2009-04-10 Thread Benoit Jacob
2009/4/10 Benoit Jacob : > One question -- you made the ColorButtons be both horizontally and > vertically expandable, is that wanted? looking at other wallpapers, > this isn't how they do (though i have packages from a few days ago). Nevermind -- that was the behavior in Designer, but in the app

Snapshot of quicklaunch applet

2009-04-10 Thread sujith h
Hi Aron, I am sending the snapshot of the quicklaunch applet. http://imagebin.org/45059 In the constructor I had called kDebug() << "Foo Start" and just after the resize(sizeHint(Qt::PreferredSize)) i had called another kDebug() << "Bar see" in the method refactorUi(). Even if I change m_timer-