comparison console/libgnt/test/tv.c @ 13952:841a5ffbfee4

[gaim-migrate @ 16500] uiops for GaimConnections. This only shows an error message for a disconnect. uiops for GaimNotify. I have not done the notifications for searchresults yet. That will require multi-column GntTree's, which will also allow for improved email-notifications. I hope to complete it by next week. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 17 Jul 2006 03:45:24 +0000
parents cc60d0861337
children 8b2306c64efa
comparison
equal deleted inserted replaced
13951:614c56622453 13952:841a5ffbfee4
57 gnt_widget_set_size(view, 20, 15); 57 gnt_widget_set_size(view, 20, 15);
58 gnt_widget_set_size(entry, 20, 1); 58 gnt_widget_set_size(entry, 20, 1);
59 59
60 gnt_box_add_widget(GNT_BOX(hbox), view); 60 gnt_box_add_widget(GNT_BOX(hbox), view);
61 gnt_box_add_widget(GNT_BOX(hbox), entry); 61 gnt_box_add_widget(GNT_BOX(hbox), entry);
62 gnt_box_add_widget(GNT_BOX(hbox), gnt_button_new("OK"));
62 63
63 gnt_widget_show(hbox); 64 gnt_widget_show(hbox);
64 65
65 g_signal_connect(G_OBJECT(entry), "key_pressed", G_CALLBACK(key_pressed), view); 66 g_signal_connect(G_OBJECT(entry), "key_pressed", G_CALLBACK(key_pressed), view);
66 67