1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:57:45 +02:00
toxic/src/windows.c

571 lines
14 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* windows.c
*
*
* 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-23 23:03:44 +02:00
#include <stdlib.h>
#include <string.h>
2014-03-13 11:06:53 +01:00
#include <pthread.h>
2014-06-22 03:41:38 +02:00
#include <ctype.h>
2013-08-23 23:03:44 +02:00
2013-08-13 02:21:03 +02:00
#include "friendlist.h"
#include "prompt.h"
#include "toxic.h"
#include "windows.h"
2014-02-26 11:23:11 +01:00
#include "groupchat.h"
2014-06-22 03:41:38 +02:00
#include "chat.h"
#include "line_info.h"
2014-10-03 23:53:50 +02:00
#include "misc_tools.h"
2013-08-13 02:21:03 +02:00
#include "settings.h"
2013-08-15 12:11:48 +02:00
extern char *DATA_FILE;
extern struct Winthread Winthread;
static ToxWindow windows[MAX_WINDOWS_NUM];
static ToxWindow *active_window;
extern ToxWindow *prompt;
extern struct user_settings *user_settings;
2013-08-13 02:21:03 +02:00
2014-03-07 01:39:57 +01:00
static int num_active_windows;
2013-08-13 02:21:03 +02:00
/* CALLBACKS START */
2014-06-12 02:04:20 +02:00
void on_request(Tox *m, const uint8_t *public_key, const uint8_t *data, uint16_t length, void *userdata)
2013-08-13 02:21:03 +02:00
{
2014-10-03 23:53:50 +02:00
char msg[MAX_STR_SIZE + 1];
length = copy_tox_str(msg, sizeof(msg), (const char *) data, length);
2013-08-16 19:11:09 +02:00
int i;
2014-03-30 22:40:13 +02:00
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-08-16 19:11:09 +02:00
if (windows[i].onFriendRequest != NULL)
2014-10-03 23:53:50 +02:00
windows[i].onFriendRequest(&windows[i], m, (const char *) public_key, msg, length);
2013-08-16 19:11:09 +02:00
}
2013-08-13 02:21:03 +02:00
}
2014-03-19 02:48:26 +01:00
void on_connectionchange(Tox *m, int32_t friendnumber, uint8_t status, void *userdata)
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].onConnectionChange != NULL)
windows[i].onConnectionChange(&windows[i], m, friendnumber, status);
}
}
2014-03-21 01:50:48 +01:00
void on_typing_change(Tox *m, int32_t friendnumber, uint8_t is_typing, void *userdata)
2014-02-23 10:28:33 +01:00
{
if (user_settings->show_typing_other == SHOW_TYPING_OFF)
return;
2014-02-23 10:28:33 +01:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2014-02-23 10:28:33 +01:00
if (windows[i].onTypingChange != NULL)
windows[i].onTypingChange(&windows[i], m, friendnumber, is_typing);
}
}
2014-07-02 23:30:31 +02:00
void on_message(Tox *m, int32_t friendnumber, const uint8_t *string, uint16_t length, void *userdata)
2013-08-13 02:21:03 +02:00
{
2014-10-03 23:53:50 +02:00
char msg[MAX_STR_SIZE + 1];
length = copy_tox_str(msg, sizeof(msg), (const char *) string, length);
2013-08-16 19:11:09 +02:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-08-16 19:11:09 +02:00
if (windows[i].onMessage != NULL)
2014-10-03 23:53:50 +02:00
windows[i].onMessage(&windows[i], m, friendnumber, msg, length);
2013-08-16 19:11:09 +02:00
}
2013-08-13 02:21:03 +02:00
}
2014-07-02 23:30:31 +02:00
void on_action(Tox *m, int32_t friendnumber, const uint8_t *string, uint16_t length, void *userdata)
2013-08-13 02:21:03 +02:00
{
2014-10-03 23:53:50 +02:00
char msg[MAX_STR_SIZE + 1];
length = copy_tox_str(msg, sizeof(msg), (const char *) string, length);
2013-08-16 19:11:09 +02:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-08-16 19:11:09 +02:00
if (windows[i].onAction != NULL)
2014-10-04 03:08:33 +02:00
windows[i].onAction(&windows[i], m, friendnumber, msg, length);
2013-08-16 19:11:09 +02:00
}
2013-08-13 02:21:03 +02:00
}
2014-07-02 23:30:31 +02:00
void on_nickchange(Tox *m, int32_t friendnumber, const uint8_t *string, uint16_t length, void *userdata)
2013-08-13 02:21:03 +02:00
{
2014-10-03 23:53:50 +02:00
char nick[TOXIC_MAX_NAME_LENGTH + 1];
length = copy_tox_str(nick, sizeof(nick), (const char *) string, length);
filter_str(nick, length);
2014-10-03 23:53:50 +02:00
2013-08-16 19:11:09 +02:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-09-04 08:05:36 +02:00
if (windows[i].onNickChange != NULL)
2014-10-03 23:53:50 +02:00
windows[i].onNickChange(&windows[i], m, friendnumber, nick, length);
2013-08-16 19:11:09 +02:00
}
2013-09-09 06:56:47 +02:00
2014-07-09 06:05:13 +02:00
store_data(m, DATA_FILE);
2013-08-13 02:21:03 +02:00
}
2014-07-02 23:30:31 +02:00
void on_statusmessagechange(Tox *m, int32_t friendnumber, const uint8_t *string, uint16_t length, void *userdata)
2013-08-13 02:21:03 +02:00
{
2014-10-03 23:53:50 +02:00
char msg[TOX_MAX_STATUSMESSAGE_LENGTH + 1];
length = copy_tox_str(msg, sizeof(msg), (const char *) string, length);
filter_str(msg, length);
2014-10-03 23:53:50 +02:00
2013-08-16 19:11:09 +02:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].onStatusMessageChange != NULL)
2014-10-03 23:53:50 +02:00
windows[i].onStatusMessageChange(&windows[i], friendnumber, msg, length);
2013-08-16 19:11:09 +02:00
}
2013-08-13 02:21:03 +02:00
}
2014-03-19 02:48:26 +01:00
void on_statuschange(Tox *m, int32_t friendnumber, uint8_t status, void *userdata)
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].onStatusChange != NULL)
windows[i].onStatusChange(&windows[i], m, friendnumber, status);
}
}
2014-03-19 02:48:26 +01:00
void on_friendadded(Tox *m, int32_t friendnumber, bool sort)
2013-08-13 02:21:03 +02:00
{
2013-11-15 20:59:49 +01:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-11-15 20:59:49 +01:00
if (windows[i].onFriendAdded != NULL)
windows[i].onFriendAdded(&windows[i], m, friendnumber, sort);
2013-11-15 20:59:49 +01:00
}
2013-08-16 19:11:09 +02:00
2014-07-09 06:05:13 +02:00
store_data(m, DATA_FILE);
2013-08-13 02:21:03 +02:00
}
2013-09-15 22:38:38 +02:00
2014-07-02 23:30:31 +02:00
void on_groupmessage(Tox *m, int groupnumber, int peernumber, const uint8_t *message, uint16_t length,
2013-10-11 10:42:30 +02:00
void *userdata)
2013-09-15 22:38:38 +02:00
{
2014-10-03 23:53:50 +02:00
char msg[MAX_STR_SIZE + 1];
length = copy_tox_str(msg, sizeof(msg), (const char *) message, length);
2013-09-15 22:38:38 +02:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-09-15 22:38:38 +02:00
if (windows[i].onGroupMessage != NULL)
2014-10-03 23:53:50 +02:00
windows[i].onGroupMessage(&windows[i], m, groupnumber, peernumber, msg, length);
2013-09-15 22:38:38 +02:00
}
}
2014-07-02 23:30:31 +02:00
void on_groupaction(Tox *m, int groupnumber, int peernumber, const uint8_t *action, uint16_t length,
2013-12-14 02:57:32 +01:00
void *userdata)
{
2014-10-03 23:53:50 +02:00
char msg[MAX_STR_SIZE + 1];
length = copy_tox_str(msg, sizeof(msg), (const char *) action, length);
2013-12-14 02:57:32 +01:00
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-12-14 02:57:32 +01:00
if (windows[i].onGroupAction != NULL)
2014-10-03 23:53:50 +02:00
windows[i].onGroupAction(&windows[i], m, groupnumber, peernumber, msg, length);
2013-12-14 02:57:32 +01:00
}
}
2014-11-12 00:30:23 +01:00
void on_groupinvite(Tox *m, int32_t friendnumber, uint8_t type, const uint8_t *group_pub_key, uint16_t length,
void *userdata)
2013-09-15 22:38:38 +02:00
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-09-15 22:38:38 +02:00
if (windows[i].onGroupInvite != NULL)
2014-11-12 00:30:23 +01:00
windows[i].onGroupInvite(&windows[i], m, friendnumber, type, (char *) group_pub_key, length);
2013-09-15 22:38:38 +02:00
}
}
2013-10-10 10:52:05 +02:00
2013-11-26 00:49:31 +01:00
void on_group_namelistchange(Tox *m, int groupnumber, int peernumber, uint8_t change, void *userdata)
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].onGroupNamelistChange != NULL)
2013-11-26 00:49:31 +01:00
windows[i].onGroupNamelistChange(&windows[i], m, groupnumber, peernumber, change);
}
}
void on_file_sendrequest(Tox *m, int32_t friendnumber, uint8_t filenumber, uint64_t filesize,
2014-07-02 23:30:31 +02:00
const uint8_t *filename, uint16_t filename_length, void *userdata)
2013-10-10 10:52:05 +02:00
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-10-10 10:52:05 +02:00
if (windows[i].onFileSendRequest != NULL)
windows[i].onFileSendRequest(&windows[i], m, friendnumber, filenumber, filesize,
(const char *) filename, filename_length);
2013-10-10 10:52:05 +02:00
}
}
void on_file_control (Tox *m, int32_t friendnumber, uint8_t receive_send, uint8_t filenumber,
2014-07-02 23:30:31 +02:00
uint8_t control_type, const uint8_t *data, uint16_t length, void *userdata)
2013-10-10 10:52:05 +02:00
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-10-10 10:52:05 +02:00
if (windows[i].onFileControl != NULL)
windows[i].onFileControl(&windows[i], m, friendnumber, receive_send, filenumber,
control_type, (const char *) data, length);
2013-10-10 10:52:05 +02:00
}
}
2014-07-02 23:30:31 +02:00
void on_file_data(Tox *m, int32_t friendnumber, uint8_t filenumber, const uint8_t *data, uint16_t length,
2013-10-11 10:42:30 +02:00
void *userdata)
2013-10-10 10:52:05 +02:00
{
int i;
2014-03-18 03:18:04 +01:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2013-10-10 10:52:05 +02:00
if (windows[i].onFileData != NULL)
windows[i].onFileData(&windows[i], m, friendnumber, filenumber, (const char *) data, length);
2013-10-10 10:52:05 +02:00
}
}
2014-09-07 08:43:53 +02:00
void on_read_receipt(Tox *m, int32_t friendnumber, uint32_t receipt, void *userdata)
{
int i;
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].onReadReceipt != NULL)
windows[i].onReadReceipt(&windows[i], m, friendnumber, receipt);
}
}
2014-11-15 02:13:08 +01:00
#ifdef AUDIO
void on_write_device(Tox *m, int groupnum, int peernum, const int16_t *pcm, unsigned int samples,
uint8_t channels, unsigned int sample_rate, void *userdata)
{
int i;
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].onWriteDevice != NULL)
windows[i].onWriteDevice(&windows[i], m, groupnum, peernum, pcm, samples, channels, samples);
}
}
#endif /* AUDIO */
2013-08-13 02:21:03 +02:00
/* CALLBACKS END */
2013-08-23 23:03:44 +02:00
int add_window(Tox *m, ToxWindow w)
2013-08-13 02:21:03 +02:00
{
2013-08-16 19:11:09 +02:00
if (LINES < 2)
return -1;
int i;
for (i = 0; i < MAX_WINDOWS_NUM; i++) {
if (windows[i].active)
continue;
w.window = newwin(LINES - 2, COLS, 0, 0);
if (w.window == NULL)
return -1;
#ifdef URXVT_FIX
/* Fixes text color problem on some terminals. */
wbkgd(w.window, COLOR_PAIR(6));
#endif
windows[i] = w;
2014-03-19 08:14:08 +01:00
if (w.onInit)
w.onInit(&w, m);
2014-03-07 01:39:57 +01:00
++num_active_windows;
return i;
}
return -1;
2013-08-13 02:21:03 +02:00
}
void set_active_window(int index)
2013-08-13 02:21:03 +02:00
{
if (index < 0 || index >= MAX_WINDOWS_NUM)
return;
active_window = windows + index;
2013-08-13 02:21:03 +02:00
}
/* Shows next window when tab or back-tab is pressed */
2013-12-07 04:07:37 +01:00
void set_next_window(int ch)
2013-08-13 02:21:03 +02:00
{
ToxWindow *end = windows + MAX_WINDOWS_NUM - 1;
ToxWindow *inf = active_window;
while (true) {
if (ch == user_settings->key_next_tab) {
if (++active_window > end)
active_window = windows;
} else if (--active_window < windows)
active_window = end;
if (active_window->window)
return;
2014-06-18 21:54:05 +02:00
if (active_window == inf) /* infinite loop check */
exit_toxic_err("failed in set_next_window", FATALERR_INFLOOP);
2013-08-13 02:21:03 +02:00
}
}
/* Deletes window w and cleans up */
void del_window(ToxWindow *w)
2013-08-13 02:21:03 +02:00
{
set_active_window(0); /* Go to prompt screen */
delwin(w->window);
memset(w, 0, sizeof(ToxWindow));
clear();
refresh();
--num_active_windows;
2013-08-13 02:21:03 +02:00
}
ToxWindow *init_windows(Tox *m)
2013-08-13 02:21:03 +02:00
{
int n_prompt = add_window(m, new_prompt());
2014-06-18 21:54:05 +02:00
if (n_prompt == -1 || add_window(m, new_friendlist()) == -1)
exit_toxic_err("failed in init_windows", FATALERR_WININIT);
2013-08-16 19:11:09 +02:00
prompt = &windows[n_prompt];
active_window = prompt;
2013-08-16 19:11:09 +02:00
return prompt;
2013-08-13 02:21:03 +02:00
}
2014-07-01 05:56:47 +02:00
void on_window_resize(void)
{
endwin();
refresh();
clear();
2014-07-01 05:56:47 +02:00
/* equivalent to LINES and COLS */
int x2, y2;
getmaxyx(stdscr, y2, x2);
y2 -= 2;
2014-07-01 05:56:47 +02:00
int i;
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (!windows[i].active)
2014-07-01 05:56:47 +02:00
continue;
ToxWindow *w = &windows[i];
if (windows[i].is_friendlist) {
delwin(w->window);
w->window = newwin(y2, x2, 0, 0);
continue;
}
if (w->help->active)
wclear(w->help->win);
2014-10-09 21:47:48 +02:00
if (w->is_groupchat) {
2014-07-01 20:55:59 +02:00
delwin(w->chatwin->sidebar);
w->chatwin->sidebar = NULL;
} else {
2014-07-01 20:55:59 +02:00
delwin(w->stb->topline);
}
2014-07-01 20:55:59 +02:00
delwin(w->chatwin->linewin);
delwin(w->chatwin->history);
delwin(w->window);
2014-07-01 20:55:59 +02:00
w->window = newwin(y2, x2, 0, 0);
2014-07-01 20:55:59 +02:00
w->chatwin->linewin = subwin(w->window, CHATBOX_HEIGHT, x2, y2 - CHATBOX_HEIGHT, 0);
2014-07-01 05:56:47 +02:00
if (w->show_peerlist) {
2014-07-01 20:55:59 +02:00
w->chatwin->history = subwin(w->window, y2 - CHATBOX_HEIGHT + 1, x2 - SIDEBAR_WIDTH - 1, 0, 0);
w->chatwin->sidebar = subwin(w->window, y2 - CHATBOX_HEIGHT + 1, SIDEBAR_WIDTH, 0, x2 - SIDEBAR_WIDTH);
2014-07-01 05:56:47 +02:00
} else {
2014-07-01 20:55:59 +02:00
w->chatwin->history = subwin(w->window, y2 - CHATBOX_HEIGHT + 1, x2, 0, 0);
2014-10-09 00:06:15 +02:00
if (!w->is_groupchat)
w->stb->topline = subwin(w->window, 2, x2, 0, 0);
2014-07-01 05:56:47 +02:00
}
#ifdef AUDIO
2014-07-01 20:55:59 +02:00
if (w->chatwin->infobox.active) {
delwin(w->chatwin->infobox.win);
w->chatwin->infobox.win = newwin(INFOBOX_HEIGHT, INFOBOX_WIDTH + 1, 1, x2 - INFOBOX_WIDTH);
}
#endif /* AUDIO */
2014-07-01 20:55:59 +02:00
scrollok(w->chatwin->history, 0);
2014-07-01 05:56:47 +02:00
}
}
static void draw_window_tab(ToxWindow *toxwin)
2013-11-29 01:45:28 +01:00
{
if (toxwin->alert != WINDOW_ALERT_NONE) attron(COLOR_PAIR(toxwin->alert));
2013-11-29 01:45:28 +01:00
clrtoeol();
printw(" [%s]", toxwin->name);
if (toxwin->alert != WINDOW_ALERT_NONE) attroff(COLOR_PAIR(toxwin->alert));
2013-11-29 01:45:28 +01:00
}
2013-11-26 23:39:11 +01:00
static void draw_bar(void)
2013-08-13 02:21:03 +02:00
{
attron(COLOR_PAIR(BLUE));
2013-08-16 19:11:09 +02:00
mvhline(LINES - 2, 0, '_', COLS);
attroff(COLOR_PAIR(BLUE));
2013-08-16 19:11:09 +02:00
move(LINES - 1, 0);
attron(COLOR_PAIR(BLUE) | A_BOLD);
2013-08-31 08:22:07 +02:00
printw(" TOXIC " TOXICVER " |");
attroff(COLOR_PAIR(BLUE) | A_BOLD);
2013-08-13 02:21:03 +02:00
2013-08-16 19:11:09 +02:00
int i;
2013-08-13 02:21:03 +02:00
2013-08-28 11:46:09 +02:00
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
2014-06-12 00:47:18 +02:00
if (!windows[i].active)
continue;
if (windows + i == active_window)
#ifdef URXVT_FIX
2014-06-12 00:47:18 +02:00
attron(A_BOLD | COLOR_PAIR(GREEN));
else
#endif
2013-08-13 02:21:03 +02:00
2014-06-12 00:47:18 +02:00
attron(A_BOLD);
draw_window_tab(&windows[i]);
2014-06-12 00:47:18 +02:00
if (windows + i == active_window)
2013-08-13 02:21:03 +02:00
#ifdef URXVT_FIX
2014-06-12 00:47:18 +02:00
attroff(A_BOLD | COLOR_PAIR(GREEN));
else
#endif
2014-06-12 00:47:18 +02:00
attroff(A_BOLD);
2013-08-13 02:21:03 +02:00
}
2013-08-16 19:11:09 +02:00
refresh();
2013-08-13 02:21:03 +02:00
}
2013-08-23 23:03:44 +02:00
void draw_active_window(Tox *m)
2013-08-13 02:21:03 +02:00
{
ToxWindow *a = active_window;
2014-07-21 01:12:13 +02:00
a->alert = WINDOW_ALERT_NONE;
wint_t ch = 0;
draw_bar();
touchwin(a->window);
2014-03-09 07:02:54 +01:00
a->onDraw(a, m);
2013-08-16 19:11:09 +02:00
/* Handle input */
2014-03-30 22:40:13 +02:00
bool ltr;
#ifdef HAVE_WIDECHAR
2014-03-30 22:40:13 +02:00
int status = wget_wch(stdscr, &ch);
if (status == ERR)
return;
2014-03-30 22:40:13 +02:00
if (status == OK)
ltr = iswprint(ch);
else /* if (status == KEY_CODE_YES) */
2014-03-30 22:40:13 +02:00
ltr = false;
#else
2014-03-30 22:40:13 +02:00
ch = getch();
if (ch == ERR)
return;
2013-08-16 19:11:09 +02:00
2014-03-30 22:40:13 +02:00
/* TODO verify if this works */
ltr = isprint(ch);
#endif /* HAVE_WIDECHAR */
2014-03-30 22:40:13 +02:00
if (!ltr && (ch == user_settings->key_next_tab || ch == user_settings->key_prev_tab)) {
2013-12-07 04:07:37 +01:00
set_next_window((int) ch);
} else {
2014-03-13 11:06:53 +01:00
pthread_mutex_lock(&Winthread.lock);
2014-03-30 22:40:13 +02:00
a->onKey(a, m, ch, ltr);
2014-03-13 11:06:53 +01:00
pthread_mutex_unlock(&Winthread.lock);
}
2013-08-13 02:21:03 +02:00
}
2014-06-01 09:38:20 +02:00
/* refresh inactive windows to prevent scrolling bugs.
call at least once per second */
void refresh_inactive_windows(void)
{
int i;
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
ToxWindow *a = &windows[i];
if (a->active && a != active_window && !a->is_friendlist)
2014-06-01 18:54:45 +02:00
line_info_print(a);
2014-06-01 09:38:20 +02:00
}
}
/* returns a pointer to the ToxWindow in the ith index. Returns NULL if no ToxWindow exists */
ToxWindow *get_window_ptr(int i)
{
ToxWindow *toxwin = NULL;
if (i >= 0 && i <= MAX_WINDOWS_NUM && windows[i].active)
toxwin = &windows[i];
return toxwin;
}
2014-10-01 22:24:36 +02:00
void force_refresh(WINDOW *w)
{
wclear(w);
endwin();
refresh();
}
2014-03-07 01:39:57 +01:00
int get_num_active_windows(void)
{
2014-03-07 01:39:57 +01:00
return num_active_windows;
2013-11-30 22:09:45 +01:00
}
2014-02-26 11:23:11 +01:00
/* destroys all chat and groupchat windows (should only be called on shutdown) */
void kill_all_windows(Tox *m)
2014-02-26 11:23:11 +01:00
{
int i;
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
if (windows[i].is_chat)
kill_chat_window(&windows[i], m);
2014-02-26 11:23:11 +01:00
else if (windows[i].is_groupchat)
kill_groupchat_window(&windows[i]);
}
kill_prompt_window(prompt);
kill_friendlist();
2014-02-26 11:23:11 +01:00
}