Re: ./configure (compiling of glib)

2001-05-08 Thread Vlad Harchev
On Mon, 7 May 2001, alexus wrote: Hi, Libiconv can be configured in two ways - if configured 1st way, it will supply symbols like libiconv_open, if configured 2nd - it will supply symbols like iconv_open. Apparently you configured it in the 2nd way. Configure it (and recompile) in 1st way.

Re: SpinButtpn gets the old value - is this a GtkSpinButton bug?

2001-05-08 Thread jgotts
In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] writes: >The appended Python script creates a GtkSpinButton and a GtkButton (I'm >using Gtk 1.3.4 at the moment - haven't had a chance to upgrade to 1.3.5). >If you run the script, click with the mouse in the SpinButton after the "1", >delete it,

RE: Image type 'png' is not supported

2001-05-08 Thread Michael Mitton
The answer was, "It currently doesn't work because the source format of the stock icons is PNG files." (Owen Taylor, 'Re: Building without png', 5/2/2001) Can somebody please provide these converted files in a tarball? I tried to locate exactly which files need to be copied, but I couldn't loca

Re: Image type 'png' is not supported

2001-05-08 Thread Owen Taylor
Havoc Pennington <[EMAIL PROTECTED]> writes: > Rodrigo Moya <[EMAIL PROTECTED]> writes: > > > > I'm trying to compile GTK+ HEAD, and, on the gtk/stock-icons directory, > > it complains about > > > > Image type 'png' is not supported > > > > when trying to run gdk-pixbuf/make-inline-pixbuf. I'

"personal" install of gtk/glib

2001-05-08 Thread David Goldsmith
Thank-you all for your help/suggestions so far; I thought I was successful, but then when I tried to install xmms (which was the reason for installing gtk in the first place) I still got a "cannot find glib" error, so I'm trying again. Please clarify one point: should the results of glib reside i

Re: Image type 'png' is not supported

2001-05-08 Thread Havoc Pennington
Owen Taylor <[EMAIL PROTECTED]> writes: > Well, this answer was for the case when libpng is not present - > which is - "we need to fix this so the files are distributed" You and Michael are thinking of a newer thread - there was an older thread where the same "PNG missing" problem had some othe

Re: Image type 'png' is not supported

2001-05-08 Thread Owen Taylor
Havoc Pennington <[EMAIL PROTECTED]> writes: > Owen Taylor <[EMAIL PROTECTED]> writes: > > Well, this answer was for the case when libpng is not present - > > which is - "we need to fix this so the files are distributed" > > You and Michael are thinking of a newer thread - there was an older >

Re: Image type 'png' is not supported

2001-05-08 Thread Havoc Pennington
Owen Taylor <[EMAIL PROTECTED]> writes: > Was that the problem where the user hadn't run ldconfig so > dynamic loading with gmodule was detected as not-working? Right, that was it. > That should be resolved now that we are using AM_PATH_GLIB > again. True. Havoc ___

Re: Image type 'png' is not supported

2001-05-08 Thread Rodrigo Moya
On 07 May 2001 19:48:40 -0400, Havoc Pennington wrote: > > Rodrigo Moya <[EMAIL PROTECTED]> writes: > > > > I'm trying to compile GTK+ HEAD, and, on the gtk/stock-icons directory, > > it complains about > > > > Image type 'png' is not supported > > > > when trying to run gdk-pixbuf/make-inline

Re: ./configure (compiling of glib)

2001-05-08 Thread alexus
and would I do that? - Original Message - From: "Vlad Harchev" <[EMAIL PROTECTED]> To: "alexus" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, May 08, 2001 4:12 AM Subject: Re: ./configure (compiling of glib) > On Mon, 7 May 2001, alexus wrote: > > Hi, > > Libiconv can be

How to plot signals on a canvas...

2001-05-08 Thread Ottavio Campana
I need to develop a simulation program. It has to show some signals and Forier transforms. For computing fft I thougth to use the library of octave. The problem I have is that when I calculate a fft I don't have got a whole transform but only some points. When I use gnuplot to draw the

scrollbar once again

2001-05-08 Thread Ronald Bultje
Hi, I hope you don't mind me asking another question regarding the "scrollbar with 3 sliders" I wanted to make. It's actually not really the scrollbar itself anymore, it's close to finished. But I have two problems: 1) if I close the Gtk-app, control doesn't return to the terminal, so it locks so

Re: scrollbar once again

2001-05-08 Thread Havoc Pennington
Ronald Bultje <[EMAIL PROTECTED]> writes: > 1) if I close the Gtk-app, control doesn't return to the terminal, so it > locks somewhere - how do I find out where? Do you gtk_main_quit() to exit gtk_main()? To find out where, just run 'gdb myapp', then after closing the app, hit Ctrl-C and type

Please: Explain what happens when on use gtk_container_remove

