Re: frozen GUI!!! urgent help required!

2002-03-13 Thread RevX
Hello all, while(g_main_iteration(FALSE)) did help!!! That's great. Anyway, I think I'll go the multithreaded approach (more elegant and 'clean'). Just takes more time... Thanks to you all for the fast replies and given help!!! Many cheers, Michael. -- GMX - Die Kommunikationsplattform im

set attributes to rows in GtkTreeView

2002-03-13 Thread Bernd Demian
Hi all, thanks for the gtk-version, great job btw I have one question, one bug and one suspicion. First the question: Can somebody show me a simple way to change the color of one or more rows in GtkTreeView. In CList it was simple to use the function gtk_clist_set_background. Second the bug :

Re: Max value set for slider is not actual max value in use.

2002-03-13 Thread Rasmus Hahn
On Tue, Mar 12, 2002 at 01:43:35PM -0800, Christian Seberino wrote: Your suggestion makes perfect sense to me. It seems like that *must* be what is wrong. Yet I checked my code and can't see it #define INI_N_MASSES 1 #define MIN_N_MASSES 1 #define MAX_N_MASSES 2048 #define

Re: reverse function to g_flags_register_static()

2002-03-13 Thread Oliver Singla
Never mind... It seems that the next code works: GFlagsClass *eclass; GFlagsValue *values; GType etype = gdk_event_mask_get_type(); eclass = G_FLAGS_CLASS (g_type_class_ref (etype)); values = eclass-values; Oliver Singla wrote: In GTK 2.0:

Re: set attributes to rows in GtkTreeView

2002-03-13 Thread Havoc Pennington
Bernd Demian [EMAIL PROTECTED] writes: First the question: Can somebody show me a simple way to change the color of one or more rows in GtkTreeView. In CList it was simple to use the function gtk_clist_set_background. I don't think there is one. What's the application? You probably have

ref_count

2002-03-13 Thread Deborah Swayne
Is it appropriate to look at a gobject's ref_count, or is that supposed to be private? I've been keeping track of its value whenever I deliberately increment or decrement it, but the code makes it look as though I'm doing something improper -- and likely to be disabled. Is there some equivalent

VDK/VDKBuilder 2.0.0 released

2002-03-13 Thread mario motta
VDK Team is proud to announce that: === VDK and VDKBuilder version 2.0.0 is now available at: http://vdkbuilder.sourceforge.net following downloads link. Also vdkxdb-2 (a VDK wrapper of xbase library ) is available on the same site. Release notes: ==

Re: Sockets

2002-03-13 Thread Chris Nystrom
On Tue, 12 Mar 2002, Paul Davis wrote: GTK is a toolkit for creating graphical user interfaces. It has nothing to do with sockets or other IPC mechanisms, though it has some builtin support to make integrating I/O handling a little simpler. I think you need to look at another library that is

Pango 1.0.0 patch

2002-03-13 Thread Alberto Manuel Brandão Simões
Well, this is not right a 1.0.0 patch, but a Current cvs patch. These were the changes I need to build Pango without problems on a Slackware 8 installation. Regards, your's Alberto Simões -- Alberto Simoes ? _ Index: modules/arabic/Makefile.am

Re: Pango 1.0.0 patch

2002-03-13 Thread Owen Taylor
Alberto Manuel Brandão Simões [EMAIL PROTECTED] writes: Well, this is not right a 1.0.0 patch, but a Current cvs patch. These were the changes I need to build Pango without problems on a Slackware 8 installation. Can you explain why you needed to make these changes? Thanks,

Re: Pango 1.0.0 patch

2002-03-13 Thread Alberto Manuel Brandão Simões
On Wed, 2002-03-13 at 19:47, Owen Taylor wrote: Alberto Manuel Brandão Simões [EMAIL PROTECTED] writes: Well, this is not right a 1.0.0 patch, but a Current cvs patch. These were the changes I need to build Pango without problems on a Slackware 8 installation. Can you explain

Re: ref_count

2002-03-13 Thread Owen Taylor
Deborah Swayne [EMAIL PROTECTED] writes: Is it appropriate to look at a gobject's ref_count, or is that supposed to be private? I've been keeping track of its value whenever I deliberately increment or decrement it, but the code makes it look as though I'm doing something improper -- and

Re: Pango 1.0.0 patch

2002-03-13 Thread Owen Taylor
Alberto Manuel Brandão Simões [EMAIL PROTECTED] writes: On Wed, 2002-03-13 at 19:47, Owen Taylor wrote: Alberto Manuel Brandão Simões [EMAIL PROTECTED] writes: Well, this is not right a 1.0.0 patch, but a Current cvs patch. These were the changes I need to build Pango without

Re: ref_count

2002-03-13 Thread Havoc Pennington
Deborah Swayne [EMAIL PROTECTED] writes: Is it appropriate to look at a gobject's ref_count, or is that supposed to be private? I've been keeping track of its value whenever I deliberately increment or decrement it, but the code makes it look as though I'm doing something improper -- and

Gtk2.0 compilation hum... issues...

2002-03-13 Thread Carlos Pereira
I tried to compile the whole gtk2.0 set, but: 1) Running ./configure for pango, it stops with an error saying that it can compile but not run the glib test... (of course this is with /etc/ld.so.conf and /sbin/ldconfig.) 2) Oh well, using --disable-glibtest, I can compile and install both

Re: Gtk2.0 compilation hum... issues...

2002-03-13 Thread Carlos Pereira
Thanks Sven, Again, config.log is a good place to look what went wrong. You were right, I should had looked better into config.log (actually I red it a couple of times, but not as carefully as after reading your message :-) ) It turns out that configure checked for pnglib, which depends on

RE: Sockets

2002-03-13 Thread Kason Huang
maybe you need to use glibc library.it is more base than xlib. -Original Message- From: Chris Nystrom [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 1:38 AM To: Paul Davis Cc: Nicolas web; [EMAIL PROTECTED] Subject: Re: Sockets On Tue, 12 Mar 2002, Paul Davis wrote: GTK

Re: Max value set for slider is not actual max value in use.

2002-03-13 Thread Christian Seberino
Rasmus I made pagesize be zero like you suggested and it fixed problem with max value. Thank you very much. With zero pagesize I can still drag slider, but, I cannot make it *jump* by clicking to right or left of it anymore. I lost this feature when I zeroed the page size. Scrollbars are nice

how shrink entire GUI?

2002-03-13 Thread Christian Seberino
With all text and sliders and pixmaps my GUI is very large. Is there any easy way to shrink EVERYTHING a little??... smaller fonts, widgets,etc.? CS -- === | Dr. Christian Seberino || (619) 553-7940 (office) | | SPAWARSYSCEN 2363 ||

Re: set attributes to rows in GtkTreeView

2002-03-13 Thread Olaf Fr±czyk
On 2002.03.13 16:57:49 +0100 Havoc Pennington wrote: Bernd Demian [EMAIL PROTECTED] writes: First the question: Can somebody show me a simple way to change the color of one or more rows in GtkTreeView. In CList it was simple to use the function gtk_clist_set_background. I don't