diff console/libgnt/test/tv.c @ 13960:a06f7495af6f

[gaim-migrate @ 16513] It is possible to have multiple gnt-applications sharing the same screen. To try this, 'make WM' in console/libgnt/test. It will have a small 'Command' entry. You can give a command like './focus.so' (or one of the other examples). The applications can also be executed standalone. This required some tinkering to the Makefile. I am not sure whether there is an easier way of doing it. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 17 Jul 2006 22:27:26 +0000
parents 8b2306c64efa
children 27182f83b79b
line wrap: on
line diff
--- a/console/libgnt/test/tv.c	Mon Jul 17 21:33:50 2006 +0000
+++ b/console/libgnt/test/tv.c	Mon Jul 17 22:27:26 2006 +0000
@@ -35,12 +35,11 @@
 {
 	GntWidget *hbox, *entry, *view;
 
+#ifdef STANDALONE
 	freopen(".error", "w", stderr);
 
 	gnt_init();
-
-	box(stdscr, 0, 0);
-	wrefresh(stdscr);
+#endif
 
 	hbox = gnt_box_new(FALSE, TRUE);
 	gnt_widget_set_name(hbox, "hbox");
@@ -67,9 +66,11 @@
 
 	g_signal_connect(G_OBJECT(entry), "key_pressed", G_CALLBACK(key_pressed), view);
 
+#ifdef STANDALONE
 	gnt_main();
 
 	gnt_quit();
+#endif
 
 	return 0;
 }