2001-05-08 Thread Preben Randhol
Hi I do this (note the code is not in C as I use Ada 95, but it should be understandable) Gtk.Container.Add (Some_Vbox, Some_Frame); Gtk.Container.Remove (Some_Vbox, Some_Frame); Gtk.Container.Add (Some_Vbox, Some_Frame); As I understand the documentations the Remove should not alter t

Selection on gtkctree

2001-05-08 Thread Ian King
Hi, When I call gtk_ctree_select on a tree node and immediately check the ctree selection glist, the two pointers (selection and ctreenode) do not match even though I have it on browse selection mode. Does anyone know why this is? Thanks for your time Ian King ___

Re: scrollbar once again

2001-05-08 Thread Ronald Bultje
Hello, On 2001.05.08 20:53:10 +0200 Havoc Pennington wrote: > > Ronald Bultje <[EMAIL PROTECTED]> writes: > > 1) if I close the Gtk-app, control doesn't return to the terminal, so > it > > locks somewhere - how do I find out where? > > Do you gtk_main_quit() to exit gtk_main()? yes > To find

Re: Please: Explain what happens when on use gtk_container_remove

2001-05-08 Thread Havoc Pennington
Preben Randhol <[EMAIL PROTECTED]> writes: > > I do this (note the code is not in C as I use Ada 95, but it should be > understandable) > >Gtk.Container.Add (Some_Vbox, Some_Frame); >Gtk.Container.Remove (Some_Vbox, Some_Frame); >Gtk.Container.Add (Some_Vbox, Some_Frame); > > As I

Re: scrollbar once again

2001-05-08 Thread Paul Davis
>I inserted the code. Doesn't work either.:-\ >The widget receives the focus_in_event and will trigger the function. But >still no keygrabs did you set the events that the widget can receive to include key presses, etc? did you mark it with GTK_CAN_FOCUS? --p ___

Re: scrollbar once again

2001-05-08 Thread Havoc Pennington
Ronald Bultje <[EMAIL PROTECTED]> writes: > On 2001.05.08 20:53:10 +0200 Havoc Pennington wrote: > > Do you gtk_main_quit() to exit gtk_main()? > > yes ... > #4 0x400b9043 in gtk_main () from /usr/lib/libgtk-1.2.so.0 You are still in gtk_main(), so the answer is "no" not "yes" ;-) Maybe you a

Re: Please: Explain what happens when on use gtk_container_remove

2001-05-08 Thread Ron Steinke
> From: Preben Randhol <[EMAIL PROTECTED]> > Hi > > I do this (note the code is not in C as I use Ada 95, but it should be > understandable) > >Gtk.Container.Add (Some_Vbox, Some_Frame); >Gtk.Container.Remove (Some_Vbox, Some_Frame); >Gtk.Container.Add (Some_Vbox, Some_Frame); > > As I

something basic

2001-05-08 Thread Vicki Stanfield
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I think I'm missing something very basic here. I am trying to add a few widgets into a box in such a way that the box expands to hold the child widgets and the text widget expands to show all text. I am obviously missing the boat here since neither ha

Re: something basic

2001-05-08 Thread Damon Chaplin
Vicki Stanfield wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I think I'm missing something very basic here. I am trying to add > a few widgets into a box in such a way that the box expands to hold > the child widgets and the text widget expands to show all text. I > am obviousl

Re: something basic

2001-05-08 Thread Vicki Stanfield
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 8 May 2001, Damon Chaplin wrote: ::> /* --- Put up v-box --- */ ::> gtk_box_pack_start (GTK_BOX (vbox_main), vbox, FALSE, TRUE, 0); :: ^ :: ::You probably want to pass TRUE as th

Re: Image type 'png' is not supported

2001-05-08 Thread Helmethead
On Tue, May 08, 2001 at 05:07:26PM +0200, Rodrigo Moya wrote: > On 07 May 2001 19:48:40 -0400, Havoc Pennington wrote: > > > > Rodrigo Moya <[EMAIL PROTECTED]> writes: > > > > > > I'm trying to compile GTK+ HEAD, and, on the gtk/stock-icons directory, > > > it complains about > > > > > > Image

Re: scrollbar once again

2001-05-08 Thread Ronald Bultje
On 2001.05.09 01:16:45 +0200 Havoc Pennington wrote: > > Ronald Bultje <[EMAIL PROTECTED]> writes: > > On 2001.05.08 20:53:10 +0200 Havoc Pennington wrote: > > > Do you gtk_main_quit() to exit gtk_main()? > > > > yes > ... > > #4 0x400b9043 in gtk_main () from /usr/lib/libgtk-1.2.so.0 > > You

Re: scrollbar once again

2001-05-08 Thread Helmethead
On Wed, May 09, 2001 at 08:19:11AM +0200, Ronald Bultje wrote: > > On 2001.05.09 01:16:45 +0200 Havoc Pennington wrote: > > > > Ronald Bultje <[EMAIL PROTECTED]> writes: > > > On 2001.05.08 20:53:10 +0200 Havoc Pennington wrote: > > > > Do you gtk_main_quit() to exit gtk_main()? > > > > > > yes