2013-08-23 09:50:04 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2013-08-13 02:21:03 +02:00
|
|
|
#include "friendlist.h"
|
|
|
|
#include "prompt.h"
|
2013-08-23 00:18:53 +02:00
|
|
|
#include "toxic_windows.h"
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
extern char *DATA_FILE;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
static ToxWindow windows[MAX_WINDOWS_NUM];
|
2013-08-17 10:00:19 +02:00
|
|
|
static ToxWindow *active_window;
|
2013-11-30 11:35:25 +01:00
|
|
|
|
|
|
|
extern ToxWindow *prompt;
|
2013-08-13 02:21:03 +02:00
|
|
|
|
|
|
|
/* CALLBACKS START */
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
2013-09-06 08:51:10 +02:00
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onFriendRequest != NULL)
|
|
|
|
windows[i].onFriendRequest(&windows[i], public_key, data, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 03:25:59 +02:00
|
|
|
void on_connectionchange(Tox *m, int friendnumber, uint8_t status, void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onConnectionChange != NULL)
|
|
|
|
windows[i].onConnectionChange(&windows[i], m, friendnumber, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-23 10:28:33 +01:00
|
|
|
void on_typing_change(Tox *m, int friendnumber, int is_typing, void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onTypingChange != NULL)
|
|
|
|
windows[i].onTypingChange(&windows[i], m, friendnumber, is_typing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
void on_message(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onMessage != NULL)
|
|
|
|
windows[i].onMessage(&windows[i], m, friendnumber, string, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
void on_action(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onAction != NULL)
|
|
|
|
windows[i].onAction(&windows[i], m, friendnumber, string, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
void on_nickchange(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-09-23 02:25:48 +02:00
|
|
|
if (friendnumber < 0 || friendnumber > MAX_FRIENDS_NUM)
|
|
|
|
return;
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-09-04 08:05:36 +02:00
|
|
|
if (windows[i].onNickChange != NULL)
|
2014-02-08 00:44:10 +01:00
|
|
|
windows[i].onNickChange(&windows[i], m, friendnumber, string, length);
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
2013-09-09 06:56:47 +02:00
|
|
|
|
|
|
|
if (store_data(m, DATA_FILE))
|
|
|
|
wprintw(prompt->window, "\nCould not store Tox data\n");
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-09-03 05:27:34 +02:00
|
|
|
void on_statusmessagechange(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-09-03 05:27:34 +02:00
|
|
|
if (windows[i].onStatusMessageChange != NULL)
|
|
|
|
windows[i].onStatusMessageChange(&windows[i], friendnumber, string, length);
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 03:25:59 +02:00
|
|
|
void on_statuschange(Tox *m, int friendnumber, TOX_USERSTATUS status, void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onStatusChange != NULL)
|
|
|
|
windows[i].onStatusChange(&windows[i], m, friendnumber, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-04 07:08:26 +01:00
|
|
|
void on_friendadded(Tox *m, int friendnumber, bool sort)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-11-15 20:59:49 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onFriendAdded != NULL)
|
2013-12-04 07:08:26 +01:00
|
|
|
windows[i].onFriendAdded(&windows[i], m, friendnumber, sort);
|
2013-11-15 20:59:49 +01:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-09-02 04:11:47 +02:00
|
|
|
if (store_data(m, DATA_FILE))
|
2013-08-23 23:03:44 +02:00
|
|
|
wprintw(prompt->window, "\nCould not store Tox data\n");
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
2013-09-15 22:38:38 +02:00
|
|
|
|
2013-10-11 10:42:30 +02:00
|
|
|
void on_groupmessage(Tox *m, int groupnumber, int peernumber, uint8_t *message, uint16_t length,
|
|
|
|
void *userdata)
|
2013-09-15 22:38:38 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onGroupMessage != NULL)
|
2013-09-18 02:54:25 +02:00
|
|
|
windows[i].onGroupMessage(&windows[i], m, groupnumber, peernumber, message, length);
|
2013-09-15 22:38:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-14 02:57:32 +01:00
|
|
|
void on_groupaction(Tox *m, int groupnumber, int peernumber, uint8_t *action, uint16_t length,
|
|
|
|
void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onGroupAction != NULL)
|
|
|
|
windows[i].onGroupAction(&windows[i], m, groupnumber, peernumber, action, length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-15 22:38:38 +02:00
|
|
|
void on_groupinvite(Tox *m, int friendnumber, uint8_t *group_pub_key, void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onGroupInvite != NULL)
|
|
|
|
windows[i].onGroupInvite(&windows[i], m, friendnumber, group_pub_key);
|
|
|
|
}
|
|
|
|
}
|
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)
|
2013-11-24 03:19:59 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
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);
|
2013-11-24 03:19:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-10 10:52:05 +02:00
|
|
|
void on_file_sendrequest(Tox *m, int friendnumber, uint8_t filenumber, uint64_t filesize,
|
|
|
|
uint8_t *filename, uint16_t filename_length, void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onFileSendRequest != NULL)
|
|
|
|
windows[i].onFileSendRequest(&windows[i], m, friendnumber, filenumber, filesize,
|
|
|
|
filename, filename_length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_file_control (Tox *m, int friendnumber, uint8_t receive_send, uint8_t filenumber,
|
|
|
|
uint8_t control_type, uint8_t *data, uint16_t length, void *userdata)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onFileControl != NULL)
|
|
|
|
windows[i].onFileControl(&windows[i], m, friendnumber, receive_send, filenumber,
|
|
|
|
control_type, data, length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-11 10:42:30 +02:00
|
|
|
void on_file_data(Tox *m, int friendnumber, uint8_t filenumber, uint8_t *data, uint16_t length,
|
|
|
|
void *userdata)
|
2013-10-10 10:52:05 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].onFileData != NULL)
|
|
|
|
windows[i].onFileData(&windows[i], m, friendnumber, filenumber, data, length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
int i;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; i++) {
|
2013-11-30 11:35:25 +01:00
|
|
|
if (windows[i].active)
|
2013-08-17 10:00:19 +02:00
|
|
|
continue;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
w.window = newwin(LINES - 2, COLS, 0, 0);
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
if (w.window == NULL)
|
|
|
|
return -1;
|
2013-09-26 15:51:21 +02:00
|
|
|
#ifdef URXVT_FIX
|
|
|
|
/* Fixes text color problem on some terminals. */
|
|
|
|
wbkgd(w.window, COLOR_PAIR(6));
|
|
|
|
#endif
|
2013-08-17 10:00:19 +02:00
|
|
|
windows[i] = w;
|
|
|
|
w.onInit(&w, m);
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
return i;
|
|
|
|
}
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
return -1;
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Deletes window w and cleans up */
|
2013-08-17 10:00:19 +02:00
|
|
|
void del_window(ToxWindow *w)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 10:00:19 +02:00
|
|
|
active_window = windows; // Go to prompt screen
|
2013-08-31 08:22:07 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
delwin(w->window);
|
2013-08-17 10:00:19 +02:00
|
|
|
memset(w, 0, sizeof(ToxWindow));
|
2013-08-31 02:13:29 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
clear();
|
|
|
|
refresh();
|
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
|
|
|
{
|
2013-08-21 01:37:05 +02:00
|
|
|
ToxWindow *end = windows + MAX_WINDOWS_NUM - 1;
|
2013-08-17 10:00:19 +02:00
|
|
|
ToxWindow *inf = active_window;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
|
|
|
while (true) {
|
2013-12-08 04:10:32 +01:00
|
|
|
if (ch == T_KEY_NEXT) {
|
2013-08-17 10:00:19 +02:00
|
|
|
if (++active_window > end)
|
|
|
|
active_window = windows;
|
2013-08-21 01:37:05 +02:00
|
|
|
} else if (--active_window < windows)
|
|
|
|
active_window = end;
|
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
if (active_window->window)
|
|
|
|
return;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
if (active_window == inf) { // infinite loop check
|
|
|
|
endwin();
|
2013-09-11 06:02:27 +02:00
|
|
|
fprintf(stderr, "set_next_window() failed. Aborting...\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
void set_active_window(int index)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 15:40:30 +02:00
|
|
|
if (index < 0 || index >= MAX_WINDOWS_NUM)
|
2013-08-17 10:00:19 +02:00
|
|
|
return;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
|
|
|
active_window = windows + index;
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
ToxWindow *init_windows(Tox *m)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 16:05:32 +02:00
|
|
|
int n_prompt = add_window(m, new_prompt());
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-28 00:30:38 +02:00
|
|
|
if (n_prompt == -1 || add_window(m, new_friendlist()) == -1) {
|
2013-08-16 19:11:09 +02:00
|
|
|
endwin();
|
2013-09-12 07:33:41 +02:00
|
|
|
fprintf(stderr, "add_window() failed. Aborting...\n");
|
2013-09-11 06:02:27 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
prompt = &windows[n_prompt];
|
2013-08-17 10:00:19 +02:00
|
|
|
active_window = prompt;
|
2013-08-21 01:37:05 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
return prompt;
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-11-29 01:45:28 +01:00
|
|
|
static void draw_window_tab(ToxWindow toxwin)
|
|
|
|
{
|
2013-12-07 01:41:53 +01:00
|
|
|
/* alert0 takes priority */
|
|
|
|
if (toxwin.alert0)
|
|
|
|
attron(COLOR_PAIR(GREEN));
|
|
|
|
else if (toxwin.alert1)
|
2013-11-29 01:45:28 +01:00
|
|
|
attron(COLOR_PAIR(RED));
|
|
|
|
else if (toxwin.alert2)
|
2013-12-07 01:41:53 +01:00
|
|
|
attron(COLOR_PAIR(MAGENTA));
|
2013-11-29 01:45:28 +01:00
|
|
|
|
|
|
|
clrtoeol();
|
|
|
|
printw(" [%s]", toxwin.name);
|
|
|
|
|
2013-12-07 01:41:53 +01:00
|
|
|
if (toxwin.alert0)
|
|
|
|
attroff(COLOR_PAIR(GREEN));
|
|
|
|
else if (toxwin.alert1)
|
2013-11-29 01:45:28 +01:00
|
|
|
attroff(COLOR_PAIR(RED));
|
|
|
|
else if (toxwin.alert2)
|
2013-12-07 01:41:53 +01:00
|
|
|
attroff(COLOR_PAIR(MAGENTA));
|
2013-11-29 01:45:28 +01:00
|
|
|
}
|
2013-11-26 23:39:11 +01:00
|
|
|
|
2013-11-24 03:19:59 +01:00
|
|
|
static void draw_bar(void)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-09-05 06:47:33 +02:00
|
|
|
attron(COLOR_PAIR(BLUE));
|
2013-08-16 19:11:09 +02:00
|
|
|
mvhline(LINES - 2, 0, '_', COLS);
|
2013-09-05 06:47:33 +02:00
|
|
|
attroff(COLOR_PAIR(BLUE));
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
move(LINES - 1, 0);
|
|
|
|
|
2013-09-05 06:47:33 +02:00
|
|
|
attron(COLOR_PAIR(BLUE) | A_BOLD);
|
2013-08-31 08:22:07 +02:00
|
|
|
printw(" TOXIC " TOXICVER " |");
|
2013-09-05 06:47:33 +02:00
|
|
|
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) {
|
2013-11-30 11:35:25 +01:00
|
|
|
if (windows[i].active) {
|
2013-09-26 15:51:21 +02:00
|
|
|
if (windows + i == active_window) {
|
|
|
|
#ifdef URXVT_FIX
|
|
|
|
attron(A_BOLD | COLOR_PAIR(GREEN));
|
|
|
|
} else {
|
|
|
|
#endif
|
2013-08-16 19:11:09 +02:00
|
|
|
attron(A_BOLD);
|
2013-09-26 15:51:21 +02:00
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-11-29 01:45:28 +01:00
|
|
|
draw_window_tab(windows[i]);
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-11-29 01:45:28 +01:00
|
|
|
if (windows + i == active_window) {
|
2013-09-26 15:51:21 +02:00
|
|
|
#ifdef URXVT_FIX
|
|
|
|
attroff(A_BOLD | COLOR_PAIR(GREEN));
|
|
|
|
} else {
|
|
|
|
#endif
|
2013-08-16 19:11:09 +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
|
|
|
{
|
2013-08-17 10:00:19 +02:00
|
|
|
ToxWindow *a = active_window;
|
2013-12-07 01:41:53 +01:00
|
|
|
a->alert0 = false;
|
2013-12-04 07:08:26 +01:00
|
|
|
a->alert1 = false;
|
|
|
|
a->alert2 = false;
|
|
|
|
|
2013-08-21 23:19:35 +02:00
|
|
|
wint_t ch = 0;
|
|
|
|
|
2013-12-04 07:08:26 +01:00
|
|
|
draw_bar();
|
|
|
|
|
2013-09-27 22:14:43 +02:00
|
|
|
touchwin(a->window);
|
|
|
|
#ifndef WIN32
|
|
|
|
wresize(a->window, LINES - 2, COLS);
|
|
|
|
#endif
|
|
|
|
|
2013-08-20 20:47:32 +02:00
|
|
|
a->onDraw(a, m);
|
2013-12-04 07:08:26 +01:00
|
|
|
wrefresh(a->window);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
/* Handle input */
|
2013-08-22 22:57:34 +02:00
|
|
|
#ifdef HAVE_WIDECHAR
|
2013-08-30 04:56:27 +02:00
|
|
|
wget_wch(stdscr, &ch);
|
2013-08-22 22:57:34 +02:00
|
|
|
#else
|
|
|
|
ch = getch();
|
|
|
|
#endif
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-12-08 04:10:32 +01:00
|
|
|
if (ch == T_KEY_NEXT || ch == T_KEY_PREV)
|
2013-12-07 04:07:37 +01:00
|
|
|
set_next_window((int) ch);
|
2013-08-16 19:11:09 +02:00
|
|
|
else if (ch != ERR)
|
|
|
|
a->onKey(a, m, ch);
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
2013-11-30 11:35:25 +01:00
|
|
|
|
|
|
|
int num_active_windows(void)
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
|
|
|
if (windows[i].active)
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
2013-11-30 22:09:45 +01:00
|
|
|
}
|