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
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
>>
>
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
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
> 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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
__
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
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
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
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-
26 matches
Mail list logo