mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Highlight active rooms in bookmark list
This commit is contained in:
parent
d2662a6f17
commit
c0fc4256de
@ -32,6 +32,7 @@
|
|||||||
#include "command/command.h"
|
#include "command/command.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
#include "muc.h"
|
||||||
#include "roster_list.h"
|
#include "roster_list.h"
|
||||||
#include "config/preferences.h"
|
#include "config/preferences.h"
|
||||||
#include "config/theme.h"
|
#include "config/theme.h"
|
||||||
@ -651,11 +652,14 @@ _cons_show_bookmarks(const GList *list)
|
|||||||
cons_show("");
|
cons_show("");
|
||||||
cons_show("Bookmarks:");
|
cons_show("Bookmarks:");
|
||||||
|
|
||||||
/* TODO: show status (connected or not) and window number */
|
|
||||||
while (list != NULL) {
|
while (list != NULL) {
|
||||||
Bookmark *item = list->data;
|
Bookmark *item = list->data;
|
||||||
|
|
||||||
win_print_time(console, '-');
|
win_print_time(console, '-');
|
||||||
|
|
||||||
|
if (muc_room_is_active(item->jid)) {
|
||||||
|
wattron(console->win, COLOUR_ONLINE);
|
||||||
|
}
|
||||||
wprintw(console->win, " %s", item->jid);
|
wprintw(console->win, " %s", item->jid);
|
||||||
if (item->nick != NULL) {
|
if (item->nick != NULL) {
|
||||||
wprintw(console->win, "/%s", item->nick);
|
wprintw(console->win, "/%s", item->nick);
|
||||||
@ -666,6 +670,16 @@ _cons_show_bookmarks(const GList *list)
|
|||||||
if (item->password != NULL) {
|
if (item->password != NULL) {
|
||||||
wprintw(console->win, " (private)");
|
wprintw(console->win, " (private)");
|
||||||
}
|
}
|
||||||
|
if (muc_room_is_active(item->jid)) {
|
||||||
|
ProfWin *roomwin = wins_get_by_recipient(item->jid);
|
||||||
|
if (roomwin != NULL) {
|
||||||
|
int num = wins_get_num(roomwin);
|
||||||
|
wprintw(console->win, " (");
|
||||||
|
wprintw(console->win, "%d", num);
|
||||||
|
wprintw(console->win, ")");
|
||||||
|
}
|
||||||
|
wattroff(console->win, COLOUR_ONLINE);
|
||||||
|
}
|
||||||
wprintw(console->win, "\n");
|
wprintw(console->win, "\n");
|
||||||
list = g_list_next(list);
|
list = g_list_next(list);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user