mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Merge branch 'master' into osx-functional
This commit is contained in:
commit
2d1553f720
@ -2266,6 +2266,7 @@ cmd_init(void)
|
|||||||
autocomplete_add(roster_show_ac, "empty");
|
autocomplete_add(roster_show_ac, "empty");
|
||||||
autocomplete_add(roster_show_ac, "priority");
|
autocomplete_add(roster_show_ac, "priority");
|
||||||
autocomplete_add(roster_show_ac, "contacts");
|
autocomplete_add(roster_show_ac, "contacts");
|
||||||
|
autocomplete_add(roster_show_ac, "unsubscribed");
|
||||||
autocomplete_add(roster_show_ac, "rooms");
|
autocomplete_add(roster_show_ac, "rooms");
|
||||||
|
|
||||||
roster_by_ac = autocomplete_new();
|
roster_by_ac = autocomplete_new();
|
||||||
|
@ -2245,6 +2245,13 @@ cmd_roster(ProfWin *window, const char *const command, gchar **args)
|
|||||||
rosterwin_roster();
|
rosterwin_roster();
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
} else if (g_strcmp0(args[1], "unsubscribed") == 0) {
|
||||||
|
cons_show("Roster unsubscribed enabled");
|
||||||
|
prefs_set_boolean(PREF_ROSTER_UNSUBSCRIBED, TRUE);
|
||||||
|
if (conn_status == JABBER_CONNECTED) {
|
||||||
|
rosterwin_roster();
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
cons_bad_cmd_usage(command);
|
cons_bad_cmd_usage(command);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
@ -2313,6 +2320,13 @@ cmd_roster(ProfWin *window, const char *const command, gchar **args)
|
|||||||
rosterwin_roster();
|
rosterwin_roster();
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
} else if (g_strcmp0(args[1], "unsubscribed") == 0) {
|
||||||
|
cons_show("Roster unsubscribed disabled");
|
||||||
|
prefs_set_boolean(PREF_ROSTER_UNSUBSCRIBED, FALSE);
|
||||||
|
if (conn_status == JABBER_CONNECTED) {
|
||||||
|
rosterwin_roster();
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
cons_bad_cmd_usage(command);
|
cons_bad_cmd_usage(command);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -277,6 +277,42 @@ prefs_do_room_notify(gboolean current_win, const char *const roomjid, const char
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
prefs_do_room_notify_mention(const char *const roomjid, int unread, gboolean mention, gboolean trigger)
|
||||||
|
{
|
||||||
|
gboolean notify_room = FALSE;
|
||||||
|
if (g_key_file_has_key(prefs, roomjid, "notify", NULL)) {
|
||||||
|
notify_room = g_key_file_get_boolean(prefs, roomjid, "notify", NULL);
|
||||||
|
} else {
|
||||||
|
notify_room = prefs_get_boolean(PREF_NOTIFY_ROOM);
|
||||||
|
}
|
||||||
|
if (notify_room && unread > 0) {
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
gboolean notify_mention = FALSE;
|
||||||
|
if (g_key_file_has_key(prefs, roomjid, "notify.mention", NULL)) {
|
||||||
|
notify_mention = g_key_file_get_boolean(prefs, roomjid, "notify.mention", NULL);
|
||||||
|
} else {
|
||||||
|
notify_mention = prefs_get_boolean(PREF_NOTIFY_ROOM_MENTION);
|
||||||
|
}
|
||||||
|
if (notify_mention && mention) {
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
gboolean notify_trigger = FALSE;
|
||||||
|
if (g_key_file_has_key(prefs, roomjid, "notify.trigger", NULL)) {
|
||||||
|
notify_trigger = g_key_file_get_boolean(prefs, roomjid, "notify.trigger", NULL);
|
||||||
|
} else {
|
||||||
|
notify_trigger = prefs_get_boolean(PREF_NOTIFY_ROOM_TRIGGER);
|
||||||
|
}
|
||||||
|
if (notify_trigger && trigger) {
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
prefs_set_room_notify(const char *const roomjid, gboolean value)
|
prefs_set_room_notify(const char *const roomjid, gboolean value)
|
||||||
{
|
{
|
||||||
@ -1143,6 +1179,7 @@ _get_group(preference_t pref)
|
|||||||
case PREF_ROSTER_WRAP:
|
case PREF_ROSTER_WRAP:
|
||||||
case PREF_ROSTER_RESOURCE_JOIN:
|
case PREF_ROSTER_RESOURCE_JOIN:
|
||||||
case PREF_ROSTER_CONTACTS:
|
case PREF_ROSTER_CONTACTS:
|
||||||
|
case PREF_ROSTER_UNSUBSCRIBED:
|
||||||
case PREF_ROSTER_ROOMS:
|
case PREF_ROSTER_ROOMS:
|
||||||
case PREF_ROSTER_ROOMS_POS:
|
case PREF_ROSTER_ROOMS_POS:
|
||||||
case PREF_ROSTER_ROOMS_BY:
|
case PREF_ROSTER_ROOMS_BY:
|
||||||
@ -1351,6 +1388,8 @@ _get_key(preference_t pref)
|
|||||||
return "roster.resource.join";
|
return "roster.resource.join";
|
||||||
case PREF_ROSTER_CONTACTS:
|
case PREF_ROSTER_CONTACTS:
|
||||||
return "roster.contacts";
|
return "roster.contacts";
|
||||||
|
case PREF_ROSTER_UNSUBSCRIBED:
|
||||||
|
return "roster.unsubscribed";
|
||||||
case PREF_ROSTER_ROOMS:
|
case PREF_ROSTER_ROOMS:
|
||||||
return "roster.rooms";
|
return "roster.rooms";
|
||||||
case PREF_ROSTER_ROOMS_POS:
|
case PREF_ROSTER_ROOMS_POS:
|
||||||
@ -1425,6 +1464,7 @@ _get_default_boolean(preference_t pref)
|
|||||||
case PREF_ROSTER_PRIORITY:
|
case PREF_ROSTER_PRIORITY:
|
||||||
case PREF_ROSTER_RESOURCE_JOIN:
|
case PREF_ROSTER_RESOURCE_JOIN:
|
||||||
case PREF_ROSTER_CONTACTS:
|
case PREF_ROSTER_CONTACTS:
|
||||||
|
case PREF_ROSTER_UNSUBSCRIBED:
|
||||||
case PREF_ROSTER_ROOMS:
|
case PREF_ROSTER_ROOMS:
|
||||||
case PREF_TLS_SHOW:
|
case PREF_TLS_SHOW:
|
||||||
case PREF_LASTACTIVITY:
|
case PREF_LASTACTIVITY:
|
||||||
|
@ -76,6 +76,7 @@ typedef enum {
|
|||||||
PREF_ROSTER_WRAP,
|
PREF_ROSTER_WRAP,
|
||||||
PREF_ROSTER_RESOURCE_JOIN,
|
PREF_ROSTER_RESOURCE_JOIN,
|
||||||
PREF_ROSTER_CONTACTS,
|
PREF_ROSTER_CONTACTS,
|
||||||
|
PREF_ROSTER_UNSUBSCRIBED,
|
||||||
PREF_ROSTER_ROOMS,
|
PREF_ROSTER_ROOMS,
|
||||||
PREF_ROSTER_ROOMS_POS,
|
PREF_ROSTER_ROOMS_POS,
|
||||||
PREF_ROSTER_ROOMS_BY,
|
PREF_ROSTER_ROOMS_BY,
|
||||||
@ -234,6 +235,7 @@ void prefs_set_string(preference_t pref, char *value);
|
|||||||
gboolean prefs_do_chat_notify(gboolean current_win);
|
gboolean prefs_do_chat_notify(gboolean current_win);
|
||||||
gboolean prefs_do_room_notify(gboolean current_win, const char *const roomjid, const char *const mynick,
|
gboolean prefs_do_room_notify(gboolean current_win, const char *const roomjid, const char *const mynick,
|
||||||
const char *const theirnick, const char *const message, gboolean mention, gboolean trigger_found);
|
const char *const theirnick, const char *const message, gboolean mention, gboolean trigger_found);
|
||||||
|
gboolean prefs_do_room_notify_mention(const char *const roomjid, int unread, gboolean mention, gboolean trigger);
|
||||||
GList* prefs_message_get_triggers(const char *const message);
|
GList* prefs_message_get_triggers(const char *const message);
|
||||||
|
|
||||||
void prefs_set_room_notify(const char *const roomjid, gboolean value);
|
void prefs_set_room_notify(const char *const roomjid, gboolean value);
|
||||||
|
@ -391,6 +391,7 @@ _load_preferences(void)
|
|||||||
_set_boolean_preference("roster.count.zero", PREF_ROSTER_COUNT_ZERO);
|
_set_boolean_preference("roster.count.zero", PREF_ROSTER_COUNT_ZERO);
|
||||||
_set_boolean_preference("roster.priority", PREF_ROSTER_PRIORITY);
|
_set_boolean_preference("roster.priority", PREF_ROSTER_PRIORITY);
|
||||||
_set_boolean_preference("roster.contacts", PREF_ROSTER_CONTACTS);
|
_set_boolean_preference("roster.contacts", PREF_ROSTER_CONTACTS);
|
||||||
|
_set_boolean_preference("roster.unsubscribed", PREF_ROSTER_UNSUBSCRIBED);
|
||||||
_set_boolean_preference("roster.rooms", PREF_ROSTER_ROOMS);
|
_set_boolean_preference("roster.rooms", PREF_ROSTER_ROOMS);
|
||||||
_set_boolean_preference("privileges", PREF_MUC_PRIVILEGES);
|
_set_boolean_preference("privileges", PREF_MUC_PRIVILEGES);
|
||||||
_set_boolean_preference("presence", PREF_PRESENCE);
|
_set_boolean_preference("presence", PREF_PRESENCE);
|
||||||
|
@ -1410,6 +1410,11 @@ cons_roster_setting(void)
|
|||||||
else
|
else
|
||||||
cons_show("Roster contacts (/roster) : hide");
|
cons_show("Roster contacts (/roster) : hide");
|
||||||
|
|
||||||
|
if (prefs_get_boolean(PREF_ROSTER_UNSUBSCRIBED))
|
||||||
|
cons_show("Roster unsubscribed (/roster) : show");
|
||||||
|
else
|
||||||
|
cons_show("Roster unsubscribed (/roster) : hide");
|
||||||
|
|
||||||
char *count = prefs_get_string(PREF_ROSTER_COUNT);
|
char *count = prefs_get_string(PREF_ROSTER_COUNT);
|
||||||
if (g_strcmp0(count, "off") == 0) {
|
if (g_strcmp0(count, "off") == 0) {
|
||||||
cons_show("Roster count (/roster) : OFF");
|
cons_show("Roster count (/roster) : OFF");
|
||||||
|
@ -53,9 +53,12 @@ static void _rosterwin_contacts_all(ProfLayoutSplit *layout, gboolean newline);
|
|||||||
static void _rosterwin_contacts_by_presence(ProfLayoutSplit *layout, const char *const presence, char *title,
|
static void _rosterwin_contacts_by_presence(ProfLayoutSplit *layout, const char *const presence, char *title,
|
||||||
gboolean newline);
|
gboolean newline);
|
||||||
static void _rosterwin_contacts_by_group(ProfLayoutSplit *layout, char *group, gboolean newline);
|
static void _rosterwin_contacts_by_group(ProfLayoutSplit *layout, char *group, gboolean newline);
|
||||||
|
static void _rosteriwin_unsubscribed(ProfLayoutSplit *layout, gboolean newline);
|
||||||
static void _rosterwin_contacts_header(ProfLayoutSplit *layout, const char *title, gboolean newline, GSList *contacts);
|
static void _rosterwin_contacts_header(ProfLayoutSplit *layout, const char *title, gboolean newline, GSList *contacts);
|
||||||
|
static void _rosterwin_unsubscribed_header(ProfLayoutSplit *layout, gboolean newline, GList *wins);
|
||||||
|
|
||||||
static void _rosterwin_contact(ProfLayoutSplit *layout, PContact contact);
|
static void _rosterwin_contact(ProfLayoutSplit *layout, PContact contact);
|
||||||
|
static void _rosterwin_unsubscribed_item(ProfLayoutSplit *layout, ProfChatWin *chatwin);
|
||||||
static void _rosterwin_presence(ProfLayoutSplit *layout, const char *presence, const char *status,
|
static void _rosterwin_presence(ProfLayoutSplit *layout, const char *presence, const char *status,
|
||||||
int current_indent);
|
int current_indent);
|
||||||
static void _rosterwin_resources(ProfLayoutSplit *layout, PContact contact, int current_indent,
|
static void _rosterwin_resources(ProfLayoutSplit *layout, PContact contact, int current_indent,
|
||||||
@ -149,6 +152,10 @@ rosterwin_roster(void)
|
|||||||
} else {
|
} else {
|
||||||
_rosterwin_contacts_all(layout, newline);
|
_rosterwin_contacts_all(layout, newline);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (prefs_get_boolean(PREF_ROSTER_UNSUBSCRIBED)) {
|
||||||
|
_rosteriwin_unsubscribed(layout, newline);
|
||||||
|
}
|
||||||
prefs_free_string(by);
|
prefs_free_string(by);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -215,6 +222,24 @@ _rosterwin_contacts_all(ProfLayoutSplit *layout, gboolean newline)
|
|||||||
g_slist_free(filtered_contacts);
|
g_slist_free(filtered_contacts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
_rosteriwin_unsubscribed(ProfLayoutSplit *layout, gboolean newline)
|
||||||
|
{
|
||||||
|
GList *wins = wins_get_chat_unsubscribed();
|
||||||
|
if (wins) {
|
||||||
|
_rosterwin_unsubscribed_header(layout, newline, wins);
|
||||||
|
}
|
||||||
|
|
||||||
|
GList *curr = wins;
|
||||||
|
while (curr) {
|
||||||
|
ProfChatWin *chatwin = curr->data;
|
||||||
|
_rosterwin_unsubscribed_item(layout, chatwin);
|
||||||
|
curr = g_list_next(curr);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_list_free(wins);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_rosterwin_contacts_by_presence(ProfLayoutSplit *layout, const char *const presence, char *title, gboolean newline)
|
_rosterwin_contacts_by_presence(ProfLayoutSplit *layout, const char *const presence, char *title, gboolean newline)
|
||||||
{
|
{
|
||||||
@ -271,6 +296,58 @@ _rosterwin_contacts_by_group(ProfLayoutSplit *layout, char *group, gboolean newl
|
|||||||
g_slist_free(filtered_contacts);
|
g_slist_free(filtered_contacts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
_rosterwin_unsubscribed_item(ProfLayoutSplit *layout, ProfChatWin *chatwin)
|
||||||
|
{
|
||||||
|
const char *const name = chatwin->barejid;
|
||||||
|
const char *const presence = "offline";
|
||||||
|
int unread = 0;
|
||||||
|
|
||||||
|
roster_contact_theme_t theme_type = ROSTER_CONTACT;
|
||||||
|
if (chatwin->unread > 0) {
|
||||||
|
theme_type = ROSTER_CONTACT_UNREAD;
|
||||||
|
unread = chatwin->unread;
|
||||||
|
} else {
|
||||||
|
theme_type = ROSTER_CONTACT_ACTIVE;
|
||||||
|
}
|
||||||
|
|
||||||
|
theme_item_t presence_colour = _get_roster_theme(theme_type, presence);
|
||||||
|
|
||||||
|
wattron(layout->subwin, theme_attrs(presence_colour));
|
||||||
|
GString *msg = g_string_new(" ");
|
||||||
|
int indent = prefs_get_roster_contact_indent();
|
||||||
|
int current_indent = 0;
|
||||||
|
if (indent > 0) {
|
||||||
|
current_indent += indent;
|
||||||
|
while (indent > 0) {
|
||||||
|
g_string_append(msg, " ");
|
||||||
|
indent--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
char ch = prefs_get_roster_contact_char();
|
||||||
|
if (ch) {
|
||||||
|
g_string_append_printf(msg, "%c", ch);
|
||||||
|
}
|
||||||
|
|
||||||
|
char *unreadpos = prefs_get_string(PREF_ROSTER_UNREAD);
|
||||||
|
if ((g_strcmp0(unreadpos, "before") == 0) && unread > 0) {
|
||||||
|
g_string_append_printf(msg, "(%d) ", unread);
|
||||||
|
unread = 0;
|
||||||
|
}
|
||||||
|
g_string_append(msg, name);
|
||||||
|
if ((g_strcmp0(unreadpos, "after") == 0) && unread > 0) {
|
||||||
|
g_string_append_printf(msg, " (%d)", unread);
|
||||||
|
unread = 0;
|
||||||
|
}
|
||||||
|
prefs_free_string(unreadpos);
|
||||||
|
|
||||||
|
win_sub_newline_lazy(layout->subwin);
|
||||||
|
gboolean wrap = prefs_get_boolean(PREF_ROSTER_WRAP);
|
||||||
|
win_sub_print(layout->subwin, msg->str, FALSE, wrap, current_indent);
|
||||||
|
g_string_free(msg, TRUE);
|
||||||
|
wattroff(layout->subwin, theme_attrs(presence_colour));
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_rosterwin_contact(ProfLayoutSplit *layout, PContact contact)
|
_rosterwin_contact(ProfLayoutSplit *layout, PContact contact)
|
||||||
{
|
{
|
||||||
@ -888,6 +965,54 @@ _compare_rooms_unread(ProfMucWin *a, ProfMucWin *b)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
_rosterwin_unsubscribed_header(ProfLayoutSplit *layout, gboolean newline, GList *wins)
|
||||||
|
{
|
||||||
|
if (newline) {
|
||||||
|
win_sub_newline_lazy(layout->subwin);
|
||||||
|
}
|
||||||
|
|
||||||
|
GString *header = g_string_new(" ");
|
||||||
|
char ch = prefs_get_roster_header_char();
|
||||||
|
if (ch) {
|
||||||
|
g_string_append_printf(header, "%c", ch);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_string_append(header, "Unsubscribed");
|
||||||
|
|
||||||
|
char *countpref = prefs_get_string(PREF_ROSTER_COUNT);
|
||||||
|
if (g_strcmp0(countpref, "items") == 0) {
|
||||||
|
int itemcount = g_list_length(wins);
|
||||||
|
if (itemcount == 0 && prefs_get_boolean(PREF_ROSTER_COUNT_ZERO)) {
|
||||||
|
g_string_append_printf(header, " (%d)", itemcount);
|
||||||
|
} else {
|
||||||
|
g_string_append_printf(header, " (%d)", itemcount);
|
||||||
|
}
|
||||||
|
} else if (g_strcmp0(countpref, "unread") == 0) {
|
||||||
|
int unreadcount = 0;
|
||||||
|
GList *curr = wins;
|
||||||
|
while (curr) {
|
||||||
|
ProfChatWin *chatwin = curr->data;
|
||||||
|
unreadcount += chatwin->unread;
|
||||||
|
curr = g_list_next(curr);
|
||||||
|
}
|
||||||
|
if (unreadcount == 0 && prefs_get_boolean(PREF_ROSTER_COUNT_ZERO)) {
|
||||||
|
g_string_append_printf(header, " (%d)", unreadcount);
|
||||||
|
} else if (unreadcount > 0) {
|
||||||
|
g_string_append_printf(header, " (%d)", unreadcount);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
prefs_free_string(countpref);
|
||||||
|
|
||||||
|
gboolean wrap = prefs_get_boolean(PREF_ROSTER_WRAP);
|
||||||
|
|
||||||
|
wattron(layout->subwin, theme_attrs(THEME_ROSTER_HEADER));
|
||||||
|
win_sub_print(layout->subwin, header->str, FALSE, wrap, 1);
|
||||||
|
wattroff(layout->subwin, theme_attrs(THEME_ROSTER_HEADER));
|
||||||
|
|
||||||
|
g_string_free(header, TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_rosterwin_contacts_header(ProfLayoutSplit *layout, const char *const title, gboolean newline, GSList *contacts)
|
_rosterwin_contacts_header(ProfLayoutSplit *layout, const char *const title, gboolean newline, GSList *contacts)
|
||||||
{
|
{
|
||||||
|
@ -345,7 +345,7 @@ ProfWin* win_create_muc_config(const char *const title, DataForm *form);
|
|||||||
ProfWin* win_create_private(const char *const fulljid);
|
ProfWin* win_create_private(const char *const fulljid);
|
||||||
void win_update_virtual(ProfWin *window);
|
void win_update_virtual(ProfWin *window);
|
||||||
void win_free(ProfWin *window);
|
void win_free(ProfWin *window);
|
||||||
gboolean win_notify(ProfWin *window);
|
gboolean win_notify_remind(ProfWin *window);
|
||||||
int win_unread(ProfWin *window);
|
int win_unread(ProfWin *window);
|
||||||
void win_resize(ProfWin *window);
|
void win_resize(ProfWin *window);
|
||||||
void win_hide_subwin(ProfWin *window);
|
void win_hide_subwin(ProfWin *window);
|
||||||
|
@ -1308,7 +1308,7 @@ win_has_active_subwin(ProfWin *window)
|
|||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
win_notify(ProfWin *window)
|
win_notify_remind(ProfWin *window)
|
||||||
{
|
{
|
||||||
switch (window->type) {
|
switch (window->type) {
|
||||||
case WIN_CHAT:
|
case WIN_CHAT:
|
||||||
@ -1327,15 +1327,7 @@ win_notify(ProfWin *window)
|
|||||||
ProfMucWin *mucwin = (ProfMucWin*) window;
|
ProfMucWin *mucwin = (ProfMucWin*) window;
|
||||||
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
||||||
|
|
||||||
if (prefs_get_room_notify(mucwin->roomjid) && mucwin->unread > 0) {
|
return prefs_do_room_notify_mention(mucwin->roomjid, mucwin->unread, mucwin->unread_mentions, mucwin->unread_triggers);
|
||||||
return TRUE;
|
|
||||||
} else if (prefs_get_room_notify_mention(mucwin->roomjid) && mucwin->unread_mentions) {
|
|
||||||
return TRUE;
|
|
||||||
} else if (prefs_get_room_notify_trigger(mucwin->roomjid) && mucwin->unread_triggers) {
|
|
||||||
return TRUE;
|
|
||||||
} else {
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
case WIN_PRIVATE:
|
case WIN_PRIVATE:
|
||||||
{
|
{
|
||||||
|
@ -106,6 +106,35 @@ wins_get_chat(const char *const barejid)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gint
|
||||||
|
_cmp_unsubscribed_wins(ProfChatWin *a, ProfChatWin *b)
|
||||||
|
{
|
||||||
|
return g_strcmp0(a->barejid, b->barejid);
|
||||||
|
}
|
||||||
|
|
||||||
|
GList*
|
||||||
|
wins_get_chat_unsubscribed(void)
|
||||||
|
{
|
||||||
|
GList *result = NULL;
|
||||||
|
GList *values = g_hash_table_get_values(windows);
|
||||||
|
GList *curr = values;
|
||||||
|
|
||||||
|
while (curr) {
|
||||||
|
ProfWin *window = curr->data;
|
||||||
|
if (window->type == WIN_CHAT) {
|
||||||
|
ProfChatWin *chatwin = (ProfChatWin*)window;
|
||||||
|
PContact contact = roster_get_contact(chatwin->barejid);
|
||||||
|
if (contact == NULL) {
|
||||||
|
result = g_list_insert_sorted(result, chatwin, (GCompareFunc)_cmp_unsubscribed_wins);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
curr = g_list_next(curr);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_list_free(values);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
ProfMucConfWin*
|
ProfMucConfWin*
|
||||||
wins_get_muc_conf(const char *const roomjid)
|
wins_get_muc_conf(const char *const roomjid)
|
||||||
{
|
{
|
||||||
@ -593,7 +622,7 @@ wins_do_notify_remind(void)
|
|||||||
|
|
||||||
while (curr) {
|
while (curr) {
|
||||||
ProfWin *window = curr->data;
|
ProfWin *window = curr->data;
|
||||||
if (win_notify(window)) {
|
if (win_notify_remind(window)) {
|
||||||
g_list_free(values);
|
g_list_free(values);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,7 @@ void wins_remove_nick(const char *const barejid, const char *const oldnick);
|
|||||||
|
|
||||||
ProfWin* wins_get_console(void);
|
ProfWin* wins_get_console(void);
|
||||||
ProfChatWin* wins_get_chat(const char *const barejid);
|
ProfChatWin* wins_get_chat(const char *const barejid);
|
||||||
|
GList* wins_get_chat_unsubscribed(void);
|
||||||
ProfMucWin* wins_get_muc(const char *const roomjid);
|
ProfMucWin* wins_get_muc(const char *const roomjid);
|
||||||
ProfMucConfWin* wins_get_muc_conf(const char *const roomjid);
|
ProfMucConfWin* wins_get_muc_conf(const char *const roomjid);
|
||||||
ProfPrivateWin* wins_get_private(const char *const fulljid);
|
ProfPrivateWin* wins_get_private(const char *const fulljid);
|
||||||
|
@ -497,7 +497,7 @@ ProfWin* win_create_private(const char * const fulljid)
|
|||||||
|
|
||||||
void win_update_virtual(ProfWin *window) {}
|
void win_update_virtual(ProfWin *window) {}
|
||||||
void win_free(ProfWin *window) {}
|
void win_free(ProfWin *window) {}
|
||||||
gboolean win_notify(ProfWin *window)
|
gboolean win_notify_remind(ProfWin *window)
|
||||||
{
|
{
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -115,6 +115,7 @@ roster.presence=
|
|||||||
roster.presence.indent=
|
roster.presence.indent=
|
||||||
roster.status=
|
roster.status=
|
||||||
roster.contacts=
|
roster.contacts=
|
||||||
|
roster.unsubscribed=
|
||||||
roster.rooms=
|
roster.rooms=
|
||||||
roster.rooms.order=
|
roster.rooms.order=
|
||||||
roster.rooms.unread=
|
roster.rooms.unread=
|
||||||
|
@ -113,6 +113,7 @@ roster.presence=true
|
|||||||
roster.presence.indent=-1
|
roster.presence.indent=-1
|
||||||
roster.status=true
|
roster.status=true
|
||||||
roster.contacts=true
|
roster.contacts=true
|
||||||
|
roster.unsubscribed=true
|
||||||
roster.rooms=true
|
roster.rooms=true
|
||||||
roster.rooms.order=name
|
roster.rooms.order=name
|
||||||
roster.rooms.unread=after
|
roster.rooms.unread=after
|
||||||
|
@ -109,6 +109,7 @@ roster.resource=false
|
|||||||
roster.presence=false
|
roster.presence=false
|
||||||
roster.status=true
|
roster.status=true
|
||||||
roster.contacts=true
|
roster.contacts=true
|
||||||
|
roster.unsubscribed=true
|
||||||
roster.rooms=true
|
roster.rooms=true
|
||||||
roster.rooms.order=name
|
roster.rooms.order=name
|
||||||
roster.rooms.unread=after
|
roster.rooms.unread=after
|
||||||
|
@ -38,6 +38,7 @@ roster.presence=true
|
|||||||
roster.presence.indent=1
|
roster.presence.indent=1
|
||||||
roster.status=true
|
roster.status=true
|
||||||
roster.contacts=true
|
roster.contacts=true
|
||||||
|
roster.unsubscribed=true
|
||||||
roster.rooms=true
|
roster.rooms=true
|
||||||
roster.rooms.order=unread
|
roster.rooms.order=unread
|
||||||
roster.rooms.unread=after
|
roster.rooms.unread=after
|
||||||
|
@ -31,6 +31,7 @@ roster.resource=false
|
|||||||
roster.presence=false
|
roster.presence=false
|
||||||
roster.status=false
|
roster.status=false
|
||||||
roster.contacts=true
|
roster.contacts=true
|
||||||
|
roster.unsubscribed=false
|
||||||
roster.rooms=false
|
roster.rooms=false
|
||||||
roster.rooms.unread=off
|
roster.rooms.unread=off
|
||||||
roster.count=off
|
roster.count=off
|
||||||
|
Loading…
Reference in New Issue
Block a user