Trying to install

2005-03-03 Thread Jill_n_Ringo
I’m new to linux, so please bear with me. I have SUSE 9.2 and I downloaded gtk+-2.6.4.tar.gz. I extracted the files and typed ./configure. It ran a while then I got :   checking for glib-2.0 >= 2.6.0    atk >= 1.0.1    pango >= 1.8.0... Requested 'glib-2.0 >= 2.6.0' but version of GLib

Re: Animating GTK+ widgets in real time (slowness of)

2005-03-03 Thread John Cupitt
On Thu, 03 Mar 2005 18:31:05 +, Evil Kosh <[EMAIL PROTECTED]> wrote: > you have a window, with a GtkPaned splitting it into two halfs, the > window covers the bottom half of the pane, so the drag bar in the > middle, is at the bottom of the window being displayed. > > on clicking a button in t

Re: GTK+ Compileing with C

2005-03-03 Thread David Necas (Yeti)
On Thu, Mar 03, 2005 at 01:08:21PM -0600, Your Guardian Angel wrote: > /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../libpangoft2-1.0.so: > undefined reference to `g_assert_warning' > /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../libpangoft2-1.0.so: > undefined reference to `g_return_if_fail_warning

GTK+ Compileing with C

2005-03-03 Thread Your Guardian Angel
/usr/lib/gcc/i386-redhat-linux/3.4.2/../../../libpangoft2-1.0.so: undefined reference to `g_assert_warning' /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../libpangoft2-1.0.so: undefined reference to `g_return_if_fail_warning' I try to compile the first script on the tutorial on the GTK page, i get

Re: Animating GTK+ widgets in real time (slowness of)

2005-03-03 Thread Paul Davis
> gtk_main_iteration(); try while (gtk_events_pending()) { gtk_main_iteration(); } it may do nothing. --p ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Animating GTK+ widgets in real time (slowness of)

2005-03-03 Thread Evil Kosh
Hi guys, I'm trying to do something unorthadox and I was wondering if anyone here has an idea to speed things up a bit. to set the scene. you have a window, with a GtkPaned splitting it into two halfs, the window covers the bottom half of the pane, so the drag bar in the middle, is at the botto

Re: I just want to know whether the gtk will port to embeded linux system?

2005-03-03 Thread Antonio Gomes
Hi, there is no a GTK EMBEDDED VERSION, like j2me - J2se, but you can run application developed in GTK on embedded systems. GPE is a good example of a embedded system built in GTK. It's a window manager GNome-based (GTK). You can develop your application on the desktop envoiroment, and use a cros

I just want to know whether the gtk will port to embeded linux system?

2005-03-03 Thread Yueyu Lin
Or other embeded platform such as symbian,palm? I am actually a new bie to gtk. I am a professional java programmer. But I do love C language. Using C in Gtk is a kind of award :D I am planning to do some embeded development, j2me is a good solution. But I gtk has the embeded port version, I will b

Error in newly builded gnome2.8

2005-03-03 Thread sakthivel
Hi! i builded gnome2.8 in the root and i started recompiled and i got error in gtk+ module then i removed the gtk+ module and the i build that once again. Then i can't access Application menu in the newly created gnome2.8 desktop. please help me as early as possible.

Re: asynchronous cancellation of timer event added via g_timeout_add()

2005-03-03 Thread Tim Müller
On Thursday 03 March 2005 09:09, Josef Kriegl wrote: > My question hence is: is there a glib API call that i may have missed/is > undocumented, or is there some other way of creating timers in glib that > can be cancelled asynchronously? g_source_remove() should do that: http://developer.gnom

asynchronous cancellation of timer event added via g_timeout_add()

2005-03-03 Thread Josef Kriegl
  i am a newbie to glib, but have started using glib heavily in my latest manet networking project to implement reliable packet transfer over intermittent links.   one of the issues i have run into with glib timer events is that there does not seem to be asynchronous event cancellation suppo