Re: gtk installation err / libjpeg ?

2003-07-22 Thread Olaf Frczyk
On Tue, 2003-07-22 at 17:39, Vidhya CS wrote: hi , I am trying to install gtk , while running the ./configure , it says jpeg loader not found , I have installed libjpeg and LD_LIBRARY_PATH is pointing to those libs . the error am getting is : WARNING: *** JPEG loader will not be built

Re: gtk2 win32 and default font

2003-07-02 Thread Olaf Frczyk
On Wed, 2003-07-02 at 11:56, Sven Neumann wrote: Hi, Kiyoshi TAKAHASHI [EMAIL PROTECTED] writes: That's strange because when I use this, the font is not changed and I have the error message: assertion GDK_IS_COLORMAP(colormap) failed. Up to now, I still wasn't able to change the

Re: Fuzzy fonts under 2.2.2?

2003-06-25 Thread Olaf Frczyk
On Tue, 2003-06-24 at 23:31, Soeren Sandmann wrote: Ie. antialias, but only when the size is below 8 or above 14. This is an approximation on what windows does. Windows uses extra information in the fonts about when to antialias that is unfortunately not available though FreeType. Could you

Re: GTK-WIDGET-SET-DEFAULT-STYLE

2003-06-18 Thread Olaf Frczyk
On Wed, 2003-06-18 at 09:51, Kiyoshi TAKAHASHI wrote: When I use gtk_widget_set_default_style(style) I have the error: undefined reference to 'gtk_widget_set_default_style' ?!! How is it possible? Is this method has disappeared in gtk2.2? Yes. It disappeared in 2.0 :( has this method been

Re: TreeView speedup

2003-03-28 Thread Olaf Frczyk
On Mon, 2003-03-24 at 11:41, Andrew E. Makeev wrote: Good day, I would to ask if someone got TreeView widget filling in speed really improved? On our side we made 2 improvements: 1. Added function in GTK that fills TreeModel row with values stored in GList. Test case: 1 rows

RE: TreeView speedup

2003-03-28 Thread Olaf Frczyk
On Fri, 2003-03-28 at 12:04, [EMAIL PROTECTED] wrote: Can't you just freeze and unfreeze the TreeView somehow when adding lots of rows? Please take a look at speeding up GtkTreeView? thread on gtk-app-devel from 11 Feb 2003. There were also discussion about it last year, but I don't remember

How long GtkCList will be available in GTK 2.xx ?

2003-02-13 Thread Olaf Frczyk
Hi, GtkTreeView is useless for applications inserting more than a few rows, because it is too slow. The only solution is to use GtkCList. But the GtkCList widget is deprecated. So I don't know what to do :(( I don't want to find out that it suddenly disappeared, and I have to rewrite a part of my

Re: GtkTreeView - why so SLOW?

2002-06-26 Thread Olaf Frczyk
On Wed, 2002-06-26 at 13:13, S. Eken wrote: Hi Olaf, as I already posted under the subjects Strange behaviour of scrollbars in GTK 2.0 and GTK 2.0 5 times slower than 1.2 in gtk-devel-list I experienced a dramatic decrease in performace and a similar increase in CPU usage, BUT (!!!) the

Re: GtkTreeView - why so SLOW?

2002-06-26 Thread Olaf Frczyk
On Wed, 2002-06-26 at 14:09, Olivier Fourdan wrote: Could this be related to double buffering in GTK+-2.0 ? The fact that the CPU is taken on the X server machine might be because the X server has to manage the buffering. But I noticed, that scrolling CList with GTK 2.0 eats 2 times more CPU

GtkTreeView - why so SLOW?

2002-06-24 Thread Olaf Frczyk
Hi All, Inserting rows in TreeView takes much time, and eats a lot of processor time. The TreeView is inserted into a scrolled Window. When I use the ruler to go up to the list and down, the CPU usage is about 50-60 percent on Duron 1GHz. I use ListStore, and I'm inserting about 5000 rows and I

Re: GtkTreeView - why so SLOW?

2002-06-24 Thread Olaf Frczyk
On Mon, 2002-06-24 at 12:01, Sven Neumann wrote: Hi, is your ListStore sorting? I've discovered a similar problem and found that inserting lots of rows into a sorted store is very slow. This Thank you for reply. No, it's not sorting. I get data sorted on database side. But I found, that CList

Cannot install pango-1.0.3 form rpms from ftp.gtk.org

2002-06-18 Thread Olaf Frczyk
Hi, The problem is as above. ftp://ftp.gtk.org/pub/gtk/v2.0/binary/RedHat-7.3/. This problem is because pango is linked against libXft.so.2. Maybe there is a reason to do it, but then it shouldn't be placed in RH7.3 directory. Regards, Olaf Fraczyk

Re: gtk_ctree_insert_node - why so slow?

2001-11-15 Thread Olaf Frczyk
On 2001.11.14 17:04:04 +0100 Olaf Frczyk wrote: Hi, As I found inserting 6000 nodes takes 4.5 second (+/- 100 msec) on Celeron 466 with no load. Oh, I found whats happening. If sibling == NULL this takes so much time. If sibling != NULL it takes 0.065 second. Anyone has idea why

Re: gtk_ctree_insert_node - why so slow?

2001-11-15 Thread Olaf Frczyk
On 2001.11.15 13:50:54 +0100 John Cupitt wrote: Hi Olaf, could you post a test program that shows this bad behaviour? It'll save us each making one :-) (maybe you have auto_sort turned on? turn it off, insert 6000 times, then turn it on again) Hi, Of course it's not turned on. As you

gtk_ctree_insert_node - why so slow?

2001-11-14 Thread Olaf Frczyk
Hi, As I found inserting 6000 nodes takes 4.5 second (+/- 100 msec) on Celeron 466 with no load. I include a sample function below. It's rather strange, because in 'balsa' (every one knows - mail client) it takes about the same time for the same number of nodes. But in 'pan' (newsreader) a