comparison console/libgnt/gntcolors.c @ 13911:b210409cdc56

[gaim-migrate @ 16410] Change some colors for terminals that don't support customizing colors. Make taskbar behave properly when moving a window. Read startup options from command-line (copy-paste from gtkgaim [sic]). I am doing #define _GNU_SOURCE and #include <getopt.h> ... I don't know if that's alright. So now you can specify a location to read config files from. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 03 Jul 2006 02:27:41 +0000
parents eaaf73de9188
children 0a0d2a1fd2bc
comparison
equal deleted inserted replaced
13910:6c907830a45f 13911:b210409cdc56
27 init_pair(GNT_COLOR_DISABLED, GNT_COLOR_GRAY, GNT_COLOR_WHITE); 27 init_pair(GNT_COLOR_DISABLED, GNT_COLOR_GRAY, GNT_COLOR_WHITE);
28 } 28 }
29 else 29 else
30 { 30 {
31 init_pair(GNT_COLOR_NORMAL, COLOR_BLACK, COLOR_WHITE); 31 init_pair(GNT_COLOR_NORMAL, COLOR_BLACK, COLOR_WHITE);
32 init_pair(GNT_COLOR_HIGHLIGHT, COLOR_YELLOW, COLOR_BLACK); 32 init_pair(GNT_COLOR_HIGHLIGHT, COLOR_WHITE, COLOR_BLUE);
33 init_pair(GNT_COLOR_SHADOW, COLOR_BLACK, COLOR_BLACK); 33 init_pair(GNT_COLOR_SHADOW, COLOR_BLACK, COLOR_BLACK);
34 init_pair(GNT_COLOR_TITLE, COLOR_WHITE, COLOR_BLACK); 34 init_pair(GNT_COLOR_TITLE, COLOR_WHITE, COLOR_BLUE);
35 init_pair(GNT_COLOR_TEXT_NORMAL, COLOR_BLACK, COLOR_WHITE); 35 init_pair(GNT_COLOR_TITLE_D, COLOR_WHITE, COLOR_BLACK);
36 init_pair(GNT_COLOR_TEXT_NORMAL, COLOR_WHITE, COLOR_BLUE);
36 init_pair(GNT_COLOR_HIGHLIGHT_D, COLOR_CYAN, COLOR_BLACK); 37 init_pair(GNT_COLOR_HIGHLIGHT_D, COLOR_CYAN, COLOR_BLACK);
37 init_pair(GNT_COLOR_DISABLED, COLOR_YELLOW, COLOR_WHITE); 38 init_pair(GNT_COLOR_DISABLED, COLOR_YELLOW, COLOR_WHITE);
38 } 39 }
39 } 40 }
40 41