summaryrefslogtreecommitdiff
path: root/plugins/MessageState/src/clist_extra.cpp
blob: 031c273ea4d40f76aae18d5660590d9a47bfe02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "stdafx.h"

HANDLE hExtraIcon = NULL;

int ExtraIconsApply(WPARAM hContact, LPARAM)
{
	if (hContact == NULL) return 0;

	if (HasUnread(hContact))
		ExtraIcon_SetIconByName(hExtraIcon, hContact, "clist_unread_icon");
	else
		ExtraIcon_Clear(hExtraIcon, hContact);

	return 0;
}

void InitClistExtraIcon()
{
	hExtraIcon = ExtraIcon_RegisterIcolib("messagestate_unread", LPGEN("MessageState unread extra icon"), "clist_unread_icon");
	HookEvent(ME_CLIST_EXTRA_IMAGE_APPLY, ExtraIconsApply);
	
	for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact))
		ExtraIconsApply(hContact, 0);
}