mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Show presence when resource hidden
This commit is contained in:
parent
badbc3003f
commit
98a395e933
@ -1207,6 +1207,16 @@ cons_roster_setting(void)
|
|||||||
else
|
else
|
||||||
cons_show("Roster resource (/roster) : hide");
|
cons_show("Roster resource (/roster) : hide");
|
||||||
|
|
||||||
|
if (prefs_get_boolean(PREF_ROSTER_PRESENCE))
|
||||||
|
cons_show("Roster presence (/roster) : show");
|
||||||
|
else
|
||||||
|
cons_show("Roster presence (/roster) : hide");
|
||||||
|
|
||||||
|
if (prefs_get_boolean(PREF_ROSTER_STATUS))
|
||||||
|
cons_show("Roster status (/roster) : show");
|
||||||
|
else
|
||||||
|
cons_show("Roster status (/roster) : hide");
|
||||||
|
|
||||||
if (prefs_get_boolean(PREF_ROSTER_EMPTY))
|
if (prefs_get_boolean(PREF_ROSTER_EMPTY))
|
||||||
cons_show("Roster empty (/roster) : show");
|
cons_show("Roster empty (/roster) : show");
|
||||||
else
|
else
|
||||||
|
@ -62,6 +62,7 @@ _rosterwin_contact(ProfLayoutSplit *layout, PContact contact)
|
|||||||
|
|
||||||
if (prefs_get_boolean(PREF_ROSTER_RESOURCE)) {
|
if (prefs_get_boolean(PREF_ROSTER_RESOURCE)) {
|
||||||
GList *resources = p_contact_get_available_resources(contact);
|
GList *resources = p_contact_get_available_resources(contact);
|
||||||
|
if (resources) {
|
||||||
GList *curr_resource = resources;
|
GList *curr_resource = resources;
|
||||||
while (curr_resource) {
|
while (curr_resource) {
|
||||||
Resource *resource = curr_resource->data;
|
Resource *resource = curr_resource->data;
|
||||||
@ -102,6 +103,31 @@ _rosterwin_contact(ProfLayoutSplit *layout, PContact contact)
|
|||||||
|
|
||||||
curr_resource = g_list_next(curr_resource);
|
curr_resource = g_list_next(curr_resource);
|
||||||
}
|
}
|
||||||
|
} else if (prefs_get_boolean(PREF_ROSTER_PRESENCE)) {
|
||||||
|
gboolean by_presence = g_strcmp0(by, "presence") == 0;
|
||||||
|
gboolean has_status = p_contact_status(contact) != NULL;
|
||||||
|
gboolean show_status = prefs_get_boolean(PREF_ROSTER_STATUS);
|
||||||
|
if (!by_presence || (has_status && show_status)) {
|
||||||
|
wattron(layout->subwin, theme_attrs(presence_colour));
|
||||||
|
GString *msg = g_string_new(" ");
|
||||||
|
if (!by_presence) {
|
||||||
|
g_string_append(msg, presence);
|
||||||
|
}
|
||||||
|
if (has_status && show_status) {
|
||||||
|
if (!by_presence) {
|
||||||
|
g_string_append(msg, ", \"");
|
||||||
|
} else {
|
||||||
|
g_string_append(msg, "\"");
|
||||||
|
}
|
||||||
|
const char *status = p_contact_status(contact);
|
||||||
|
g_string_append(msg, status);
|
||||||
|
g_string_append(msg, "\"");
|
||||||
|
}
|
||||||
|
win_printline_nowrap(layout->subwin, msg->str);
|
||||||
|
g_string_free(msg, TRUE);
|
||||||
|
wattroff(layout->subwin, theme_attrs(presence_colour));
|
||||||
|
}
|
||||||
|
}
|
||||||
g_list_free(resources);
|
g_list_free(resources);
|
||||||
} else if (prefs_get_boolean(PREF_ROSTER_PRESENCE)) {
|
} else if (prefs_get_boolean(PREF_ROSTER_PRESENCE)) {
|
||||||
gboolean by_presence = g_strcmp0(by, "presence") == 0;
|
gboolean by_presence = g_strcmp0(by, "presence") == 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user