diff console/libgnt/gntcolors.c @ 13850:0e1e59770cb0

[gaim-migrate @ 16308] This is my first commit here. So don't yell at me if things get borked. Also, I haven't looked at the auto-thingies yet. So don't puke at the Makefiles. Files in console/libgnt/ are for the 'Gaim/GObjectified Ncurses Toolkit' library. Files in console/ uses libgaim and libgnt. Currently, only the buddylist-ui is 'functional', ie. the buddy-list updates when someone logs on or logs off. It still needs a lot of work. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 22 Jun 2006 08:33:54 +0000
parents
children 41753203a94d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/console/libgnt/gntcolors.c	Thu Jun 22 08:33:54 2006 +0000
@@ -0,0 +1,21 @@
+#include <ncursesw/ncurses.h>
+#include "gntcolors.h"
+
+void gnt_init_colors()
+{
+	/* XXX: Do some init_color()s */
+	init_color(GNT_COLOR_BLACK, 0, 0, 0);
+	init_color(GNT_COLOR_RED, 1000, 0, 0);
+	init_color(GNT_COLOR_GREEN, 0, 1000, 0);
+	init_color(GNT_COLOR_BLUE, 0, 0, 1000);
+	init_color(GNT_COLOR_WHITE, 1000, 1000, 1000);
+	init_color(GNT_COLOR_GRAY, 799, 799, 799);
+	init_color(GNT_COLOR_DARK_GRAY, 256, 256, 256);
+
+	/* Now some init_pair()s */
+	init_pair(GNT_COLOR_NORMAL, GNT_COLOR_BLACK, GNT_COLOR_WHITE);
+	init_pair(GNT_COLOR_HIGHLIGHT, GNT_COLOR_BLUE, GNT_COLOR_GRAY);
+	init_pair(GNT_COLOR_SHADOW, GNT_COLOR_BLACK, GNT_COLOR_DARK_GRAY);
+	init_pair(GNT_COLOR_TITLE, GNT_COLOR_WHITE, GNT_COLOR_DARK_GRAY);
+}
+