2014-06-22 02:18:23 +02:00
|
|
|
/* windows.h
|
2014-02-25 08:28:24 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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-07-31 20:20:16 +02:00
|
|
|
*/
|
2013-09-15 22:38:38 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifndef WINDOWS_H
|
|
|
|
#define WINDOWS_H
|
2013-07-31 20:20:16 +02:00
|
|
|
|
2014-04-08 12:09:42 +02:00
|
|
|
#include <pthread.h>
|
2013-08-21 23:19:35 +02:00
|
|
|
#include <wctype.h>
|
|
|
|
#include <wchar.h>
|
2014-09-22 20:27:33 +02:00
|
|
|
#include <signal.h>
|
2013-08-23 23:03:44 +02:00
|
|
|
|
2013-08-24 04:15:15 +02:00
|
|
|
#include <tox/tox.h>
|
2013-08-23 23:03:44 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-04-19 23:58:13 +02:00
|
|
|
#include <tox/toxav.h>
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* AUDIO */
|
2014-03-07 03:14:04 +01:00
|
|
|
|
2014-06-22 02:18:23 +02:00
|
|
|
#include "toxic.h"
|
2013-11-19 00:52:46 +01:00
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
#define MAX_WINDOWS_NUM 32
|
2014-11-15 21:55:45 +01:00
|
|
|
#define MAX_WINDOW_NAME_LENGTH 22
|
2014-06-22 02:18:23 +02:00
|
|
|
#define CURS_Y_OFFSET 1 /* y-axis cursor offset for chat contexts */
|
|
|
|
#define CHATBOX_HEIGHT 2
|
2013-12-06 04:55:14 +01:00
|
|
|
|
2013-09-05 06:47:33 +02:00
|
|
|
/* Curses foreground colours (background is black) */
|
2013-11-10 07:23:07 +01:00
|
|
|
enum {
|
|
|
|
WHITE,
|
|
|
|
GREEN,
|
|
|
|
CYAN,
|
|
|
|
RED,
|
|
|
|
BLUE,
|
|
|
|
YELLOW,
|
|
|
|
MAGENTA,
|
|
|
|
BLACK,
|
2014-06-22 02:18:23 +02:00
|
|
|
} C_COLOURS;
|
2013-09-05 06:47:33 +02:00
|
|
|
|
2014-08-08 01:53:47 +02:00
|
|
|
/* tab alert types: lower types take priority (this relies on the order of C_COLOURS) */
|
2014-07-21 01:12:13 +02:00
|
|
|
typedef enum {
|
|
|
|
WINDOW_ALERT_NONE = 0,
|
|
|
|
WINDOW_ALERT_0 = GREEN,
|
|
|
|
WINDOW_ALERT_1 = RED,
|
|
|
|
WINDOW_ALERT_2 = MAGENTA,
|
2014-06-22 02:18:23 +02:00
|
|
|
} WINDOW_ALERTS;
|
2014-03-24 12:18:58 +01:00
|
|
|
|
2014-03-30 22:40:13 +02:00
|
|
|
/* Fixes text color problem on some terminals.
|
2013-09-26 15:51:21 +02:00
|
|
|
Uncomment if necessary */
|
2014-03-11 23:22:27 +01:00
|
|
|
/* #define URXVT_FIX */
|
2013-09-26 15:51:21 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
struct Winthread {
|
2014-06-22 02:18:23 +02:00
|
|
|
pthread_t tid;
|
|
|
|
pthread_mutex_t lock;
|
2014-09-22 20:27:33 +02:00
|
|
|
volatile sig_atomic_t sig_exit_toxic;
|
|
|
|
volatile sig_atomic_t flag_resize;
|
2014-06-22 02:18:23 +02:00
|
|
|
};
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
struct cqueue_thread {
|
2014-09-06 19:18:42 +02:00
|
|
|
pthread_t tid;
|
|
|
|
};
|
|
|
|
|
2014-11-29 05:51:32 +01:00
|
|
|
struct audio_thread {
|
|
|
|
pthread_t tid;
|
|
|
|
};
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
struct arg_opts {
|
|
|
|
int ignore_data_file;
|
|
|
|
int use_ipv4;
|
2014-08-15 00:45:41 +02:00
|
|
|
int force_tcp;
|
2014-08-16 01:04:39 +02:00
|
|
|
int debug;
|
2014-07-31 18:48:49 +02:00
|
|
|
int default_locale;
|
2014-08-02 19:04:29 +02:00
|
|
|
int use_custom_data;
|
2014-08-13 00:59:27 +02:00
|
|
|
int no_connect;
|
2014-09-15 22:17:58 +02:00
|
|
|
int encrypt_data;
|
2014-09-19 05:50:51 +02:00
|
|
|
int unencrypt_data;
|
2014-08-13 01:13:57 +02:00
|
|
|
char dns_path[MAX_STR_SIZE];
|
2014-07-31 18:48:49 +02:00
|
|
|
char config_path[MAX_STR_SIZE];
|
|
|
|
char nodes_path[MAX_STR_SIZE];
|
2014-08-15 02:31:52 +02:00
|
|
|
|
2014-12-27 19:12:16 +01:00
|
|
|
uint8_t proxy_type;
|
2014-08-15 02:31:52 +02:00
|
|
|
char proxy_address[256];
|
|
|
|
uint16_t proxy_port;
|
2014-07-31 18:48:49 +02:00
|
|
|
};
|
|
|
|
|
2013-11-29 23:48:08 +01:00
|
|
|
typedef struct ToxWindow ToxWindow;
|
|
|
|
typedef struct StatusBar StatusBar;
|
2013-12-05 04:33:04 +01:00
|
|
|
typedef struct PromptBuf PromptBuf;
|
2013-11-29 23:48:08 +01:00
|
|
|
typedef struct ChatContext ChatContext;
|
2014-07-04 09:24:29 +02:00
|
|
|
typedef struct Help Help;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-11-29 23:48:08 +01:00
|
|
|
struct ToxWindow {
|
2014-03-30 22:40:13 +02:00
|
|
|
void(*onKey)(ToxWindow *, Tox *, wint_t, bool);
|
2013-08-23 23:03:44 +02:00
|
|
|
void(*onDraw)(ToxWindow *, Tox *);
|
|
|
|
void(*onInit)(ToxWindow *, Tox *);
|
2014-07-07 04:15:35 +02:00
|
|
|
void(*onFriendRequest)(ToxWindow *, Tox *, const char *, const char *, uint16_t);
|
2014-03-19 02:48:26 +01:00
|
|
|
void(*onFriendAdded)(ToxWindow *, Tox *, int32_t, bool);
|
|
|
|
void(*onConnectionChange)(ToxWindow *, Tox *, int32_t, uint8_t);
|
2014-07-07 04:15:35 +02:00
|
|
|
void(*onMessage)(ToxWindow *, Tox *, int32_t, const char *, uint16_t);
|
|
|
|
void(*onNickChange)(ToxWindow *, Tox *, int32_t, const char *, uint16_t);
|
2014-03-19 02:48:26 +01:00
|
|
|
void(*onStatusChange)(ToxWindow *, Tox *, int32_t, uint8_t);
|
2014-07-07 04:15:35 +02:00
|
|
|
void(*onStatusMessageChange)(ToxWindow *, int32_t, const char *, uint16_t);
|
|
|
|
void(*onAction)(ToxWindow *, Tox *, int32_t, const char *, uint16_t);
|
|
|
|
void(*onFileSendRequest)(ToxWindow *, Tox *, int32_t, uint8_t, uint64_t, const char *, uint16_t);
|
|
|
|
void(*onFileControl)(ToxWindow *, Tox *, int32_t, uint8_t, uint8_t, uint8_t, const char *, uint16_t);
|
|
|
|
void(*onFileData)(ToxWindow *, Tox *, int32_t, uint8_t, const char *, uint16_t);
|
2014-03-21 01:50:48 +01:00
|
|
|
void(*onTypingChange)(ToxWindow *, Tox *, int32_t, uint8_t);
|
2014-09-07 08:43:53 +02:00
|
|
|
void(*onReadReceipt)(ToxWindow *, Tox *, int32_t, uint32_t);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2015-01-23 06:52:09 +01:00
|
|
|
void(*onGroupInvite)(ToxWindow *, Tox *, int32_t, const char *, uint16_t);
|
2015-01-04 07:56:37 +01:00
|
|
|
void(*onGroupMessage)(ToxWindow *, Tox *, int, int, const char *, uint16_t);
|
|
|
|
void(*onGroupAction)(ToxWindow *, Tox *, int, int, const char *, uint16_t);
|
|
|
|
void(*onGroupPrivateMessage)(ToxWindow *, Tox *, int, uint32_t, const char *, uint16_t);
|
|
|
|
void(*onGroupOpCertificate)(ToxWindow *, Tox *, int, uint32_t, uint32_t, uint8_t);
|
|
|
|
void(*onGroupNamelistChange)(ToxWindow *, Tox *, int);
|
|
|
|
void(*onGroupPeerJoin)(ToxWindow *, Tox *, int, uint32_t);
|
|
|
|
void(*onGroupPeerExit)(ToxWindow *, Tox *, int, uint32_t, const char *, uint16_t);
|
|
|
|
void(*onGroupNickChange)(ToxWindow *, Tox *, int, uint32_t, const char *, uint16_t);
|
|
|
|
void(*onGroupTopicChange)(ToxWindow *, Tox *, int, uint32_t, const char *, uint16_t);
|
|
|
|
void(*onGroupSelfJoin)(ToxWindow *, Tox *, int);
|
|
|
|
void(*onGroupSelfTimeout)(ToxWindow *, Tox *, int);
|
2015-01-12 07:09:56 +01:00
|
|
|
void(*onGroupRejected)(ToxWindow *, Tox *, int, uint8_t);
|
2015-01-04 07:56:37 +01:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-03-07 03:14:04 +01:00
|
|
|
|
2014-05-16 20:00:01 +02:00
|
|
|
void(*onInvite)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onRinging)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onStarting)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onEnding)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onError)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onStart)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onCancel)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onReject)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onEnd)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onRequestTimeout)(ToxWindow *, ToxAv *, int);
|
|
|
|
void(*onPeerTimeout)(ToxWindow *, ToxAv *, int);
|
|
|
|
|
2015-01-04 07:56:37 +01:00
|
|
|
int call_idx; /* If in a call will have this index set, otherwise it's -1.
|
2014-06-21 01:58:00 +02:00
|
|
|
* Don't modify outside av callbacks. */
|
|
|
|
int device_selection[2]; /* -1 if not set, if set uses these selections instead of primary device */
|
2014-06-24 00:54:23 +02:00
|
|
|
|
2014-08-02 00:37:02 +02:00
|
|
|
int ringing_sound;
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* AUDIO */
|
2014-03-30 22:40:13 +02:00
|
|
|
|
2014-08-02 00:37:02 +02:00
|
|
|
int active_box; /* For box notify */
|
2015-01-04 07:56:37 +01:00
|
|
|
|
2014-10-03 23:53:50 +02:00
|
|
|
char name[TOXIC_MAX_NAME_LENGTH + 1];
|
2014-03-19 02:48:26 +01:00
|
|
|
int32_t num; /* corresponds to friendnumber in chat windows */
|
2013-11-30 11:35:25 +01:00
|
|
|
bool active;
|
2013-12-07 02:56:30 +01:00
|
|
|
int x;
|
|
|
|
|
2014-02-26 11:23:11 +01:00
|
|
|
bool is_chat;
|
2014-03-02 00:06:35 +01:00
|
|
|
bool is_prompt;
|
2014-06-29 00:40:22 +02:00
|
|
|
bool is_friendlist;
|
2014-10-08 08:45:08 +02:00
|
|
|
bool is_groupchat;
|
|
|
|
int show_peerlist; /* used to toggle groupchat peerlist */
|
2014-02-26 11:23:11 +01:00
|
|
|
|
2014-07-21 01:12:13 +02:00
|
|
|
WINDOW_ALERTS alert;
|
2013-09-07 01:59:45 +02:00
|
|
|
|
2013-11-29 23:48:08 +01:00
|
|
|
ChatContext *chatwin;
|
|
|
|
StatusBar *stb;
|
2014-07-04 09:24:29 +02:00
|
|
|
Help *help;
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
WINDOW *window;
|
2013-07-30 01:32:39 +02:00
|
|
|
};
|
2013-08-11 02:58:15 +02:00
|
|
|
|
2013-12-05 04:33:04 +01:00
|
|
|
/* statusbar info holder */
|
2013-11-29 23:48:08 +01:00
|
|
|
struct StatusBar {
|
2014-03-30 22:40:13 +02:00
|
|
|
WINDOW *topline;
|
2014-10-03 23:53:50 +02:00
|
|
|
char statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH + 1];
|
2013-09-10 10:04:13 +02:00
|
|
|
uint16_t statusmsg_len;
|
2014-10-03 23:53:50 +02:00
|
|
|
char nick[TOXIC_MAX_NAME_LENGTH + 1];
|
2014-07-08 01:08:33 +02:00
|
|
|
int nick_len;
|
2014-03-19 02:48:26 +01:00
|
|
|
uint8_t status;
|
2013-09-06 08:51:10 +02:00
|
|
|
bool is_online;
|
2013-11-29 23:48:08 +01:00
|
|
|
};
|
2013-09-06 08:51:10 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-07-01 17:17:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define INFOBOX_HEIGHT 7
|
|
|
|
#define INFOBOX_WIDTH 21
|
2014-06-24 00:54:23 +02:00
|
|
|
/* holds display info for audio calls */
|
|
|
|
struct infobox {
|
|
|
|
float vad_lvl;
|
|
|
|
bool in_is_muted;
|
|
|
|
bool out_is_muted;
|
|
|
|
bool hide;
|
|
|
|
bool active;
|
|
|
|
|
2014-06-24 01:00:11 +02:00
|
|
|
uint64_t lastupdate;
|
2014-06-24 07:54:08 +02:00
|
|
|
uint64_t starttime;
|
2014-06-24 00:54:23 +02:00
|
|
|
char timestr[TIME_STR_SIZE];
|
|
|
|
|
|
|
|
WINDOW *win;
|
|
|
|
};
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* AUDIO */
|
2014-06-24 00:54:23 +02:00
|
|
|
|
2013-12-19 02:18:38 +01:00
|
|
|
#define MAX_LINE_HIST 128
|
2013-12-11 06:10:09 +01:00
|
|
|
|
2013-12-05 04:33:04 +01:00
|
|
|
/* chat and groupchat window/buffer holder */
|
2013-11-29 23:48:08 +01:00
|
|
|
struct ChatContext {
|
2013-09-15 22:38:38 +02:00
|
|
|
wchar_t line[MAX_STR_SIZE];
|
2014-06-26 08:33:09 +02:00
|
|
|
int pos;
|
|
|
|
int len;
|
|
|
|
int start; /* the position to start printing line at */
|
2013-12-11 06:10:09 +01:00
|
|
|
|
2014-03-24 12:18:58 +01:00
|
|
|
wchar_t ln_history[MAX_LINE_HIST][MAX_STR_SIZE]; /* history for input lines/commands */
|
2013-12-11 06:10:09 +01:00
|
|
|
int hst_pos;
|
|
|
|
int hst_tot;
|
|
|
|
|
2014-07-14 20:32:38 +02:00
|
|
|
wchar_t yank[MAX_STR_SIZE]; /* contains last killed/discarded line */
|
|
|
|
int yank_len;
|
|
|
|
|
2014-03-24 12:18:58 +01:00
|
|
|
struct history *hst;
|
2014-03-01 13:10:44 +01:00
|
|
|
struct chatlog *log;
|
2014-09-06 19:18:42 +02:00
|
|
|
struct chat_queue *cqueue;
|
2014-03-24 12:37:52 +01:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-06-24 00:54:23 +02:00
|
|
|
struct infobox infobox;
|
|
|
|
#endif
|
|
|
|
|
2014-03-24 12:18:58 +01:00
|
|
|
uint8_t self_is_typing;
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2013-09-15 22:38:38 +02:00
|
|
|
WINDOW *history;
|
|
|
|
WINDOW *linewin;
|
2013-11-24 03:19:59 +01:00
|
|
|
WINDOW *sidebar;
|
2013-12-05 04:33:04 +01:00
|
|
|
};
|
|
|
|
|
2014-07-04 09:24:29 +02:00
|
|
|
struct Help {
|
|
|
|
WINDOW *win;
|
|
|
|
int type;
|
|
|
|
bool active;
|
|
|
|
};
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
ToxWindow *init_windows(Tox *m);
|
2013-08-23 23:03:44 +02:00
|
|
|
void draw_active_window(Tox *m);
|
|
|
|
int add_window(Tox *m, ToxWindow w);
|
2013-08-17 10:00:19 +02:00
|
|
|
void del_window(ToxWindow *w);
|
2013-08-13 02:32:09 +02:00
|
|
|
void set_active_window(int ch);
|
2014-03-07 01:39:57 +01:00
|
|
|
int get_num_active_windows(void);
|
2014-08-05 23:38:33 +02:00
|
|
|
void kill_all_windows(Tox *m); /* should only be called on shutdown */
|
2014-07-01 05:56:47 +02:00
|
|
|
void on_window_resize(void);
|
2014-10-01 22:24:36 +02:00
|
|
|
void force_refresh(WINDOW *w);
|
2014-08-01 03:59:53 +02:00
|
|
|
ToxWindow *get_window_ptr(int i);
|
2014-02-26 11:23:11 +01:00
|
|
|
|
2015-01-04 07:56:37 +01:00
|
|
|
/* refresh inactive windows to prevent scrolling bugs.
|
2014-06-22 03:41:38 +02:00
|
|
|
call at least once per second */
|
|
|
|
void refresh_inactive_windows(void);
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* #define WINDOWS_H */
|