failed to load ./stock_add_16.png:

2003-01-13 Thread Gansser, Martin
Hi, I've tried to compile the new glib-2.2.0, atk-1.2.0, pango-1.2.0 and gtk+-2.2.0 on hpux-11.00, but gtk+ fails with the followin error messages: gdkdisplay-x11.c: In function `_gdk_windowing_set_default_display': gdkdisplay-x11.c:694: warning: implicit declaration of function `putenv'

unsuscribe

2003-01-13 Thread Ivan Rodriguez Dorado
___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

how to compile GdkPixbuf

2003-01-13 Thread Vishal Modak
hi I'm trying to use GdkPixBuf to save a pixmap to a jpeg file... I included gdk-pixbuf/gdk-pixbuf.h (was it right?) and the compilation phase goes ok; but when it links the .o, it gives... undefined reference to `gdk_pixbuf_new_from_file' undefined reference to

Re: [gtkmm] how to compile GdkPixbuf

2003-01-13 Thread Jeffrey Rush
Hi Vishal, How can I tell the linker to search them etc. etc? I don't know if you are using kind of a makefile, but there should be something like: ... -lgdk -lgtk ... that's where you tell the compiler where it can find the necessary files (and functions for linking). Simply add: -lgdk_pixbuf

how to eliminate gnome-terminal internal border?

2003-01-13 Thread Adam
I have gnome-terminal using a 10x15 font on a 1600x1200 display. I want it to fit exactly into half the display, 800x1200 for 80x80 characters. I have already eliminated the window manager frame. There is still a 2 pixel internal border. It appears from the source that vbox and notebook

Re: Problems with fast timeouts

2003-01-13 Thread Krzysztof Dubowik
Hi, I wanted my timeout function to be called 200 times per second. Another words, my timeout function to be called every 5 miliseconds. why? what's the actual problem behind it? It's a simulator of a measuring device where the sampling rate is fixed at 200Hz. I want to draw the

configuring GTK 2.2

2003-01-13 Thread Hubert de Fraysseix
Hi, I downloaded the sources of GTK+-2.2.0 and compiled all the requested dependencies, but when I run ./configure I get a message that I do not understand: configure: error: *** Cannot link to Accessibility Toolkit. Accessibility Toolkit is required *** to build

Re: Problems with fast timeouts

2003-01-13 Thread Krzysztof Dubowik
Hi, Thanks for all your answers, you've been very helpful. I think I got the basic idea and I'll be able to carry on now. I do not know your background, Krisz, but this is pretty much a homework lesson done on realtime university courses. I wish my university did realtime programming

A dialog with many spin buttons has errors, Xlib: unexpected async reply

2003-01-13 Thread Edy
Hi, I am building a multimedia program. As a option menu, a dialog has many spin buttons and other buttons. When I clicked spin buttons, then the program has the error and stuck! I was very careful on threads. I mean I do not have any error If I do not click spin buttons. This error does not come

Re: configuring GTK 2.2

2003-01-13 Thread Padraig O'Briain
Hubert, libatk-1.0.so should not be calling g_value_get_as_pointer. What version of atk did you download? Please do 1) ls -l /usr/local/lib/libatk* 2) grep for g_value_get_as_pointer in the subdirectory atk/atk in which you built ATK. Padraig Hi, I downloaded the sources of GTK+-2.2.0

Re: A dialog with many spin buttons has errors, Xlib: unexpected async reply

2003-01-13 Thread Sven Neumann
Hi, Edy [EMAIL PROTECTED] writes: I was very careful on threads. did you read what the GTK+ FAQ says about threads ? Salut, Sven ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: configuring GTK 2.2

2003-01-13 Thread Hubert de Fraysseix
Hi, Thank you for your help. I am using atk-1.2.0 -  /usr/local/lib/libatk-1.0.so.0.200.0 Is it too recent ? The result of the grep is: atkmarshal.c:  data2 = g_value_get_as_pointer (param_values + 0); atkmarshal.c:  data1 = g_value_get_as_pointer (param_values + 0); atkmarshal.c: 

