mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-19 04:46:22 +00:00
windows: format room roster
This commit is contained in:
@@ -189,12 +189,7 @@ prof_handle_room_message(const char * const room_jid, const char * const nick,
|
||||
void
|
||||
prof_handle_room_roster_complete(const char * const room)
|
||||
{
|
||||
GSList *roster = room_get_roster(room);
|
||||
|
||||
while (roster != NULL) {
|
||||
win_show_chat_room_member(room, roster->data);
|
||||
roster = g_slist_next(roster);
|
||||
}
|
||||
win_show_room_roster(room);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
3
src/ui.h
3
src/ui.h
@@ -104,8 +104,7 @@ void win_bad_show(const char * const msg);
|
||||
void win_remind(void);
|
||||
|
||||
void win_join_chat(const char * const room_jid, const char * const nick);
|
||||
void win_show_chat_room_member(const char * const room_jid,
|
||||
const char * const nick);
|
||||
void win_show_room_roster(const char * const room);
|
||||
int win_in_groupchat(void);
|
||||
void win_show_room_history(const char * const room_jid, const char * const nick,
|
||||
GTimeVal tv_stamp, const char * const message);
|
||||
|
||||
@@ -495,13 +495,29 @@ win_join_chat(const char * const room_jid, const char * const nick)
|
||||
}
|
||||
|
||||
void
|
||||
win_show_chat_room_member(const char * const room_jid, const char * const nick)
|
||||
win_show_room_roster(const char * const room)
|
||||
{
|
||||
int win_index = _find_prof_win_index(room_jid);
|
||||
int win_index = _find_prof_win_index(room);
|
||||
WINDOW *win = _wins[win_index].win;
|
||||
|
||||
GSList *roster = room_get_roster(room);
|
||||
|
||||
|
||||
if (roster != NULL) {
|
||||
wprintw(win, "Room occupants:\n");
|
||||
}
|
||||
|
||||
wattron(win, COLOUR_ONLINE);
|
||||
wprintw(win, "%s\n", nick);
|
||||
|
||||
while (roster != NULL) {
|
||||
wprintw(win, "%s", roster->data);
|
||||
if (roster->next != NULL) {
|
||||
wprintw(win, ", ");
|
||||
}
|
||||
roster = g_slist_next(roster);
|
||||
}
|
||||
wprintw(win, "\n");
|
||||
|
||||
wattroff(win, COLOUR_ONLINE);
|
||||
|
||||
if (win_index == _curr_prof_win)
|
||||
|
||||
Reference in New Issue
Block a user