How can I use g_signal_connect() to pass a gponiter parameter

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I hope to use  g_signal_connect() to pass a gchar* parameter like this:

gchar* radio1= "Radio1"; //it is global variable
gchar* radio2= "Radio2";
gchar* radio3= "Radio3";

void item_radio_print1(gpointer* data)
{
        g_print("This is the radio %s\n", (gchar *)data);
}

g_signal_connect(G_OBJECT(item_radio1), "activate",
                     GTK_SIGNAL_FUNC(item_radio_print1), (gpointer*)radio1);
g_signal_connect(G_OBJECT(item_radio2), "activate",
                     GTK_SIGNAL_FUNC(item_radio_print1), (gpointer*)radio2);
g_signal_connect(G_OBJECT(item_radio3), "activate",
                     GTK_SIGNAL_FUNC(item_radio_print1), (gpointer*)radio3);

But, those strings can not be printed.

Please help me. Thanks!
-- 
View this message in context: http://www.nabble.com/How-can-I-use-g_signal_connect%28%29-to-pass-a-gponiter-parameter-tp19106328p19106328.html
Sent from the Gtk+ - General mailing list archive at Nabble.com.

_______________________________________________
gtk-list mailing list
gtk-list@xxxxxxxxx
http://mail.gnome.org/mailman/listinfo/gtk-list

[Index of Archives]     [Touch Screen Library]     [GIMP Users]     [Gnome]     [KDE]     [Yosemite News]     [Steve's Art]

  Powered by Linux