1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:47:46 +02:00
toxic/src/friendlist.h

86 lines
2.4 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* friendlist.h
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Toxic is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Toxic. If not, see <http://www.gnu.org/licenses/>.
*
*/
2013-08-13 00:50:43 +02:00
#ifndef FRIENDLIST_H_53I41IM
#define FRIENDLIST_H_53I41IM
#include <time.h>
#include "toxic.h"
#include "windows.h"
#include "file_senders.h"
struct FileReceiver {
char filenames[MAX_FILES][MAX_STR_SIZE];
FILE *files[MAX_FILES];
bool pending[MAX_FILES];
uint64_t size[MAX_FILES];
2014-07-27 23:14:28 +02:00
double bps[MAX_FILES];
uint64_t last_progress[MAX_FILES];
uint32_t line_id[MAX_FILES];
};
struct LastOnline {
uint64_t last_on;
struct tm tm;
char hour_min_str[TIME_STR_SIZE]; /* holds 12/24-hour time string e.g. "10:43 PM" */
};
2013-11-30 00:52:21 +01:00
typedef struct {
2014-07-08 01:08:33 +02:00
char name[TOXIC_MAX_NAME_LENGTH];
int namelength;
char statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH];
2013-11-30 00:52:21 +01:00
uint16_t statusmsg_len;
char groupchat_key[TOX_CLIENT_ID_SIZE];
bool groupchat_pending;
char pub_key[TOX_CLIENT_ID_SIZE];
2014-03-19 02:48:26 +01:00
int32_t num;
2013-11-30 00:52:21 +01:00
int chatwin;
bool active;
bool online;
2014-03-21 01:50:48 +01:00
uint8_t is_typing;
bool logging_on; /* saves preference for friend irrespective of chat windows */
2014-03-19 02:48:26 +01:00
uint8_t status;
struct LastOnline last_online;
2013-11-30 00:52:21 +01:00
struct FileReceiver file_receiver;
} ToxicFriend;
2014-07-31 18:48:49 +02:00
typedef struct {
char name[TOXIC_MAX_NAME_LENGTH];
int namelength;
char pub_key[TOX_CLIENT_ID_SIZE];
int32_t num;
bool active;
} BlockedFriend;
ToxWindow new_friendlist(void);
2014-03-19 08:14:08 +01:00
void disable_chatwin(int32_t f_num);
int get_friendnum(uint8_t *name);
2014-07-31 18:48:49 +02:00
int load_blocklist(char *data);
2013-11-25 00:22:48 +01:00
2014-03-19 08:14:08 +01:00
void friendlist_onFriendAdded(ToxWindow *self, Tox *m, int32_t num, bool sort);
2014-03-05 14:01:12 +01:00
2013-11-25 00:22:48 +01:00
/* sorts friendlist_index first by connection status then alphabetically */
2014-03-14 04:30:44 +01:00
void sort_friendlist_index(void);
2013-08-13 00:50:43 +02:00
#endif /* end of include guard: FRIENDLIST_H_53I41IM */