Re: key press events and gtk_dialog_new_with_buttons()

2006-01-12 Thread Richard Gipps
Yeti, I tried your example and it worked fine. I then had a look at my code again and I found that the Enter key would emulate pressing the OK button on all of my entries BUT only the first time the window was displayed. If I hide the window using gtk_widget_hide_all() and then show

Hi. Tell me about this problem.

2006-01-12 Thread Cool Guy
Hi, all After made radiobutton, then set handler. g_signal(radiobutton, clicked, G_CALLBACK(AAA), NULL); static void aaa(){ g_message(aaa); } But, when radiobutton clicked, output g_message(aaa) is two times. # output aaa aaa What is the problem? I read tutorial but I don't know. p.s. I am

Re: need urgent help

2006-01-12 Thread Lalit Kumar
Dear All, I had one application that runs smoothly on redhat 9. I wanted to run that on Fedora core 4 but getting error error while loading shared libraries: libgnomeui.so.32: cannot open shared object file: No such file or directory can any one help me out, why I am getting this error and how

Re: need urgent help

2006-01-12 Thread Olaf Frączyk
On Thu, 2006-01-12 at 18:01 +0530, Lalit Kumar wrote: Dear All, I had one application that runs smoothly on redhat 9. I wanted to run that on Fedora core 4 but getting error error while loading shared libraries: libgnomeui.so.32: cannot open shared object file: No such file or directory

Re: A better way to use GtkTreeView: Proxy classes and lazy instantiation

2006-01-12 Thread Philip Van Hoof
And a full example: https://svn.cronos.be/svn/custom-treemodel-demo/trunk/ -- Philip Van Hoof, software developer at x-tend home: me at pvanhoof dot be gnome: pvanhoof at gnome dot org work: vanhoof at x-tend dot be http://www.pvanhoof.be - http://www.x-tend.be

Tell me about difference between g_signal_connect and g_signal_connect_after

2006-01-12 Thread Cool Guy
In reference, g_signal_connect : The handler will be called before the default handler of the signal. g_signal_connect_after : The handler will be called after the default handler of the signal. But, I don't know why is different g_signal_connect and g_signal_connect_after. Where is example

Re: Tell me about difference between g_signal_connect and g_signal_connect_after

2006-01-12 Thread Tristan Van Berkom
Cool Guy wrote: In reference, g_signal_connect : The handler will be called before the default handler of the signal. g_signal_connect_after : The handler will be called after the default handler of the signal. But, I don't know why is different g_signal_connect and g_signal_connect_after.

pango-utils.h versus gcc2.95.x

2006-01-12 Thread mpsuzuki
Hi, When I build pango-1.10.2, gcc-2.95.3 cannot compile pango-utils.h correctly. Following part is refused as, In file included from fribidi.c:25: ../../pango/pango-utils.h:101: parse error before `gboolean' 98 /* Unicode characters that are zero-width and should not be rendered 99 *

Re: configure options and GTK+ cross-compilation

2006-01-12 Thread Hans Oesterholt-Dijkema
Didn't autoconfig etc come with some INSTPATH or whatever which is prepended to PREFIX to be able to do: make install INSTPATH=/home/carlo/dev/gtk2, which would then install gtk into /home/carlo/dev/gtk/usr/... ? --Hans Carlo Agrusti schreef: Hi all, I'm digging into documentation and

Re: configure options and GTK+ cross-compilation

2006-01-12 Thread Carlo Agrusti
Hans Oesterholt-Dijkema ha scritto lo scorso 12/01/2006 18:16: Didn't autoconfig etc come with some INSTPATH or whatever which is prepended to PREFIX to be able to do: make install INSTPATH=/home/carlo/dev/gtk2, which would then install gtk into /home/carlo/dev/gtk/usr/... ? Many thanks

simple html widget for Linux Windows

2006-01-12 Thread regatta
Hi guys, I want to show a simple html page in my program, is there any GTK html widget that can work for Linux and windows without the need to include hundred of libraries ? if nothing available, is there any C code to convert html tags to GtkTextTag (for gtk_text_view widget) ? if nothing

RE: glib / String handling difficult[Scanned]

2006-01-12 Thread Robert Thorpe
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Juhana Sadeharju Sent: 11 January 2006 13:31 To: gtk-list@gnome.org Subject: Re: glib / String handling difficult[Scanned] From: Robert Thorpe [EMAIL PROTECTED] Why is this needed in a graphical

Re: packaging for windows

2006-01-12 Thread Vincent LADEUIL
Jaap == Jaap Karssenberg [EMAIL PROTECTED] writes: Jaap Hi, Did anyone look into packaging perl/gtk Jaap applications for windows ? Yes, I have to handle such a situation for a delivery target of end of March 2006 for an un-packaged solution (possibly involving manual steps) and a

RE: packaging for windows

2006-01-12 Thread Konovalov, Vadim
Did anyone look into packaging perl/gtk applications for windows ? I have some users that would really like a package that Just Works (when perl was installed already). I installed my application manually on one system but it involved manually unzipping a lot of dll's which is quite

Re: packaging for windows

2006-01-12 Thread A. Pagaltzis
* Konovalov, Vadim [EMAIL PROTECTED] [2006-01-12 17:20]: Unlike Tk, where GUI part is inside extension, perl-Gtk uses external bindings, so your proposal will end up with including entire Gtk engine inside ActivePerl distribution? I think this isn't possible. Possible, yes; practical, I dunno…

Please help me with building perl-gtk on windows

2006-01-12 Thread Konovalov, Vadim
Dear all, I installed Gtk on windows using binaries provided at http://gimp-win.sourceforge.net/ but those do not include *.lib and *.h files required to build a perl extension. I've asked for those at http://sourceforge.net/forum/forum.php?thread_id=1411029forum_id=412898 but for no avail.

RE: packaging for windows

2006-01-12 Thread Konovalov, Vadim
Unlike Tk, where GUI part is inside extension, perl-Gtk uses external bindings, so your proposal will end up with including entire Gtk engine inside ActivePerl distribution? I think this isn't possible. Possible, yes; practical, I dunno… its possible to arrange for files to include gtk

Re: packaging for windows

2006-01-12 Thread zentara
On Thu, 12 Jan 2006 19:41:10 +0300 Konovalov, Vadim [EMAIL PROTECTED] wrote: But I very doubt you'll convince ActiveState perl people to include Gtk into Perl distribution So, this is impossible because its not practical :) Also imagine including wxWidgets here and so on... Well couldn't they

RE: packaging for windows

2006-01-12 Thread Konovalov, Vadim
But I very doubt you'll convince ActiveState perl people to include Gtk into Perl distribution So, this is impossible because its not practical :) Also imagine including wxWidgets here and so on... Well couldn't they make separate ppm's for Gtk2 and Wx? They do it for Zinc? this is

RE: packaging for windows

2006-01-12 Thread muppet
Konovalov, Vadim said: Unlike Tk, where GUI part is inside extension, perl-Gtk uses external bindings, so your proposal will end up with including entire Gtk engine inside ActivePerl distribution? I think this isn't possible. Possible, yes; practical, I dunno... its possible to arrange

Re: [PATCH] fix crashing on amd64

2006-01-12 Thread Rafael Garcia-Suarez
Ross McFarland wrote: On 1/11/06, Thierry Vignaud [EMAIL PROTECTED] wrote: we'd experienced application crash on x86_64 for quite some time. it's quite reproductable with 1.11x branch. perl loops while trying to segfaulting. Patch from Rafael Garcia-Suarez [EMAIL PROTECTED] traced it

Re: packaging for windows

2006-01-12 Thread Stephan Brunner
Hi, Am Donnerstag 12 Januar 2006 12:49 schrieb Jaap Karssenberg: Did anyone look into packaging perl/gtk applications for windows ? I set up the following configuration: On the build-machine (full Gtk, gtk-perl installed), I use pp -x -o foo.exe -M Glib -M Gtk2 -l

Re: packaging for windows

2006-01-12 Thread Daniel Kasak
Jaap Karssenberg wrote: Hi, Did anyone look into packaging perl/gtk applications for windows ? I have some users that would really like a package that Just Works (when perl was installed already). I installed my application manually on one system but it involved manually unzipping a lot of