我试过这个,但没有检测到信号。有谁知道如何做到这一点,或者至少有一些指向参考的指针。谢谢。
fixed = gtk_fixed_new();
g_signal_connect(G_OBJECT(fixed), "button-press-event", G_CALLBACK(fixed_clicked), NULL);
void fixed_clicked(GtkWidget *widget, gpointer data)
{
gtk_statusbar_push(GTK_STATUSBAR(statusBar), 0, "I cliked the fixed layout" );
}