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.
Whe
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 abou
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
___
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
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
Cool Guy wrote:
>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
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.
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