Re: configuring GTK 2.2

2003-01-13 Thread Padraig O'Briain
Herbert, This is very strange, The file atk-marshal.c is generated by the build. According to the ChangeLog in glib/gobject the function g_value_get_as_pointer was renamed to g_value_peek_pointer on Februray 21st 2001. I would look very closely at how the file atkmarshal.c is being generated.

Re: configuring GTK 2.2

2003-01-13 Thread Sven Neumann
Hi, Hubert de Fraysseix [EMAIL PROTECTED] writes: libatk-1.0.so should not be calling g_value_get_as_pointer. the problem is most likely that a very old version of glib-genmarshal is being used to build atk. g_value_get_as_pointer() was renamed to g_value_peek_pointer() almost a year ago.

Directing compilation errors to a file

2003-01-13 Thread Hammamur Rahman
Hi, I compiling a gtk program at the moment, and i've got lots of errors, but cannot see all of them within the ms dos window. I am using a make file. Can someone tell me how i can direct the compilation errors to a file with a command with in my make file which i'm using or actually typing

How to change the color of a Widget ?

2003-01-13 Thread Stephane Wirtel
Hi folks, I'm searching the possibility to change the background of a Widget, by example, i have a GtkLabel, and i would like to know if it's possible to change its color ? Thanks for your response. Sincerely Stephane Wirtel PS : I'm programming a small application, if i need assistance,

Re: How to change the color of a Widget ?

2003-01-13 Thread Paul Davis
I'm searching the possibility to change the background of a Widget, by example, i have a GtkLabel, and i would like to know if it's possible to change its color ? GTK+ TEAM: WHEN IS THIS GOING TO END UP IN THE FAQ? meanwhile: http://pobox.com/~hp/gtk-colors.html --p

kill the child process

2003-01-13 Thread Mauro Venanzi
Hi i have done a function to close the gtk main and the child process the function is similar to: *** kill(child_proc,SIGKILL) gtk_main_quit (); *** in the child process thre's a while (1) loop if i start the program from the desktop when i click the exit button that run the

Re: Problems with fast timeouts

2003-01-13 Thread Valdis . Kletnieks
On Sat, 11 Jan 2003 13:53:27 +0100, Krzysztof Dubowik said: It's a simulator of a measuring device where the sampling rate is fixed at 200Hz. I want to draw the graph at real-time - 1 pixel per 5ms. Optimization 1: Remember that the actual monitor probably won't be refreshing any faster than

GDK_WINDOW_CHILD creation problem

2003-01-13 Thread Victor Mierla
Hi people i want to create a GDK_WIMDOW_CHILD in a window parent . The window child is set at 640x480. However the result is different from what i want. Besides the fact that the child window is much bigger than specified , its displacements in the parent window are 0,0 and not the ones

old version of GLIB

2003-01-13 Thread Vipin Patel
Good evening: Am trying to install Gaim 0.59.6. Get the following error: checking for glib-config.. /usr/bin/glib-config checking for GLIB - version = 1.2.5... *** An old version of GLIB (1.2.1) was found. *** You need a version of GLIB newer then 1.2.5. *** *** If you have already installed

Re: old version of GLIB

2003-01-13 Thread magicdhj
Hi, Am trying to install Gaim 0.59.6. Get the following error: checking for glib-config.. /usr/bin/glib-config checking for GLIB - version = 1.2.5... *** An old version of GLIB (1.2.1) was found. *** You need a version of GLIB newer then 1.2.5. *** *** If you have already installed a

Re: glib making problems

2003-01-13 Thread Raymond Wan
Hi all, A reply to an old posting, but I recently tried installing 2.2 and came to a similar problem. Basically: ... Making all in po make[2]: Entering directory `/home/rwan/gtk/install/glib-2.2.0/po' make[2]: *** No rule to make target `azNONE', needed by `all-yes'. Stop. make[2]: