2013-07-30 21:47:40 +02:00
|
|
|
/*
|
|
|
|
* Toxic -- Tox Curses Client
|
|
|
|
*/
|
|
|
|
|
2013-08-23 09:50:04 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-30 21:47:40 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
2013-08-28 20:47:47 +02:00
|
|
|
#include <stdlib.h>
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-08-24 04:15:15 +02:00
|
|
|
#include <tox/tox.h>
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-11-19 21:32:35 +01:00
|
|
|
#include "chat.h"
|
2013-08-13 00:50:43 +02:00
|
|
|
#include "friendlist.h"
|
2013-11-24 23:12:24 +01:00
|
|
|
#include "misc_tools.h"
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-08-28 11:46:09 +02:00
|
|
|
extern char *DATA_FILE;
|
2013-09-07 01:59:45 +02:00
|
|
|
extern ToxWindow *prompt;
|
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
static int max_friends_index = 0; /* marks the index of the last friend in friends array */
|
2013-07-31 19:20:03 +02:00
|
|
|
static int num_selected = 0;
|
2014-02-08 05:28:17 +01:00
|
|
|
static int num_friends = 0;
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-11-30 00:52:21 +01:00
|
|
|
ToxicFriend friends[MAX_FRIENDS_NUM];
|
2013-11-24 23:12:24 +01:00
|
|
|
static int friendlist_index[MAX_FRIENDS_NUM] = {0};
|
|
|
|
|
2013-12-14 02:57:32 +01:00
|
|
|
#define S_WEIGHT 100
|
|
|
|
|
2013-11-26 00:49:31 +01:00
|
|
|
static int index_name_cmp(const void *n1, const void *n2)
|
2013-11-24 23:12:24 +01:00
|
|
|
{
|
2013-12-08 07:18:10 +01:00
|
|
|
int res = qsort_strcasecmp_hlpr(friends[*(int *) n1].name, friends[*(int *) n2].name);
|
2013-11-25 00:22:48 +01:00
|
|
|
|
|
|
|
/* Use weight to make qsort always put online friends before offline */
|
2013-12-14 02:57:32 +01:00
|
|
|
res = friends[*(int *) n1].online ? (res - S_WEIGHT) : (res + S_WEIGHT);
|
|
|
|
res = friends[*(int *) n2].online ? (res + S_WEIGHT) : (res - S_WEIGHT);
|
2013-11-25 00:22:48 +01:00
|
|
|
|
|
|
|
return res;
|
2013-11-24 23:12:24 +01:00
|
|
|
}
|
2013-11-09 08:50:32 +01:00
|
|
|
|
2013-11-25 00:22:48 +01:00
|
|
|
/* sorts friendlist_index first by connection status then alphabetically */
|
2014-02-08 00:44:10 +01:00
|
|
|
void sort_friendlist_index(Tox *m)
|
2013-11-09 08:50:32 +01:00
|
|
|
{
|
|
|
|
int i;
|
2013-11-25 04:31:58 +01:00
|
|
|
int n = 0;
|
2013-11-09 08:50:32 +01:00
|
|
|
|
|
|
|
for (i = 0; i < max_friends_index; ++i) {
|
2013-11-25 00:22:48 +01:00
|
|
|
if (friends[i].active)
|
2013-11-25 04:31:58 +01:00
|
|
|
friendlist_index[n++] = friends[i].num;
|
2013-11-09 08:50:32 +01:00
|
|
|
}
|
|
|
|
|
2014-02-08 05:28:17 +01:00
|
|
|
qsort(friendlist_index, num_friends, sizeof(int), index_name_cmp);
|
2013-11-09 08:50:32 +01:00
|
|
|
}
|
|
|
|
|
2013-10-16 23:59:56 +02:00
|
|
|
static void friendlist_onMessage(ToxWindow *self, Tox *m, int num, uint8_t *str, uint16_t len)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (num >= max_friends_index)
|
2013-08-16 19:11:09 +02:00
|
|
|
return;
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
if (friends[num].chatwin == -1) {
|
|
|
|
if (num_active_windows() < MAX_WINDOWS_NUM) {
|
|
|
|
friends[num].chatwin = add_window(m, new_chat(m, friends[num].num));
|
|
|
|
} else {
|
|
|
|
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
|
|
|
|
tox_get_name(m, num, nick);
|
|
|
|
nick[TOXIC_MAX_NAME_LENGTH] = '\0';
|
|
|
|
wprintw(prompt->window, "%s: %s\n", nick, str);
|
|
|
|
|
2013-12-06 11:07:35 +01:00
|
|
|
prep_prompt_win();
|
2013-11-30 11:35:25 +01:00
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
wprintw(prompt->window, "* Warning: Too many windows are open.\n");
|
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
|
|
|
|
alert_window(prompt, WINDOW_ALERT_1, true);
|
|
|
|
}
|
|
|
|
}
|
2013-07-31 20:20:16 +02:00
|
|
|
}
|
|
|
|
|
2013-10-16 23:59:56 +02:00
|
|
|
static void friendlist_onConnectionChange(ToxWindow *self, Tox *m, int num, uint8_t status)
|
2013-09-05 03:25:59 +02:00
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (num >= max_friends_index)
|
2013-09-05 03:25:59 +02:00
|
|
|
return;
|
|
|
|
|
2013-09-15 22:38:38 +02:00
|
|
|
friends[num].online = status == 1 ? true : false;
|
2014-02-08 00:44:10 +01:00
|
|
|
sort_friendlist_index(m);
|
2013-09-05 03:25:59 +02:00
|
|
|
}
|
|
|
|
|
2014-02-08 00:44:10 +01:00
|
|
|
static void friendlist_onNickChange(ToxWindow *self, Tox *m, int num, uint8_t *str, uint16_t len)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (len > TOX_MAX_NAME_LENGTH || num >= max_friends_index)
|
2013-08-16 19:11:09 +02:00
|
|
|
return;
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-10-19 05:08:37 +02:00
|
|
|
str[TOXIC_MAX_NAME_LENGTH] = '\0';
|
|
|
|
len = strlen(str) + 1;
|
2013-09-23 07:22:21 +02:00
|
|
|
memcpy(friends[num].name, str, len);
|
2013-09-18 01:11:23 +02:00
|
|
|
friends[num].namelength = len;
|
2014-02-08 00:44:10 +01:00
|
|
|
sort_friendlist_index(m);
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2013-10-16 23:59:56 +02:00
|
|
|
static void friendlist_onStatusChange(ToxWindow *self, Tox *m, int num, TOX_USERSTATUS status)
|
2013-09-05 03:25:59 +02:00
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (num >= max_friends_index)
|
2013-09-05 03:25:59 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
friends[num].status = status;
|
|
|
|
}
|
|
|
|
|
2013-10-16 23:59:56 +02:00
|
|
|
static void friendlist_onStatusMessageChange(ToxWindow *self, int num, uint8_t *str, uint16_t len)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (len > TOX_MAX_STATUSMESSAGE_LENGTH || num >= max_friends_index)
|
2013-08-16 19:11:09 +02:00
|
|
|
return;
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-09-23 07:22:21 +02:00
|
|
|
memcpy(friends[num].statusmsg, str, len);
|
2013-09-10 10:04:13 +02:00
|
|
|
friends[num].statusmsg_len = len;
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2013-12-04 07:08:26 +01:00
|
|
|
static void friendlist_onFriendAdded(ToxWindow *self, Tox *m, int num, bool sort)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-11-09 08:50:32 +01:00
|
|
|
if (max_friends_index < 0 || max_friends_index >= MAX_FRIENDS_NUM)
|
2013-11-15 20:59:49 +01:00
|
|
|
return;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-08-28 11:46:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
for (i = 0; i <= max_friends_index; ++i) {
|
2013-08-28 11:46:09 +02:00
|
|
|
if (!friends[i].active) {
|
|
|
|
friends[i].num = num;
|
|
|
|
friends[i].active = true;
|
|
|
|
friends[i].chatwin = -1;
|
2013-09-05 03:25:59 +02:00
|
|
|
friends[i].online = false;
|
2013-09-05 07:34:23 +02:00
|
|
|
friends[i].status = TOX_USERSTATUS_NONE;
|
2013-11-29 16:14:59 +01:00
|
|
|
friends[i].namelength = tox_get_name(m, num, friends[i].name);
|
2014-02-22 03:21:12 +01:00
|
|
|
tox_get_client_id(m, num, friends[i].pub_key);
|
2013-09-04 03:31:50 +02:00
|
|
|
|
2013-09-18 01:11:23 +02:00
|
|
|
if (friends[i].namelength == -1 || friends[i].name[0] == '\0') {
|
2013-11-19 00:52:46 +01:00
|
|
|
strcpy(friends[i].name, (uint8_t *) UNKNOWN_NAME);
|
2013-09-18 01:11:23 +02:00
|
|
|
friends[i].namelength = strlen(UNKNOWN_NAME) + 1;
|
2013-10-19 05:08:37 +02:00
|
|
|
} else { /* Enforce toxic's maximum name length */
|
|
|
|
friends[i].name[TOXIC_MAX_NAME_LENGTH] = '\0';
|
|
|
|
friends[i].namelength = strlen(friends[i].name) + 1;
|
2013-09-18 01:11:23 +02:00
|
|
|
}
|
2013-09-04 03:31:50 +02:00
|
|
|
|
2014-02-08 05:28:17 +01:00
|
|
|
num_friends = tox_count_friendlist(m);
|
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
if (i == max_friends_index)
|
|
|
|
++max_friends_index;
|
|
|
|
|
2013-12-04 07:08:26 +01:00
|
|
|
if (sort)
|
2014-02-08 00:44:10 +01:00
|
|
|
sort_friendlist_index(m);
|
2013-12-04 07:08:26 +01:00
|
|
|
|
2013-11-15 20:59:49 +01:00
|
|
|
return;
|
2013-08-28 11:46:09 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2013-10-16 23:59:56 +02:00
|
|
|
static void friendlist_onFileSendRequest(ToxWindow *self, Tox *m, int num, uint8_t filenum,
|
|
|
|
uint64_t filesize, uint8_t *filename, uint16_t filename_len)
|
2013-10-11 06:23:39 +02:00
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (num >= max_friends_index)
|
2013-10-11 06:23:39 +02:00
|
|
|
return;
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
if (friends[num].chatwin == -1) {
|
|
|
|
if (num_active_windows() < MAX_WINDOWS_NUM) {
|
|
|
|
friends[num].chatwin = add_window(m, new_chat(m, friends[num].num));
|
|
|
|
} else {
|
|
|
|
tox_file_send_control(m, num, 1, filenum, TOX_FILECONTROL_KILL, 0, 0);
|
|
|
|
|
|
|
|
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
|
|
|
|
tox_get_name(m, num, nick);
|
|
|
|
nick[TOXIC_MAX_NAME_LENGTH] = '\0';
|
|
|
|
|
2013-12-06 11:07:35 +01:00
|
|
|
prep_prompt_win();
|
2013-11-30 11:35:25 +01:00
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
wprintw(prompt->window, "* File transfer from %s failed: too many windows are open.\n", nick);
|
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
|
|
|
|
alert_window(prompt, WINDOW_ALERT_1, true);
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 06:23:39 +02:00
|
|
|
}
|
|
|
|
|
2013-11-10 03:43:56 +01:00
|
|
|
static void friendlist_onGroupInvite(ToxWindow *self, Tox *m, int num, uint8_t *group_pub_key)
|
|
|
|
{
|
2013-11-30 11:35:25 +01:00
|
|
|
if (num >= max_friends_index)
|
2013-11-10 03:43:56 +01:00
|
|
|
return;
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
if (friends[num].chatwin == -1) {
|
|
|
|
if (num_active_windows() < MAX_WINDOWS_NUM) {
|
|
|
|
friends[num].chatwin = add_window(m, new_chat(m, friends[num].num));
|
|
|
|
} else {
|
|
|
|
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
|
|
|
|
tox_get_name(m, num, nick);
|
|
|
|
nick[TOXIC_MAX_NAME_LENGTH] = '\0';
|
|
|
|
|
2013-12-06 11:07:35 +01:00
|
|
|
prep_prompt_win();
|
2013-11-30 11:35:25 +01:00
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
wprintw(prompt->window, "* Group chat invite from %s failed: too many windows are open.\n", nick);
|
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
|
|
|
|
alert_window(prompt, WINDOW_ALERT_1, true);
|
|
|
|
}
|
|
|
|
}
|
2013-11-10 03:43:56 +01:00
|
|
|
}
|
|
|
|
|
2013-11-27 07:54:22 +01:00
|
|
|
static void select_friend(ToxWindow *self, Tox *m, wint_t key)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
if (key == KEY_UP) {
|
2013-11-09 08:50:32 +01:00
|
|
|
if (--num_selected < 0)
|
|
|
|
num_selected = num_friends - 1;
|
2013-08-16 19:11:09 +02:00
|
|
|
} else if (key == KEY_DOWN) {
|
2013-11-09 08:50:32 +01:00
|
|
|
num_selected = (num_selected + 1) % num_friends;
|
|
|
|
}
|
2013-08-28 11:46:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void delete_friend(Tox *m, ToxWindow *self, int f_num, wint_t key)
|
|
|
|
{
|
2013-11-29 16:14:59 +01:00
|
|
|
tox_del_friend(m, f_num);
|
2013-11-29 23:48:08 +01:00
|
|
|
memset(&friends[f_num], 0, sizeof(ToxicFriend));
|
2013-08-28 11:46:09 +02:00
|
|
|
|
|
|
|
int i;
|
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
for (i = max_friends_index; i > 0; --i) {
|
2013-08-28 11:53:47 +02:00
|
|
|
if (friends[i-1].active)
|
2013-08-28 11:46:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
max_friends_index = i;
|
2014-02-08 05:28:17 +01:00
|
|
|
num_friends = tox_count_friendlist(m);
|
2013-09-05 07:34:23 +02:00
|
|
|
|
2013-11-18 05:14:27 +01:00
|
|
|
/* make sure num_selected stays within num_friends range */
|
|
|
|
if (num_friends && num_selected == num_friends)
|
2013-11-18 04:28:22 +01:00
|
|
|
--num_selected;
|
|
|
|
|
2014-02-08 00:44:10 +01:00
|
|
|
sort_friendlist_index(m);
|
2013-09-05 07:34:23 +02:00
|
|
|
store_data(m, DATA_FILE);
|
2013-08-28 11:46:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void friendlist_onKey(ToxWindow *self, Tox *m, wint_t key)
|
|
|
|
{
|
2014-02-08 05:28:17 +01:00
|
|
|
if (num_friends == 0)
|
2013-11-18 04:28:22 +01:00
|
|
|
return;
|
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
int f = friendlist_index[num_selected];
|
|
|
|
|
2013-11-18 04:28:22 +01:00
|
|
|
if (key == '\n') {
|
2013-08-16 19:11:09 +02:00
|
|
|
/* Jump to chat window if already open */
|
2013-11-09 08:50:32 +01:00
|
|
|
if (friends[f].chatwin != -1) {
|
|
|
|
set_active_window(friends[f].chatwin);
|
2013-11-30 11:35:25 +01:00
|
|
|
} else if (num_active_windows() < MAX_WINDOWS_NUM) {
|
2013-11-19 21:32:35 +01:00
|
|
|
friends[f].chatwin = add_window(m, new_chat(m, friends[f].num));
|
2013-11-09 08:50:32 +01:00
|
|
|
set_active_window(friends[f].chatwin);
|
2013-11-30 11:35:25 +01:00
|
|
|
} else {
|
2013-12-06 11:07:35 +01:00
|
|
|
prep_prompt_win();
|
2013-11-30 11:35:25 +01:00
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
wprintw(prompt->window, "* Warning: Too many windows are open.\n");
|
|
|
|
wattron(prompt->window, COLOR_PAIR(RED));
|
|
|
|
|
|
|
|
alert_window(prompt, WINDOW_ALERT_1, true);
|
2013-08-05 07:57:29 +02:00
|
|
|
}
|
2013-12-15 01:29:45 +01:00
|
|
|
} else if (key == KEY_DC) {
|
2013-11-09 08:50:32 +01:00
|
|
|
delete_friend(m, self, f, key);
|
2013-11-18 04:28:22 +01:00
|
|
|
} else {
|
2013-11-27 07:54:22 +01:00
|
|
|
select_friend(self, m, key);
|
2013-11-18 04:28:22 +01:00
|
|
|
}
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2013-12-15 01:29:45 +01:00
|
|
|
#define FLIST_OFST 4 /* Accounts for the lines at top */
|
2013-12-03 00:23:04 +01:00
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
static void friendlist_onDraw(ToxWindow *self, Tox *m)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
curs_set(0);
|
|
|
|
werase(self->window);
|
2013-12-03 00:23:04 +01:00
|
|
|
int x2, y2;
|
|
|
|
getmaxyx(self->window, y2, x2);
|
2013-11-15 23:03:24 +01:00
|
|
|
|
2013-12-03 00:23:04 +01:00
|
|
|
bool fix_statuses = x2 != self->x; /* true if window x axis has changed */
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-12-15 01:29:45 +01:00
|
|
|
wattron(self->window, COLOR_PAIR(CYAN));
|
|
|
|
wprintw(self->window, " Open a chat window with the");
|
|
|
|
wattron(self->window, A_BOLD);
|
|
|
|
wprintw(self->window, " Enter ");
|
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
wprintw(self->window, "key. Delete a friend with the");
|
|
|
|
wattron(self->window, A_BOLD);
|
|
|
|
wprintw(self->window, " Delete ");
|
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
wprintw(self->window, "key.\n\n");
|
|
|
|
wattroff(self->window, COLOR_PAIR(CYAN));
|
|
|
|
|
|
|
|
wattron(self->window, A_BOLD);
|
2014-02-08 05:31:35 +01:00
|
|
|
wprintw(self->window, " Friends: %d/%d \n\n", tox_get_num_online_friends(m), num_friends);
|
2013-12-15 01:29:45 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-12-03 09:44:02 +01:00
|
|
|
if ((y2 - FLIST_OFST) <= 0) /* don't allow division by zero */
|
2013-12-03 00:34:14 +01:00
|
|
|
return;
|
|
|
|
|
2013-12-03 00:23:04 +01:00
|
|
|
/* Determine which portion of friendlist to draw based on current position */
|
|
|
|
int page = num_selected / (y2 - FLIST_OFST);
|
|
|
|
int start = (y2 - FLIST_OFST) * page;
|
|
|
|
int end = y2 - FLIST_OFST + start;
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-12-03 00:23:04 +01:00
|
|
|
for (i = start; i < num_friends && i < end; ++i) {
|
2013-11-09 08:50:32 +01:00
|
|
|
int f = friendlist_index[i];
|
2013-11-18 04:28:22 +01:00
|
|
|
bool f_selected = false;
|
2013-11-09 08:50:32 +01:00
|
|
|
|
|
|
|
if (friends[f].active) {
|
2013-11-18 01:45:53 +01:00
|
|
|
if (i == num_selected) {
|
|
|
|
wattron(self->window, A_BOLD);
|
2013-09-02 04:11:47 +02:00
|
|
|
wprintw(self->window, " > ");
|
2013-11-18 01:45:53 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
f_selected = true;
|
|
|
|
} else {
|
2013-09-02 04:11:47 +02:00
|
|
|
wprintw(self->window, " ");
|
2013-11-18 01:45:53 +01:00
|
|
|
}
|
2013-09-08 09:18:34 +02:00
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
if (friends[f].online) {
|
|
|
|
TOX_USERSTATUS status = friends[f].status;
|
2013-09-05 06:47:33 +02:00
|
|
|
int colour = WHITE;
|
2013-09-02 04:11:47 +02:00
|
|
|
|
2013-11-12 07:50:04 +01:00
|
|
|
switch (status) {
|
2013-09-02 04:11:47 +02:00
|
|
|
case TOX_USERSTATUS_NONE:
|
2013-09-05 06:47:33 +02:00
|
|
|
colour = GREEN;
|
2013-09-02 04:11:47 +02:00
|
|
|
break;
|
|
|
|
case TOX_USERSTATUS_AWAY:
|
2013-09-05 06:47:33 +02:00
|
|
|
colour = YELLOW;
|
2013-09-02 04:11:47 +02:00
|
|
|
break;
|
|
|
|
case TOX_USERSTATUS_BUSY:
|
2013-09-05 06:47:33 +02:00
|
|
|
colour = RED;
|
2013-09-02 04:11:47 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-09-04 03:31:50 +02:00
|
|
|
wprintw(self->window, "[");
|
2013-09-05 07:34:23 +02:00
|
|
|
wattron(self->window, COLOR_PAIR(colour) | A_BOLD);
|
2013-09-04 03:31:50 +02:00
|
|
|
wprintw(self->window, "O");
|
2013-09-05 07:34:23 +02:00
|
|
|
wattroff(self->window, COLOR_PAIR(colour) | A_BOLD);
|
2013-11-18 01:45:53 +01:00
|
|
|
wprintw(self->window, "]");
|
|
|
|
|
|
|
|
if (f_selected)
|
|
|
|
wattron(self->window, A_BOLD);
|
|
|
|
|
|
|
|
wprintw(self->window, "%s", friends[f].name);
|
|
|
|
|
|
|
|
if (f_selected)
|
|
|
|
wattroff(self->window, A_BOLD);
|
2013-09-10 10:04:13 +02:00
|
|
|
|
2013-11-09 08:50:32 +01:00
|
|
|
/* Reset friends[f].statusmsg on window resize */
|
2013-11-15 23:03:24 +01:00
|
|
|
if (fix_statuses) {
|
2013-09-13 08:02:49 +02:00
|
|
|
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH] = {'\0'};
|
2013-11-29 16:14:59 +01:00
|
|
|
tox_get_status_message(m, friends[f].num, statusmsg, TOX_MAX_STATUSMESSAGE_LENGTH);
|
2013-11-09 08:50:32 +01:00
|
|
|
snprintf(friends[f].statusmsg, sizeof(friends[f].statusmsg), "%s", statusmsg);
|
2013-11-29 16:14:59 +01:00
|
|
|
friends[f].statusmsg_len = tox_get_status_message_size(m, f);
|
2013-09-13 08:02:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Truncate note if it doesn't fit on one line */
|
2013-12-03 00:23:04 +01:00
|
|
|
uint16_t maxlen = x2 - getcurx(self->window) - 4;
|
2013-11-09 08:50:32 +01:00
|
|
|
if (friends[f].statusmsg_len > maxlen) {
|
2013-11-15 23:03:24 +01:00
|
|
|
friends[f].statusmsg[maxlen-3] = '\0';
|
|
|
|
strcat(friends[f].statusmsg, "...");
|
2013-11-09 08:50:32 +01:00
|
|
|
friends[f].statusmsg[maxlen] = '\0';
|
|
|
|
friends[f].statusmsg_len = maxlen;
|
2013-09-10 10:04:13 +02:00
|
|
|
}
|
|
|
|
|
2013-11-18 01:45:53 +01:00
|
|
|
wprintw(self->window, " (%s)\n", friends[f].statusmsg);
|
2013-09-02 04:11:47 +02:00
|
|
|
} else {
|
2013-11-18 01:45:53 +01:00
|
|
|
wprintw(self->window, "[O]");
|
|
|
|
|
|
|
|
if (f_selected)
|
|
|
|
wattron(self->window, A_BOLD);
|
|
|
|
|
|
|
|
wprintw(self->window, "%s\n", friends[f].name);
|
|
|
|
|
|
|
|
if (f_selected)
|
|
|
|
wattroff(self->window, A_BOLD);
|
2013-09-02 04:11:47 +02:00
|
|
|
}
|
2013-11-10 03:43:56 +01:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
2013-09-05 03:25:59 +02:00
|
|
|
|
2013-12-03 00:23:04 +01:00
|
|
|
self->x = x2;
|
2013-08-16 19:11:09 +02:00
|
|
|
wrefresh(self->window);
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
void disable_chatwin(int f_num)
|
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
friends[f_num].chatwin = -1;
|
2013-08-05 07:57:29 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
static void friendlist_onInit(ToxWindow *self, Tox *m)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-07-30 21:47:40 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-03 01:32:35 +01:00
|
|
|
ToxWindow new_friendlist(void)
|
2013-08-16 19:11:09 +02:00
|
|
|
{
|
|
|
|
ToxWindow ret;
|
|
|
|
memset(&ret, 0, sizeof(ret));
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
ret.active = true;
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
ret.onKey = &friendlist_onKey;
|
|
|
|
ret.onDraw = &friendlist_onDraw;
|
|
|
|
ret.onInit = &friendlist_onInit;
|
2013-11-15 20:59:49 +01:00
|
|
|
ret.onFriendAdded = &friendlist_onFriendAdded;
|
2013-08-16 19:11:09 +02:00
|
|
|
ret.onMessage = &friendlist_onMessage;
|
2013-09-05 03:25:59 +02:00
|
|
|
ret.onConnectionChange = &friendlist_onConnectionChange;
|
2013-08-16 19:11:09 +02:00
|
|
|
ret.onAction = &friendlist_onMessage; // Action has identical behaviour to message
|
|
|
|
ret.onNickChange = &friendlist_onNickChange;
|
2013-09-05 03:25:59 +02:00
|
|
|
ret.onStatusChange = &friendlist_onStatusChange;
|
2013-09-03 05:27:34 +02:00
|
|
|
ret.onStatusMessageChange = &friendlist_onStatusMessageChange;
|
2013-10-11 06:23:39 +02:00
|
|
|
ret.onFileSendRequest = &friendlist_onFileSendRequest;
|
2013-11-10 03:43:56 +01:00
|
|
|
ret.onGroupInvite = &friendlist_onGroupInvite;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-09-06 00:24:58 +02:00
|
|
|
strcpy(ret.name, "friends");
|
2013-08-16 19:11:09 +02:00
|
|
|
return ret;
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|