1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Added summary info when splash enabled

This commit is contained in:
James Booth 2012-09-09 22:22:14 +01:00
parent 0f3c1e56d2
commit f81628a466

View File

@ -61,7 +61,7 @@ static int dirty;
static int max_cols = 0; static int max_cols = 0;
static void _create_windows(void); static void _create_windows(void);
static void _print_splash_logo(WINDOW *win); static void _cons_splash_logo(void);
static void _cons_show_basic_help(void); static void _cons_show_basic_help(void);
static int _find_prof_win_index(const char * const contact); static int _find_prof_win_index(const char * const contact);
static int _new_prof_win(const char * const contact); static int _new_prof_win(const char * const contact);
@ -654,12 +654,13 @@ _create_windows(void)
_wins[0] = cons; _wins[0] = cons;
_cons_win = _wins[0].win; _cons_win = _wins[0].win;
// wattrset(_cons_win, A_BOLD);
_win_show_time(_cons_win);
if (prefs_get_showsplash()) { if (prefs_get_showsplash()) {
_print_splash_logo(_cons_win); _cons_splash_logo();
} else { } else {
_win_show_time(_cons_win);
wprintw(_cons_win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION); wprintw(_cons_win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION);
}
_win_show_time(_cons_win); _win_show_time(_cons_win);
wprintw(_cons_win, "Copyright (C) 2012 James Booth <%s>.\n", PACKAGE_BUGREPORT); wprintw(_cons_win, "Copyright (C) 2012 James Booth <%s>.\n", PACKAGE_BUGREPORT);
_win_show_time(_cons_win); _win_show_time(_cons_win);
@ -674,9 +675,9 @@ _create_windows(void)
wprintw(_cons_win, "\n"); wprintw(_cons_win, "\n");
_win_show_time(_cons_win); _win_show_time(_cons_win);
wprintw(_cons_win, "Type '/help' to show complete help.\n"); wprintw(_cons_win, "Type '/help' to show complete help.\n");
_win_show_time(_cons_win);
wprintw(_cons_win, "\n");
_cons_show_basic_help();
}
prefresh(_cons_win, 0, 0, 1, 0, rows-3, cols-1); prefresh(_cons_win, 0, 0, 1, 0, rows-3, cols-1);
dirty = TRUE; dirty = TRUE;
@ -697,18 +698,51 @@ _create_windows(void)
} }
static void static void
_print_splash_logo(WINDOW *win) _cons_splash_logo(void)
{ {
wprintw(win, "Welcome to\n"); _win_show_time(_cons_win);
wattron(win, COLOUR_OFFLINE); wprintw(_cons_win, "Welcome to\n");
wprintw(win, " ___ _ \n");
wprintw(win, " / __) (_)_ \n");
wprintw(win, " ____ ____ ___ | |__ ____ ____ _| |_ _ _ \n"); _win_show_time(_cons_win);
wprintw(win, "| _ \\ / ___) _ \\| __) _ | _ \\| | _) | | |\n"); wattron(_cons_win, COLOUR_OFFLINE);
wprintw(win, "| | | | | | |_| | | ( ( | | | | | | |_| |_| |\n"); wprintw(_cons_win, " ___ _ \n");
wprintw(win, "| ||_/|_| \\___/|_| \\_||_|_| |_|_|\\___)__ |\n"); wattroff(_cons_win, COLOUR_OFFLINE);
wprintw(win, "|_| (____/ \n");
wattroff(win, COLOUR_OFFLINE); _win_show_time(_cons_win);
wattron(_cons_win, COLOUR_OFFLINE);
wprintw(_cons_win, " / __) (_)_ \n");
wattroff(_cons_win, COLOUR_OFFLINE);
_win_show_time(_cons_win);
wattron(_cons_win, COLOUR_OFFLINE);
wprintw(_cons_win, " ____ ____ ___ | |__ ____ ____ _| |_ _ _ \n");
wattroff(_cons_win, COLOUR_OFFLINE);
_win_show_time(_cons_win);
wattron(_cons_win, COLOUR_OFFLINE);
wprintw(_cons_win, "| _ \\ / ___) _ \\| __) _ | _ \\| | _) | | |\n");
wattroff(_cons_win, COLOUR_OFFLINE);
_win_show_time(_cons_win);
wattron(_cons_win, COLOUR_OFFLINE);
wprintw(_cons_win, "| | | | | | |_| | | ( ( | | | | | | |_| |_| |\n");
wattroff(_cons_win, COLOUR_OFFLINE);
_win_show_time(_cons_win);
wattron(_cons_win, COLOUR_OFFLINE);
wprintw(_cons_win, "| ||_/|_| \\___/|_| \\_||_|_| |_|_|\\___)__ |\n");
wattroff(_cons_win, COLOUR_OFFLINE);
_win_show_time(_cons_win);
wattron(_cons_win, COLOUR_OFFLINE);
wprintw(_cons_win, "|_| (____/ \n");
wattroff(_cons_win, COLOUR_OFFLINE);
_win_show_time(_cons_win);
wprintw(_cons_win, "\n");
_win_show_time(_cons_win);
wprintw(_cons_win, "Version %s\n", PACKAGE_VERSION);
} }
static int static int