paragui-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [paragui-users] slow widget display


From: Alexander Pipelka
Subject: Re: [paragui-users] slow widget display
Date: Thu, 9 Jan 2003 23:31:12 +0100
User-agent: KMail/1.5

One opportunity would be to put your widgets into a fully transparent 
container.

e.g:
PG_Widget container(NULL, ...);
container.SetTransparency(255);

PG_Widget widget1(&container, ...);
PG_Widget widget2(&container, ...);

container.Show();
.
container.Hide();

Alex

Am Donnerstag, 9. Januar 2003 16:21 schrieb Keith Swyer:
> i've been working on a fairly large project using paragui and i've started
> noticing that when moving between screen, and loading new widgets that
> things are noticably displayed to the screen one after another and pretty
> slowly, instead of 'seemingly' all at once. i currently delete widgets not
> on the screen at a particular time then create them when needed again to
> keep the memory footprint smaller. is there any way to speed things up
> here? i'm also noticing that my animations are slowing and catching up
> sometimes. argh.
>
> --Keith





reply via email to

[Prev in Thread] Current Thread [Next in Thread]