diff options
author | James Booth <boothj5@gmail.com> | 2014-01-16 18:22:50 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-16 18:22:50 +0000 |
commit | 16bf753ad0f06a324be85cb88471a36bcb2c59e2 (patch) | |
tree | e46dfb0fbcd80171ac06a64bec4489c806a5464b /src | |
parent | 9f6d6d44cc2bc0d883f2c7b561049910f5317b7e (diff) | |
download | profani-tty-16bf753ad0f06a324be85cb88471a36bcb2c59e2.tar.gz |
Renamed title bar status -> presence
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/titlebar.c | 20 | ||||
-rw-r--r-- | src/ui/ui.h | 2 |
2 files changed, 11 insertions, 11 deletions
diff --git a/src/ui/titlebar.c b/src/ui/titlebar.c index 61cae25a..40e59a1c 100644 --- a/src/ui/titlebar.c +++ b/src/ui/titlebar.c @@ -33,10 +33,10 @@ static char *recipient = NULL; static GTimer *typing_elapsed; -static contact_presence_t current_status; +static contact_presence_t current_presence; static void _title_bar_draw_title(void); -static void _title_bar_draw_status(void); +static void _title_bar_draw_presence(void); static void _create_title_bar(void) @@ -58,7 +58,7 @@ _title_bar_console(void) recipient = NULL; typing_elapsed = NULL; title_bar_show("Profanity. Type /help for help information."); - _title_bar_draw_status(); + _title_bar_draw_presence(); wrefresh(win); inp_put_back(); } @@ -72,7 +72,7 @@ _title_bar_resize(void) wbkgd(win, COLOUR_TITLE_TEXT); werase(win); _title_bar_draw_title(); - _title_bar_draw_status(); + _title_bar_draw_presence(); wrefresh(win); inp_put_back(); } @@ -118,10 +118,10 @@ _title_bar_show(const char * const title) } static void -_title_bar_set_presence(contact_presence_t status) +_title_bar_set_presence(contact_presence_t presence) { - current_status = status; - _title_bar_draw_status(); + current_presence = presence; + _title_bar_draw_presence(); } static void @@ -176,12 +176,12 @@ static void _title_bar_draw(void) { werase(win); - _title_bar_draw_status(); + _title_bar_draw_presence(); _title_bar_draw_title(); } static void -_title_bar_draw_status(void) +_title_bar_draw_presence(void) { int cols = getmaxx(stdscr); @@ -189,7 +189,7 @@ _title_bar_draw_status(void) mvwaddch(win, 0, cols - 14, '['); wattroff(win, COLOUR_TITLE_BRACKET); - switch (current_status) + switch (current_presence) { case CONTACT_ONLINE: mvwprintw(win, 0, cols - 13, " ...online "); diff --git a/src/ui/ui.h b/src/ui/ui.h index 249a4330..cd7322a6 100644 --- a/src/ui/ui.h +++ b/src/ui/ui.h @@ -156,7 +156,7 @@ void (*title_bar_refresh)(void); void (*title_bar_resize)(void); void (*title_bar_show)(const char * const title); void (*title_bar_console)(void); -void (*title_bar_set_presence)(contact_presence_t status); +void (*title_bar_set_presence)(contact_presence_t presence); void (*title_bar_set_recipient)(const char * const from); void (*title_bar_set_typing)(gboolean is_typing); void (*title_bar_draw)(void); |