2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2013-04-21 12:33:12 -04:00
|
|
|
* core.c
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2016-02-14 17:54:46 -05:00
|
|
|
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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.
|
|
|
|
*
|
|
|
|
* Profanity 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
*/
|
2012-08-25 20:50:50 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2012-02-20 15:07:38 -05:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
2014-03-05 19:06:22 -05:00
|
|
|
#include "gitversion.h"
|
2013-09-16 20:28:35 -04:00
|
|
|
#endif
|
|
|
|
|
2012-09-10 18:11:24 -04:00
|
|
|
#include <stdlib.h>
|
2012-02-08 17:26:43 -05:00
|
|
|
#include <string.h>
|
2014-12-18 18:57:19 -05:00
|
|
|
#include <assert.h>
|
2015-01-31 13:02:42 -05:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-07-24 10:43:51 -04:00
|
|
|
#include <glib.h>
|
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBXSS
|
2012-11-30 16:26:28 -05:00
|
|
|
#include <X11/extensions/scrnsaver.h>
|
|
|
|
#endif
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
2013-01-02 15:27:37 -05:00
|
|
|
#include <ncursesw/ncurses.h>
|
2016-03-31 16:05:02 -04:00
|
|
|
#elif HAVE_NCURSES_H
|
2013-01-03 19:35:54 -05:00
|
|
|
#include <ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
2012-05-03 20:00:01 -04:00
|
|
|
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "log.h"
|
|
|
|
#include "common.h"
|
2016-05-22 18:59:52 -04:00
|
|
|
#include "command/cmd_defs.h"
|
|
|
|
#include "command/cmd_ac.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/preferences.h"
|
|
|
|
#include "config/theme.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "ui/ui.h"
|
2014-04-07 15:00:11 -04:00
|
|
|
#include "ui/titlebar.h"
|
2014-04-07 16:12:30 -04:00
|
|
|
#include "ui/statusbar.h"
|
2014-04-07 16:50:28 -04:00
|
|
|
#include "ui/inputwin.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "ui/window.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "ui/window_list.h"
|
2013-05-06 18:04:46 -04:00
|
|
|
#include "xmpp/xmpp.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "xmpp/muc.h"
|
|
|
|
#include "xmpp/chat_session.h"
|
|
|
|
#include "xmpp/contact.h"
|
|
|
|
#include "xmpp/roster_list.h"
|
|
|
|
#include "xmpp/jid.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBOTR
|
|
|
|
#include "otr/otr.h"
|
|
|
|
#endif
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-12-11 18:34:15 -05:00
|
|
|
static char *win_title;
|
2015-01-15 08:22:54 -05:00
|
|
|
static int inp_size;
|
2015-02-04 18:35:28 -05:00
|
|
|
static gboolean perform_resize = FALSE;
|
2015-11-02 15:35:01 -05:00
|
|
|
static GTimer *ui_idle_time;
|
2015-02-04 18:35:28 -05:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBXSS
|
2012-11-30 16:26:28 -05:00
|
|
|
static Display *display;
|
|
|
|
#endif
|
|
|
|
|
2014-04-05 19:47:14 -04:00
|
|
|
static void _ui_draw_term_title(void);
|
2012-07-01 19:58:35 -04:00
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_init(void)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Initialising UI");
|
2012-02-05 18:29:09 -05:00
|
|
|
initscr();
|
2015-02-02 16:27:58 -05:00
|
|
|
nonl();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
2012-02-05 18:29:09 -05:00
|
|
|
keypad(stdscr, TRUE);
|
2012-11-25 19:01:34 -05:00
|
|
|
ui_load_colours();
|
2012-11-21 17:33:07 -05:00
|
|
|
refresh();
|
|
|
|
create_title_bar();
|
|
|
|
create_status_bar();
|
2013-08-27 19:50:15 -04:00
|
|
|
status_bar_active(1);
|
2012-11-21 17:33:07 -05:00
|
|
|
create_input_window();
|
2013-08-20 18:08:21 -04:00
|
|
|
wins_init();
|
2015-01-14 19:42:40 -05:00
|
|
|
notifier_initialise();
|
2013-04-20 16:42:39 -04:00
|
|
|
cons_about();
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBXSS
|
2012-11-30 16:26:28 -05:00
|
|
|
display = XOpenDisplay(0);
|
|
|
|
#endif
|
2012-12-01 13:39:34 -05:00
|
|
|
ui_idle_time = g_timer_new();
|
2015-01-15 08:22:54 -05:00
|
|
|
inp_size = 0;
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *window = wins_get_current();
|
|
|
|
win_update_virtual(window);
|
2012-11-21 17:33:07 -05:00
|
|
|
}
|
|
|
|
|
2015-02-04 18:35:28 -05:00
|
|
|
void
|
|
|
|
ui_sigwinch_handler(int sig)
|
|
|
|
{
|
|
|
|
perform_resize = TRUE;
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_update(void)
|
2012-02-12 20:25:47 -05:00
|
|
|
{
|
2014-09-01 14:14:52 -04:00
|
|
|
ProfWin *current = wins_get_current();
|
2014-12-15 20:39:47 -05:00
|
|
|
if (current->layout->paged == 0) {
|
2014-09-01 14:14:52 -04:00
|
|
|
win_move_to_end(current);
|
|
|
|
}
|
|
|
|
|
2014-09-16 19:22:55 -04:00
|
|
|
win_update_virtual(current);
|
|
|
|
|
2016-09-22 16:42:00 -04:00
|
|
|
if (prefs_get_boolean(PREF_WINTITLE_SHOW)) {
|
2014-04-05 19:47:14 -04:00
|
|
|
_ui_draw_term_title();
|
2014-04-03 16:46:43 -04:00
|
|
|
}
|
2014-04-01 16:52:04 -04:00
|
|
|
title_bar_update_virtual();
|
|
|
|
status_bar_update_virtual();
|
2012-12-11 18:34:15 -05:00
|
|
|
inp_put_back();
|
2014-02-02 18:56:50 -05:00
|
|
|
doupdate();
|
2015-02-04 18:35:28 -05:00
|
|
|
|
|
|
|
if (perform_resize) {
|
|
|
|
signal(SIGWINCH, SIG_IGN);
|
|
|
|
ui_resize();
|
|
|
|
perform_resize = FALSE;
|
|
|
|
signal(SIGWINCH, ui_sigwinch_handler);
|
|
|
|
}
|
2012-12-11 18:34:15 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
unsigned long
|
|
|
|
ui_get_idle_time(void)
|
2012-11-30 16:26:28 -05:00
|
|
|
{
|
2013-01-04 19:38:50 -05:00
|
|
|
// if compiled with libxss, get the x sessions idle time
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBXSS
|
2012-11-30 16:26:28 -05:00
|
|
|
XScreenSaverInfo *info = XScreenSaverAllocInfo();
|
2015-05-04 18:05:52 -04:00
|
|
|
if (info && display) {
|
2012-12-19 16:34:24 -05:00
|
|
|
XScreenSaverQueryInfo(display, DefaultRootWindow(display), info);
|
|
|
|
unsigned long result = info->idle;
|
|
|
|
XFree(info);
|
|
|
|
return result;
|
|
|
|
}
|
2015-05-04 18:05:52 -04:00
|
|
|
if (info) {
|
2014-06-24 17:23:53 -04:00
|
|
|
XFree(info);
|
|
|
|
}
|
2013-01-04 20:14:18 -05:00
|
|
|
// if no libxss or xss idle time failed, use profanity idle time
|
2013-01-04 02:54:17 -05:00
|
|
|
#endif
|
2012-12-01 13:47:50 -05:00
|
|
|
gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time, NULL);
|
2012-12-01 13:39:34 -05:00
|
|
|
unsigned long ms_elapsed = seconds_elapsed * 1000.0;
|
|
|
|
return ms_elapsed;
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_reset_idle_time(void)
|
2012-12-01 13:39:34 -05:00
|
|
|
{
|
|
|
|
g_timer_start(ui_idle_time);
|
|
|
|
}
|
2012-11-30 16:26:28 -05:00
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_close(void)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2013-04-21 15:17:06 -04:00
|
|
|
notifier_uninit();
|
2013-08-26 12:47:29 -04:00
|
|
|
wins_destroy();
|
2015-01-30 18:28:02 -05:00
|
|
|
inp_close();
|
2012-02-06 19:08:59 -05:00
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_resize(void)
|
2012-04-17 18:28:21 -04:00
|
|
|
{
|
2015-01-31 13:02:42 -05:00
|
|
|
struct winsize w;
|
|
|
|
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
|
2014-07-18 19:39:49 -04:00
|
|
|
erase();
|
2015-01-31 13:02:42 -05:00
|
|
|
resizeterm(w.ws_row, w.ws_col);
|
2014-07-18 19:39:49 -04:00
|
|
|
refresh();
|
2015-01-31 13:02:42 -05:00
|
|
|
|
2015-06-23 18:03:09 -04:00
|
|
|
log_debug("Resizing UI");
|
2012-04-19 20:48:42 -04:00
|
|
|
title_bar_resize();
|
2013-08-20 18:08:21 -04:00
|
|
|
wins_resize_all();
|
2014-07-18 18:17:42 -04:00
|
|
|
status_bar_resize();
|
2014-11-19 11:32:26 -05:00
|
|
|
inp_win_resize();
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *window = wins_get_current();
|
|
|
|
win_update_virtual(window);
|
2012-04-17 18:28:21 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_redraw(void)
|
2014-11-16 16:56:19 -05:00
|
|
|
{
|
|
|
|
title_bar_resize();
|
|
|
|
wins_resize_all();
|
|
|
|
status_bar_resize();
|
2014-11-19 11:32:26 -05:00
|
|
|
inp_win_resize();
|
2014-11-16 16:56:19 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_load_colours(void)
|
2012-11-25 19:01:34 -05:00
|
|
|
{
|
|
|
|
if (has_colors()) {
|
|
|
|
use_default_colors();
|
|
|
|
start_color();
|
|
|
|
theme_init_colours();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-07 17:05:36 -04:00
|
|
|
void
|
|
|
|
ui_contact_online(char *barejid, Resource *resource, GDateTime *last_activity)
|
|
|
|
{
|
|
|
|
char *show_console = prefs_get_string(PREF_STATUSES_CONSOLE);
|
|
|
|
char *show_chat_win = prefs_get_string(PREF_STATUSES_CHAT);
|
|
|
|
PContact contact = roster_get_contact(barejid);
|
|
|
|
|
|
|
|
// show nothing
|
|
|
|
if (g_strcmp0(p_contact_subscription(contact), "none") == 0) {
|
|
|
|
free(show_console);
|
|
|
|
free(show_chat_win);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// show in console if "all"
|
|
|
|
if (g_strcmp0(show_console, "all") == 0) {
|
|
|
|
cons_show_contact_online(contact, resource, last_activity);
|
|
|
|
|
|
|
|
// show in console of "online" and presence online
|
|
|
|
} else if (g_strcmp0(show_console, "online") == 0 && resource->presence == RESOURCE_ONLINE) {
|
|
|
|
cons_show_contact_online(contact, resource, last_activity);
|
|
|
|
}
|
|
|
|
|
|
|
|
// show in chat win if "all"
|
|
|
|
if (g_strcmp0(show_chat_win, "all") == 0) {
|
2015-10-27 19:39:26 -04:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin) {
|
|
|
|
chatwin_contact_online(chatwin, resource, last_activity);
|
|
|
|
}
|
2015-05-07 17:05:36 -04:00
|
|
|
|
|
|
|
// show in char win if "online" and presence online
|
|
|
|
} else if (g_strcmp0(show_chat_win, "online") == 0 && resource->presence == RESOURCE_ONLINE) {
|
2015-10-27 19:39:26 -04:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin) {
|
|
|
|
chatwin_contact_online(chatwin, resource, last_activity);
|
|
|
|
}
|
2015-05-07 17:05:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
free(show_console);
|
|
|
|
free(show_chat_win);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_contact_typing(const char *const barejid, const char *const resource)
|
2012-11-25 19:01:34 -05:00
|
|
|
{
|
2014-12-18 18:57:19 -05:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
2014-12-21 14:40:15 -05:00
|
|
|
ProfWin *window = (ProfWin*) chatwin;
|
2015-01-11 18:04:22 -05:00
|
|
|
ChatSession *session = chat_session_get(barejid);
|
2012-11-25 19:01:34 -05:00
|
|
|
|
2013-02-02 21:35:04 -05:00
|
|
|
if (prefs_get_boolean(PREF_INTYPE)) {
|
2012-11-25 19:01:34 -05:00
|
|
|
// no chat window for user
|
2014-12-18 18:57:19 -05:00
|
|
|
if (chatwin == NULL) {
|
2013-05-20 17:51:35 -04:00
|
|
|
cons_show_typing(barejid);
|
2012-11-25 19:01:34 -05:00
|
|
|
|
|
|
|
// have chat window but not currently in it
|
2014-12-21 14:40:15 -05:00
|
|
|
} else if (!wins_is_current(window)) {
|
2013-05-20 17:51:35 -04:00
|
|
|
cons_show_typing(barejid);
|
2012-11-25 19:01:34 -05:00
|
|
|
|
2015-01-11 18:04:22 -05:00
|
|
|
// in chat window with user, no session or session with resource
|
|
|
|
} else if (!session || (session && g_strcmp0(session->resource, resource) == 0)) {
|
2012-11-25 19:01:34 -05:00
|
|
|
title_bar_set_typing(TRUE);
|
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
int num = wins_get_num(window);
|
2013-08-20 18:08:21 -04:00
|
|
|
status_bar_active(num);
|
2012-11-25 19:01:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-20 17:51:35 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_TYPING)) {
|
2014-08-21 17:34:50 -04:00
|
|
|
gboolean is_current = FALSE;
|
2014-12-21 14:40:15 -05:00
|
|
|
if (window) {
|
|
|
|
is_current = wins_is_current(window);
|
2014-08-21 17:34:50 -04:00
|
|
|
}
|
2014-05-24 16:13:33 -04:00
|
|
|
if ( !is_current || (is_current && prefs_get_boolean(PREF_NOTIFY_TYPING_CURRENT)) ) {
|
|
|
|
PContact contact = roster_get_contact(barejid);
|
|
|
|
char const *display_usr = NULL;
|
2015-05-04 18:05:52 -04:00
|
|
|
if (p_contact_name(contact)) {
|
2014-05-24 16:13:33 -04:00
|
|
|
display_usr = p_contact_name(contact);
|
|
|
|
} else {
|
|
|
|
display_usr = barejid;
|
|
|
|
}
|
|
|
|
notify_typing(display_usr);
|
2013-05-20 17:51:35 -04:00
|
|
|
}
|
|
|
|
}
|
2012-11-25 19:01:34 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_roster_add(const char *const barejid, const char *const name)
|
2013-06-01 19:20:22 -04:00
|
|
|
{
|
2015-05-04 18:05:52 -04:00
|
|
|
if (name) {
|
2013-06-01 19:20:22 -04:00
|
|
|
cons_show("Roster item added: %s (%s)", barejid, name);
|
|
|
|
} else {
|
|
|
|
cons_show("Roster item added: %s", barejid);
|
|
|
|
}
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2013-06-01 19:20:22 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_roster_remove(const char *const barejid)
|
2013-06-01 19:24:22 -04:00
|
|
|
{
|
|
|
|
cons_show("Roster item removed: %s", barejid);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2013-06-01 19:24:22 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_contact_already_in_group(const char *const contact, const char *const group)
|
2013-06-23 11:29:42 -04:00
|
|
|
{
|
2013-06-23 11:35:13 -04:00
|
|
|
cons_show("%s already in group %s", contact, group);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2013-06-23 11:35:13 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_contact_not_in_group(const char *const contact, const char *const group)
|
2013-06-23 11:35:13 -04:00
|
|
|
{
|
|
|
|
cons_show("%s is not currently in group %s", contact, group);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2013-06-23 11:29:42 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_group_added(const char *const contact, const char *const group)
|
2013-06-23 12:38:30 -04:00
|
|
|
{
|
|
|
|
cons_show("%s added to group %s", contact, group);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2013-06-23 12:38:30 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_group_removed(const char *const contact, const char *const group)
|
2013-06-23 12:38:30 -04:00
|
|
|
{
|
|
|
|
cons_show("%s removed from group %s", contact, group);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2013-06-23 12:38:30 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2016-05-05 21:18:31 -04:00
|
|
|
ui_handle_login_account_success(ProfAccount *account, gboolean secured)
|
2014-04-07 15:41:06 -04:00
|
|
|
{
|
2016-01-21 20:06:28 -05:00
|
|
|
if (account->theme) {
|
|
|
|
if (theme_load(account->theme)) {
|
|
|
|
ui_load_colours();
|
|
|
|
if (prefs_get_boolean(PREF_ROSTER)) {
|
|
|
|
ui_show_roster();
|
|
|
|
} else {
|
|
|
|
ui_hide_roster();
|
|
|
|
}
|
|
|
|
if (prefs_get_boolean(PREF_OCCUPANTS)) {
|
|
|
|
ui_show_all_room_rosters();
|
|
|
|
} else {
|
|
|
|
ui_hide_all_room_rosters();
|
|
|
|
}
|
2016-09-22 19:56:53 -04:00
|
|
|
ui_resize();
|
2016-01-21 20:06:28 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Couldn't find account theme: %s", account->theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
resource_presence_t resource_presence = accounts_get_login_presence(account->name);
|
|
|
|
contact_presence_t contact_presence = contact_presence_from_resource_presence(resource_presence);
|
2015-10-13 19:23:12 -04:00
|
|
|
cons_show_login_success(account, secured);
|
2014-04-07 15:41:06 -04:00
|
|
|
title_bar_set_presence(contact_presence);
|
2015-10-13 19:23:12 -04:00
|
|
|
title_bar_set_connected(TRUE);
|
2016-05-05 21:18:31 -04:00
|
|
|
title_bar_set_tls(secured);
|
2015-05-02 21:04:04 -04:00
|
|
|
|
|
|
|
GString *fulljid = g_string_new(account->jid);
|
|
|
|
g_string_append(fulljid, "/");
|
|
|
|
g_string_append(fulljid, account->resource);
|
|
|
|
status_bar_print_message(fulljid->str);
|
|
|
|
g_string_free(fulljid, TRUE);
|
2014-04-07 15:41:06 -04:00
|
|
|
status_bar_update_virtual();
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_update_presence(const resource_presence_t resource_presence,
|
2015-10-25 19:11:27 -04:00
|
|
|
const char *const message, const char *const show)
|
2014-04-07 15:41:06 -04:00
|
|
|
{
|
|
|
|
contact_presence_t contact_presence = contact_presence_from_resource_presence(resource_presence);
|
|
|
|
title_bar_set_presence(contact_presence);
|
2016-05-05 19:53:03 -04:00
|
|
|
gint priority = accounts_get_priority_for_presence_type(session_get_account_name(), resource_presence);
|
2015-05-04 18:05:52 -04:00
|
|
|
if (message) {
|
2014-04-07 15:41:06 -04:00
|
|
|
cons_show("Status set to %s (priority %d), \"%s\".", show, priority, message);
|
|
|
|
} else {
|
|
|
|
cons_show("Status set to %s (priority %d).", show, priority);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_handle_recipient_error(const char *const recipient, const char *const err_msg)
|
2014-01-27 17:09:16 -05:00
|
|
|
{
|
|
|
|
// always show in console
|
2014-12-19 19:52:35 -05:00
|
|
|
cons_show_error("Error from %s: %s", recipient, err_msg);
|
2014-01-27 17:09:16 -05:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(recipient);
|
|
|
|
if (chatwin) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)chatwin, THEME_ERROR, '!', "Error from %s: %s", recipient, err_msg);
|
2014-12-19 19:52:35 -05:00
|
|
|
return;
|
2014-01-27 17:09:16 -05:00
|
|
|
}
|
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfMucWin *mucwin = wins_get_muc(recipient);
|
|
|
|
if (mucwin) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)mucwin, THEME_ERROR, '!', "Error from %s: %s", recipient, err_msg);
|
2014-12-19 19:52:35 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProfPrivateWin *privatewin = wins_get_private(recipient);
|
|
|
|
if (privatewin) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privatewin, THEME_ERROR, '!', "Error from %s: %s", recipient, err_msg);
|
2014-12-19 19:52:35 -05:00
|
|
|
return;
|
|
|
|
}
|
2014-01-27 17:09:16 -05:00
|
|
|
}
|
|
|
|
|
2015-10-27 19:12:46 -04:00
|
|
|
void
|
|
|
|
ui_handle_otr_error(const char *const barejid, const char *const message)
|
|
|
|
{
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)chatwin, THEME_ERROR, '!', "%s", message);
|
2015-10-27 19:12:46 -04:00
|
|
|
} else {
|
|
|
|
cons_show_error("%s - %s", barejid, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_handle_error(const char *const err_msg)
|
2014-01-27 17:09:16 -05:00
|
|
|
{
|
|
|
|
GString *msg = g_string_new("");
|
|
|
|
g_string_printf(msg, "Error %s", err_msg);
|
|
|
|
|
|
|
|
cons_show_error(msg->str);
|
|
|
|
|
|
|
|
g_string_free(msg, TRUE);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_invalid_command_usage(const char *const cmd, void (*setting_func)(void))
|
2014-04-09 17:05:31 -04:00
|
|
|
{
|
2015-07-25 21:05:53 -04:00
|
|
|
GString *msg = g_string_new("");
|
|
|
|
g_string_printf(msg, "Invalid usage, see '/help %s' for details.", &cmd[1]);
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
if (setting_func) {
|
2014-04-09 17:05:31 -04:00
|
|
|
cons_show("");
|
|
|
|
(*setting_func)();
|
2015-07-25 21:05:53 -04:00
|
|
|
cons_show(msg->str);
|
2014-04-09 17:05:31 -04:00
|
|
|
} else {
|
|
|
|
cons_show("");
|
2015-07-25 21:05:53 -04:00
|
|
|
cons_show(msg->str);
|
2015-06-16 19:15:28 -04:00
|
|
|
ProfWin *current = wins_get_current();
|
|
|
|
if (current->type == WIN_CHAT) {
|
2015-07-25 21:05:53 -04:00
|
|
|
ui_current_print_line(msg->str);
|
2014-04-09 17:05:31 -04:00
|
|
|
}
|
|
|
|
}
|
2015-07-25 21:05:53 -04:00
|
|
|
|
|
|
|
g_string_free(msg, TRUE);
|
2014-04-09 17:05:31 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_disconnected(void)
|
2012-11-25 19:57:41 -05:00
|
|
|
{
|
2013-08-20 18:08:21 -04:00
|
|
|
wins_lost_connection();
|
2015-10-13 19:23:12 -04:00
|
|
|
title_bar_set_connected(FALSE);
|
|
|
|
title_bar_set_tls(FALSE);
|
2014-01-16 13:13:22 -05:00
|
|
|
title_bar_set_presence(CONTACT_OFFLINE);
|
2013-02-03 18:06:06 -05:00
|
|
|
status_bar_clear_message();
|
2014-04-01 16:52:04 -04:00
|
|
|
status_bar_update_virtual();
|
2014-11-12 19:22:22 -05:00
|
|
|
ui_hide_roster();
|
2012-10-18 11:18:44 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_close_connected_win(int index)
|
2013-05-16 19:33:00 -04:00
|
|
|
{
|
2014-12-21 19:28:03 -05:00
|
|
|
ProfWin *window = wins_get_by_num(index);
|
|
|
|
if (window) {
|
|
|
|
if (window->type == WIN_MUC) {
|
|
|
|
ProfMucWin *mucwin = (ProfMucWin*) window;
|
|
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
|
|
presence_leave_chat_room(mucwin->roomjid);
|
2015-08-23 18:56:34 -04:00
|
|
|
muc_leave(mucwin->roomjid);
|
|
|
|
ui_leave_room(mucwin->roomjid);
|
2014-12-21 19:28:03 -05:00
|
|
|
} else if (window->type == WIN_CHAT) {
|
|
|
|
ProfChatWin *chatwin = (ProfChatWin*) window;
|
|
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBOTR
|
2015-08-29 20:32:13 -04:00
|
|
|
if (chatwin->is_otr) {
|
2014-12-21 19:28:03 -05:00
|
|
|
otr_end_session(chatwin->barejid);
|
|
|
|
}
|
2014-01-11 18:28:11 -05:00
|
|
|
#endif
|
2015-01-11 15:20:17 -05:00
|
|
|
chat_state_gone(chatwin->barejid, chatwin->state);
|
2015-01-07 19:57:25 -05:00
|
|
|
chat_session_remove(chatwin->barejid);
|
2013-05-16 19:33:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
int
|
|
|
|
ui_close_all_wins(void)
|
2013-08-26 13:06:33 -04:00
|
|
|
{
|
2013-08-29 19:33:46 -04:00
|
|
|
int count = 0;
|
2016-05-05 18:51:49 -04:00
|
|
|
jabber_conn_status_t conn_status = connection_get_status();
|
2013-08-26 13:06:33 -04:00
|
|
|
|
2013-08-29 19:33:46 -04:00
|
|
|
GList *win_nums = wins_get_nums();
|
|
|
|
GList *curr = win_nums;
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
while (curr) {
|
2013-08-29 19:33:46 -04:00
|
|
|
int num = GPOINTER_TO_INT(curr->data);
|
2014-09-15 17:31:15 -04:00
|
|
|
if ((num != 1) && (!ui_win_has_unsaved_form(num))) {
|
2013-08-26 13:06:33 -04:00
|
|
|
if (conn_status == JABBER_CONNECTED) {
|
2013-08-29 19:33:46 -04:00
|
|
|
ui_close_connected_win(num);
|
2013-08-26 13:06:33 -04:00
|
|
|
}
|
2013-08-29 19:33:46 -04:00
|
|
|
ui_close_win(num);
|
2013-08-26 13:06:33 -04:00
|
|
|
count++;
|
|
|
|
}
|
2013-08-29 19:33:46 -04:00
|
|
|
curr = g_list_next(curr);
|
2013-08-26 13:06:33 -04:00
|
|
|
}
|
|
|
|
|
2013-08-29 19:33:46 -04:00
|
|
|
g_list_free(curr);
|
|
|
|
g_list_free(win_nums);
|
|
|
|
|
2013-08-26 13:06:33 -04:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
int
|
|
|
|
ui_close_read_wins(void)
|
2013-08-26 13:06:33 -04:00
|
|
|
{
|
2013-08-29 19:33:46 -04:00
|
|
|
int count = 0;
|
2016-05-05 18:51:49 -04:00
|
|
|
jabber_conn_status_t conn_status = connection_get_status();
|
2013-08-26 13:06:33 -04:00
|
|
|
|
2013-08-29 19:33:46 -04:00
|
|
|
GList *win_nums = wins_get_nums();
|
|
|
|
GList *curr = win_nums;
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
while (curr) {
|
2013-08-29 19:33:46 -04:00
|
|
|
int num = GPOINTER_TO_INT(curr->data);
|
2014-09-15 17:31:15 -04:00
|
|
|
if ((num != 1) && (ui_win_unread(num) == 0) && (!ui_win_has_unsaved_form(num))) {
|
2013-08-26 13:06:33 -04:00
|
|
|
if (conn_status == JABBER_CONNECTED) {
|
2013-08-29 19:33:46 -04:00
|
|
|
ui_close_connected_win(num);
|
2013-08-26 13:06:33 -04:00
|
|
|
}
|
2013-08-29 19:33:46 -04:00
|
|
|
ui_close_win(num);
|
2013-08-26 13:06:33 -04:00
|
|
|
count++;
|
|
|
|
}
|
2013-08-29 19:33:46 -04:00
|
|
|
curr = g_list_next(curr);
|
2013-08-26 13:06:33 -04:00
|
|
|
}
|
|
|
|
|
2013-08-29 19:33:46 -04:00
|
|
|
g_list_free(curr);
|
|
|
|
g_list_free(win_nums);
|
|
|
|
|
2013-08-26 13:06:33 -04:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_redraw_all_room_rosters(void)
|
2014-10-18 15:22:34 -04:00
|
|
|
{
|
|
|
|
GList *win_nums = wins_get_nums();
|
|
|
|
GList *curr = win_nums;
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
while (curr) {
|
2014-10-18 15:22:34 -04:00
|
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
|
|
ProfWin *window = wins_get_by_num(num);
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window->type == WIN_MUC && win_has_active_subwin(window)) {
|
2014-12-18 18:57:19 -05:00
|
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
|
|
occupantswin_occupants(mucwin->roomjid);
|
2014-10-18 15:22:34 -04:00
|
|
|
}
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free(curr);
|
|
|
|
g_list_free(win_nums);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_hide_all_room_rosters(void)
|
2014-11-19 18:58:55 -05:00
|
|
|
{
|
|
|
|
GList *win_nums = wins_get_nums();
|
|
|
|
GList *curr = win_nums;
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
while (curr) {
|
2014-11-19 18:58:55 -05:00
|
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
|
|
ProfWin *window = wins_get_by_num(num);
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window->type == WIN_MUC && win_has_active_subwin(window)) {
|
2014-12-18 18:57:19 -05:00
|
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
2015-11-01 20:01:37 -05:00
|
|
|
mucwin_hide_occupants(mucwin);
|
2014-11-19 18:58:55 -05:00
|
|
|
}
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free(curr);
|
|
|
|
g_list_free(win_nums);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_show_all_room_rosters(void)
|
2014-11-19 18:58:55 -05:00
|
|
|
{
|
|
|
|
GList *win_nums = wins_get_nums();
|
|
|
|
GList *curr = win_nums;
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
while (curr) {
|
2014-11-19 18:58:55 -05:00
|
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
|
|
ProfWin *window = wins_get_by_num(num);
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window->type == WIN_MUC && !win_has_active_subwin(window)) {
|
2014-12-18 18:57:19 -05:00
|
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
2015-11-01 19:59:27 -05:00
|
|
|
mucwin_show_occupants(mucwin);
|
2014-11-19 18:58:55 -05:00
|
|
|
}
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free(curr);
|
|
|
|
g_list_free(win_nums);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
gboolean
|
|
|
|
ui_win_has_unsaved_form(int num)
|
2014-09-15 17:31:15 -04:00
|
|
|
{
|
|
|
|
ProfWin *window = wins_get_by_num(num);
|
|
|
|
|
2014-12-21 19:01:43 -05:00
|
|
|
if (window->type == WIN_MUC_CONFIG) {
|
|
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)window;
|
|
|
|
assert(confwin->memcheck == PROFCONFWIN_MEMCHECK);
|
|
|
|
return confwin->form->modified;
|
|
|
|
} else {
|
2014-09-15 17:31:15 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 17:09:39 -04:00
|
|
|
void
|
2015-11-02 15:59:36 -05:00
|
|
|
ui_focus_win(ProfWin *window)
|
2015-04-21 18:28:52 -04:00
|
|
|
{
|
2015-04-30 17:09:39 -04:00
|
|
|
assert(window != NULL);
|
2015-04-21 18:28:52 -04:00
|
|
|
|
2015-10-27 16:40:42 -04:00
|
|
|
if (wins_is_current(window)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-30 17:09:39 -04:00
|
|
|
ProfWin *old_current = wins_get_current();
|
|
|
|
if (old_current->type == WIN_MUC_CONFIG) {
|
|
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)old_current;
|
2016-05-19 19:19:03 -04:00
|
|
|
cmd_ac_remove_form_fields(confwin->form);
|
2015-04-30 17:09:39 -04:00
|
|
|
}
|
2014-10-18 18:16:19 -04:00
|
|
|
|
2015-04-30 17:09:39 -04:00
|
|
|
if (window->type == WIN_MUC_CONFIG) {
|
|
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)window;
|
2016-05-19 19:19:03 -04:00
|
|
|
cmd_ac_add_form_fields(confwin->form);
|
2015-04-30 17:09:39 -04:00
|
|
|
}
|
2014-10-18 18:16:19 -04:00
|
|
|
|
2015-04-30 17:09:39 -04:00
|
|
|
int i = wins_get_num(window);
|
|
|
|
wins_set_current_by_num(i);
|
2012-11-25 19:57:41 -05:00
|
|
|
|
2015-04-30 17:09:39 -04:00
|
|
|
if (i == 1) {
|
|
|
|
title_bar_console();
|
2016-01-01 20:22:19 -05:00
|
|
|
rosterwin_roster();
|
2014-04-01 18:54:26 -04:00
|
|
|
} else {
|
2015-04-30 17:09:39 -04:00
|
|
|
title_bar_switch();
|
2012-11-25 19:57:41 -05:00
|
|
|
}
|
2015-04-30 17:09:39 -04:00
|
|
|
status_bar_current(i);
|
|
|
|
status_bar_active(i);
|
2012-11-25 19:57:41 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_close_win(int index)
|
2013-05-12 17:57:36 -04:00
|
|
|
{
|
2014-10-18 18:56:10 -04:00
|
|
|
ProfWin *window = wins_get_by_num(index);
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window && window->type == WIN_MUC_CONFIG) {
|
|
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)window;
|
|
|
|
if (confwin->form) {
|
2016-05-19 19:19:03 -04:00
|
|
|
cmd_ac_remove_form_fields(confwin->form);
|
2014-10-18 18:56:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-20 18:08:21 -04:00
|
|
|
wins_close_by_num(index);
|
2014-01-16 13:04:25 -05:00
|
|
|
title_bar_console();
|
2013-10-02 18:33:48 -04:00
|
|
|
status_bar_current(1);
|
2013-08-27 19:50:15 -04:00
|
|
|
status_bar_active(1);
|
2013-05-12 17:57:36 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_prune_wins(void)
|
2013-05-16 19:33:00 -04:00
|
|
|
{
|
2016-05-05 18:51:49 -04:00
|
|
|
jabber_conn_status_t conn_status = connection_get_status();
|
2013-05-16 19:33:00 -04:00
|
|
|
gboolean pruned = FALSE;
|
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
GSList *wins = wins_get_prune_wins();
|
2015-05-04 18:05:52 -04:00
|
|
|
if (wins) {
|
2013-08-20 18:08:21 -04:00
|
|
|
pruned = TRUE;
|
|
|
|
}
|
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
GSList *curr = wins;
|
2015-05-04 18:05:52 -04:00
|
|
|
while (curr) {
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = curr->data;
|
|
|
|
if (window->type == WIN_CHAT) {
|
|
|
|
if (conn_status == JABBER_CONNECTED) {
|
2014-12-28 20:17:59 -05:00
|
|
|
ProfChatWin *chatwin = (ProfChatWin*)window;
|
2015-01-07 19:57:25 -05:00
|
|
|
chat_session_remove(chatwin->barejid);
|
2013-05-16 19:33:00 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-20 18:08:21 -04:00
|
|
|
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
ui_close_win(num);
|
|
|
|
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
2015-05-04 18:05:52 -04:00
|
|
|
if (wins) {
|
2014-12-19 19:52:35 -05:00
|
|
|
g_slist_free(wins);
|
2013-05-16 19:33:00 -04:00
|
|
|
}
|
|
|
|
|
2013-08-20 18:08:21 -04:00
|
|
|
wins_tidy();
|
2013-05-16 19:33:00 -04:00
|
|
|
if (pruned) {
|
|
|
|
cons_show("Windows pruned.");
|
|
|
|
} else {
|
|
|
|
cons_show("No prune needed.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_current_print_line(const char *const msg, ...)
|
2012-11-25 19:57:41 -05:00
|
|
|
{
|
2014-07-20 19:18:37 -04:00
|
|
|
ProfWin *window = wins_get_current();
|
2012-11-27 16:53:56 -05:00
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
2014-01-11 14:10:00 -05:00
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "%s", fmt_msg->str);
|
2012-11-27 16:53:56 -05:00
|
|
|
va_end(arg);
|
2014-01-11 14:10:00 -05:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
2012-11-25 19:57:41 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_current_print_formatted_line(const char show_char, int attrs, const char *const msg, ...)
|
2014-01-16 18:16:37 -05:00
|
|
|
{
|
|
|
|
ProfWin *current = wins_get_current();
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(current, attrs, show_char, "%s", fmt_msg->str);
|
2014-01-16 18:16:37 -05:00
|
|
|
va_end(arg);
|
|
|
|
g_string_free(fmt_msg, TRUE);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_print_system_msg_from_recipient(const char *const barejid, const char *message)
|
2012-11-11 07:00:21 -05:00
|
|
|
{
|
2014-12-10 19:02:51 -05:00
|
|
|
if (barejid == NULL || message == NULL)
|
2012-11-11 07:00:21 -05:00
|
|
|
return;
|
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_chat(barejid);
|
2013-08-20 18:08:21 -04:00
|
|
|
if (window == NULL) {
|
2014-04-25 19:36:36 -04:00
|
|
|
int num = 0;
|
2014-12-10 19:02:51 -05:00
|
|
|
window = wins_new_chat(barejid);
|
2015-05-04 18:05:52 -04:00
|
|
|
if (window) {
|
2013-08-20 18:08:21 -04:00
|
|
|
num = wins_get_num(window);
|
|
|
|
status_bar_active(num);
|
|
|
|
} else {
|
|
|
|
num = 0;
|
|
|
|
window = wins_get_console();
|
2013-08-27 19:50:15 -04:00
|
|
|
status_bar_active(1);
|
2013-08-20 18:08:21 -04:00
|
|
|
}
|
2012-11-11 07:00:21 -05:00
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "*%s %s", barejid, message);
|
2012-11-11 07:00:21 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_room_join(const char *const roomjid, gboolean focus)
|
2014-12-19 19:52:35 -05:00
|
|
|
{
|
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2015-04-30 17:09:39 -04:00
|
|
|
if (!window) {
|
2014-12-19 19:52:35 -05:00
|
|
|
window = wins_new_muc(roomjid);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *nick = muc_nick(roomjid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_print(window, THEME_ROOMINFO, '!', "-> You have joined the room as %s", nick);
|
2014-10-18 15:22:34 -04:00
|
|
|
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
2014-12-19 19:52:35 -05:00
|
|
|
char *role = muc_role_str(roomjid);
|
|
|
|
char *affiliation = muc_affiliation_str(roomjid);
|
2014-10-18 15:22:34 -04:00
|
|
|
if (role) {
|
2016-10-15 14:53:49 -04:00
|
|
|
win_append(window, THEME_ROOMINFO, ", role: %s", role);
|
2014-10-18 15:22:34 -04:00
|
|
|
}
|
|
|
|
if (affiliation) {
|
2016-10-15 14:53:49 -04:00
|
|
|
win_append(window, THEME_ROOMINFO, ", affiliation: %s", affiliation);
|
2014-10-18 15:22:34 -04:00
|
|
|
}
|
2014-10-11 21:10:46 -04:00
|
|
|
}
|
2016-10-15 14:19:44 -04:00
|
|
|
win_appendln(window, THEME_ROOMINFO, "");
|
2014-04-12 21:52:25 -04:00
|
|
|
|
|
|
|
if (focus) {
|
2015-11-02 15:59:36 -05:00
|
|
|
ui_focus_win(window);
|
2014-04-12 21:52:25 -04:00
|
|
|
} else {
|
2015-04-30 17:09:39 -04:00
|
|
|
int num = wins_get_num(window);
|
2014-04-12 21:52:25 -04:00
|
|
|
status_bar_active(num);
|
2014-04-14 15:32:51 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2014-12-19 19:52:35 -05:00
|
|
|
char *nick = muc_nick(roomjid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "-> Autojoined %s as %s (%d).", roomjid, nick, num);
|
2014-04-12 21:52:25 -04:00
|
|
|
}
|
2016-02-02 19:11:38 -05:00
|
|
|
|
|
|
|
GList *privwins = wins_get_private_chats(roomjid);
|
|
|
|
GList *curr = privwins;
|
|
|
|
while (curr) {
|
|
|
|
ProfPrivateWin *privwin = curr->data;
|
|
|
|
privwin_room_joined(privwin);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(privwins);
|
2012-11-05 16:36:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_switch_to_room(const char *const roomjid)
|
2014-10-17 19:40:44 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2015-11-02 15:59:36 -05:00
|
|
|
ui_focus_win(window);
|
2014-10-17 19:40:44 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_room_destroy(const char *const roomjid)
|
2014-09-03 17:00:08 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2014-09-03 17:00:08 -04:00
|
|
|
if (window == NULL) {
|
2014-12-19 19:52:35 -05:00
|
|
|
log_error("Received room destroy result, but no window open for %s.", roomjid);
|
2014-09-03 17:00:08 -04:00
|
|
|
} else {
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
ui_close_win(num);
|
2014-12-19 19:52:35 -05:00
|
|
|
cons_show("Room destroyed: %s", roomjid);
|
2014-09-02 19:23:04 -04:00
|
|
|
}
|
2016-02-02 19:11:38 -05:00
|
|
|
|
|
|
|
GList *privwins = wins_get_private_chats(roomjid);
|
|
|
|
GList *curr = privwins;
|
|
|
|
while (curr) {
|
|
|
|
ProfPrivateWin *privwin = curr->data;
|
|
|
|
privwin_room_destroyed(privwin);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(privwins);
|
2014-09-02 19:23:04 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_leave_room(const char *const roomjid)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
if (window) {
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
ui_close_win(num);
|
|
|
|
}
|
2016-02-02 19:11:38 -05:00
|
|
|
|
|
|
|
GList *privwins = wins_get_private_chats(roomjid);
|
|
|
|
GList *curr = privwins;
|
|
|
|
while (curr) {
|
|
|
|
ProfPrivateWin *privwin = curr->data;
|
|
|
|
privwin_room_left(privwin);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(privwins);
|
|
|
|
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_room_destroyed(const char *const roomjid, const char *const reason, const char *const new_jid,
|
|
|
|
const char *const password)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
if (window == NULL) {
|
2014-12-19 19:52:35 -05:00
|
|
|
log_error("Received room destroy, but no window open for %s.", roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
} else {
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
ui_close_win(num);
|
|
|
|
ProfWin *console = wins_get_console();
|
|
|
|
|
|
|
|
if (reason) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "<- Room destroyed: %s, reason: %s", roomjid, reason);
|
2014-10-05 15:52:34 -04:00
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "<- Room destroyed: %s", roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (new_jid) {
|
|
|
|
if (password) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "Replacement room: %s, password: %s", new_jid, password);
|
2014-10-05 15:52:34 -04:00
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "Replacement room: %s", new_jid);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-02 19:11:38 -05:00
|
|
|
|
|
|
|
GList *privwins = wins_get_private_chats(roomjid);
|
|
|
|
GList *curr = privwins;
|
|
|
|
while (curr) {
|
|
|
|
ProfPrivateWin *privwin = curr->data;
|
|
|
|
privwin_room_destroyed(privwin);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(privwins);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_room_kicked(const char *const roomjid, const char *const actor, const char *const reason)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
if (window == NULL) {
|
2014-12-19 19:52:35 -05:00
|
|
|
log_error("Received kick, but no window open for %s.", roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
} else {
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
ui_close_win(num);
|
|
|
|
|
|
|
|
GString *message = g_string_new("Kicked from ");
|
2014-12-19 19:52:35 -05:00
|
|
|
g_string_append(message, roomjid);
|
2014-10-05 15:52:34 -04:00
|
|
|
if (actor) {
|
|
|
|
g_string_append(message, " by ");
|
|
|
|
g_string_append(message, actor);
|
|
|
|
}
|
|
|
|
if (reason) {
|
|
|
|
g_string_append(message, ", reason: ");
|
|
|
|
g_string_append(message, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProfWin *console = wins_get_console();
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "<- %s", message->str);
|
2014-10-05 15:52:34 -04:00
|
|
|
g_string_free(message, TRUE);
|
|
|
|
}
|
2016-02-02 19:11:38 -05:00
|
|
|
|
|
|
|
GList *privwins = wins_get_private_chats(roomjid);
|
|
|
|
GList *curr = privwins;
|
|
|
|
while (curr) {
|
|
|
|
ProfPrivateWin *privwin = curr->data;
|
|
|
|
privwin_room_kicked(privwin, actor, reason);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(privwins);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_room_banned(const char *const roomjid, const char *const actor, const char *const reason)
|
2014-10-06 17:59:25 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
2014-10-06 17:59:25 -04:00
|
|
|
if (window == NULL) {
|
2014-12-19 19:52:35 -05:00
|
|
|
log_error("Received ban, but no window open for %s.", roomjid);
|
2014-10-06 17:59:25 -04:00
|
|
|
} else {
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
ui_close_win(num);
|
|
|
|
|
|
|
|
GString *message = g_string_new("Banned from ");
|
2014-12-19 19:52:35 -05:00
|
|
|
g_string_append(message, roomjid);
|
2014-10-06 17:59:25 -04:00
|
|
|
if (actor) {
|
|
|
|
g_string_append(message, " by ");
|
|
|
|
g_string_append(message, actor);
|
|
|
|
}
|
|
|
|
if (reason) {
|
|
|
|
g_string_append(message, ", reason: ");
|
|
|
|
g_string_append(message, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProfWin *console = wins_get_console();
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_TYPING, '!', "<- %s", message->str);
|
2014-10-06 17:59:25 -04:00
|
|
|
g_string_free(message, TRUE);
|
|
|
|
}
|
2016-02-02 19:11:38 -05:00
|
|
|
|
|
|
|
GList *privwins = wins_get_private_chats(roomjid);
|
|
|
|
GList *curr = privwins;
|
|
|
|
while (curr) {
|
|
|
|
ProfPrivateWin *privwin = curr->data;
|
|
|
|
privwin_room_banned(privwin, actor, reason);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(privwins);
|
2014-10-06 17:59:25 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
int
|
|
|
|
ui_win_unread(int index)
|
2013-05-16 17:34:05 -04:00
|
|
|
{
|
2013-08-20 18:08:21 -04:00
|
|
|
ProfWin *window = wins_get_by_num(index);
|
2015-05-04 18:05:52 -04:00
|
|
|
if (window) {
|
2014-12-21 18:14:01 -05:00
|
|
|
return win_unread(window);
|
2013-05-16 17:34:05 -04:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-25 19:11:27 -04:00
|
|
|
char*
|
2014-12-22 17:13:42 -05:00
|
|
|
ui_ask_password(void)
|
2013-12-15 14:38:23 -05:00
|
|
|
{
|
2015-09-01 15:16:04 -04:00
|
|
|
status_bar_get_password();
|
|
|
|
status_bar_update_virtual();
|
|
|
|
return inp_get_password();
|
|
|
|
}
|
|
|
|
|
2015-10-25 19:11:27 -04:00
|
|
|
char*
|
2015-09-22 16:42:05 -04:00
|
|
|
ui_get_line(void)
|
|
|
|
{
|
|
|
|
status_bar_update_virtual();
|
|
|
|
return inp_get_line();
|
|
|
|
}
|
|
|
|
|
2015-10-25 19:11:27 -04:00
|
|
|
char*
|
2015-09-01 15:16:04 -04:00
|
|
|
ui_ask_pgp_passphrase(const char *hint, int prev_fail)
|
|
|
|
{
|
|
|
|
ProfWin *current = wins_get_current();
|
|
|
|
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(current, THEME_DEFAULT, '-', "");
|
2015-09-01 16:25:58 -04:00
|
|
|
|
2015-09-01 15:16:04 -04:00
|
|
|
if (prev_fail) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(current, THEME_DEFAULT, '!', "Incorrect passphrase");
|
2015-09-01 15:16:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hint) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(current, THEME_DEFAULT, '!', "Enter PGP key passphrase for %s", hint);
|
2015-09-01 15:16:04 -04:00
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(current, THEME_DEFAULT, '!', "Enter PGP key passphrase");
|
2015-09-01 15:16:04 -04:00
|
|
|
}
|
|
|
|
|
2015-09-01 16:25:58 -04:00
|
|
|
ui_update();
|
|
|
|
|
2015-09-01 15:16:04 -04:00
|
|
|
status_bar_get_password();
|
|
|
|
status_bar_update_virtual();
|
|
|
|
return inp_get_password();
|
2013-12-15 14:38:23 -05:00
|
|
|
}
|
|
|
|
|
2015-01-11 15:20:17 -05:00
|
|
|
void
|
|
|
|
ui_contact_offline(char *barejid, char *resource, char *status)
|
|
|
|
{
|
|
|
|
char *show_console = prefs_get_string(PREF_STATUSES_CONSOLE);
|
|
|
|
char *show_chat_win = prefs_get_string(PREF_STATUSES_CHAT);
|
|
|
|
Jid *jid = jid_create_from_bare_and_resource(barejid, resource);
|
|
|
|
PContact contact = roster_get_contact(barejid);
|
2015-05-04 18:05:52 -04:00
|
|
|
if (p_contact_subscription(contact)) {
|
2015-01-11 15:20:17 -05:00
|
|
|
if (strcmp(p_contact_subscription(contact), "none") != 0) {
|
|
|
|
|
|
|
|
// show in console if "all"
|
|
|
|
if (g_strcmp0(show_console, "all") == 0) {
|
|
|
|
cons_show_contact_offline(contact, resource, status);
|
|
|
|
|
|
|
|
// show in console of "online"
|
|
|
|
} else if (g_strcmp0(show_console, "online") == 0) {
|
|
|
|
cons_show_contact_offline(contact, resource, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
// show in chat win if "all"
|
|
|
|
if (g_strcmp0(show_chat_win, "all") == 0) {
|
2015-10-27 19:39:26 -04:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin) {
|
|
|
|
chatwin_contact_offline(chatwin, resource, status);
|
|
|
|
}
|
2015-01-11 15:20:17 -05:00
|
|
|
|
2016-01-02 20:32:37 -05:00
|
|
|
// show in chat win if "online" and presence online
|
2015-01-11 15:20:17 -05:00
|
|
|
} else if (g_strcmp0(show_chat_win, "online") == 0) {
|
2015-10-27 19:39:26 -04:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin) {
|
|
|
|
chatwin_contact_offline(chatwin, resource, status);
|
|
|
|
}
|
2015-01-11 15:20:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin && chatwin->resource_override && (g_strcmp0(resource, chatwin->resource_override) == 0)) {
|
|
|
|
FREE_SET_NULL(chatwin->resource_override);
|
|
|
|
}
|
|
|
|
|
|
|
|
prefs_free_string(show_console);
|
|
|
|
prefs_free_string(show_chat_win);
|
|
|
|
jid_destroy(jid);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_clear_win_title(void)
|
2014-04-03 16:13:59 -04:00
|
|
|
{
|
2014-04-03 16:46:43 -04:00
|
|
|
printf("%c]0;%c", '\033', '\007');
|
2014-04-03 16:13:59 -04:00
|
|
|
}
|
|
|
|
|
2014-12-29 21:05:50 -05:00
|
|
|
void
|
|
|
|
ui_goodbye_title(void)
|
|
|
|
{
|
2015-01-02 21:05:55 -05:00
|
|
|
int result = system("/bin/echo -ne \"\033]0;Thanks for using Profanity\007\"");
|
|
|
|
if(result == -1) log_error("Error printing title on shutdown");
|
2014-12-29 21:05:50 -05:00
|
|
|
}
|
|
|
|
|
2013-04-21 12:30:04 -04:00
|
|
|
static void
|
2014-04-05 19:47:14 -04:00
|
|
|
_ui_draw_term_title(void)
|
2013-04-21 12:30:04 -04:00
|
|
|
{
|
|
|
|
char new_win_title[100];
|
2016-05-05 18:51:49 -04:00
|
|
|
jabber_conn_status_t status = connection_get_status();
|
2013-04-21 12:30:04 -04:00
|
|
|
|
|
|
|
if (status == JABBER_CONNECTED) {
|
2016-05-05 20:12:54 -04:00
|
|
|
const char * const jid = connection_get_fulljid();
|
2015-11-02 16:14:55 -05:00
|
|
|
gint unread = wins_get_total_unread();
|
2013-04-21 12:30:04 -04:00
|
|
|
|
|
|
|
if (unread != 0) {
|
2013-10-06 20:35:20 -04:00
|
|
|
snprintf(new_win_title, sizeof(new_win_title),
|
2015-01-02 20:35:27 -05:00
|
|
|
"/bin/echo -n \"%c]0;%s (%d) - %s%c\"", '\033', "Profanity",
|
2013-10-06 20:35:20 -04:00
|
|
|
unread, jid, '\007');
|
2013-04-21 12:30:04 -04:00
|
|
|
} else {
|
2013-10-06 20:35:20 -04:00
|
|
|
snprintf(new_win_title, sizeof(new_win_title),
|
2015-01-02 20:35:27 -05:00
|
|
|
"/bin/echo -n \"%c]0;%s - %s%c\"", '\033', "Profanity", jid,
|
2013-10-06 20:35:20 -04:00
|
|
|
'\007');
|
2013-04-21 12:30:04 -04:00
|
|
|
}
|
|
|
|
} else {
|
2015-01-02 20:35:27 -05:00
|
|
|
snprintf(new_win_title, sizeof(new_win_title), "/bin/echo -n \"%c]0;%s%c\"", '\033',
|
2014-04-03 16:46:43 -04:00
|
|
|
"Profanity", '\007');
|
2013-04-21 12:30:04 -04:00
|
|
|
}
|
|
|
|
if (g_strcmp0(win_title, new_win_title) != 0) {
|
|
|
|
// print to x-window title bar
|
2014-12-30 20:48:52 -05:00
|
|
|
int res = system(new_win_title);
|
|
|
|
if (res == -1) {
|
2015-01-01 17:51:52 -05:00
|
|
|
log_error("Error writing terminal window title.");
|
2014-12-30 20:48:52 -05:00
|
|
|
}
|
2015-05-04 18:05:52 -04:00
|
|
|
if (win_title) {
|
2013-04-21 12:30:04 -04:00
|
|
|
free(win_title);
|
|
|
|
}
|
|
|
|
win_title = strdup(new_win_title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_handle_room_configuration_form_error(const char *const roomjid, const char *const message)
|
2014-09-17 15:59:56 -04:00
|
|
|
{
|
|
|
|
ProfWin *window = NULL;
|
|
|
|
GString *message_str = g_string_new("");
|
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
if (roomjid) {
|
|
|
|
window = (ProfWin*)wins_get_muc(roomjid);
|
|
|
|
g_string_printf(message_str, "Could not get room configuration for %s", roomjid);
|
2014-09-17 15:59:56 -04:00
|
|
|
} else {
|
|
|
|
window = wins_get_console();
|
|
|
|
g_string_printf(message_str, "Could not get room configuration");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message) {
|
|
|
|
g_string_append(message_str, ": ");
|
|
|
|
g_string_append(message_str, message);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_ERROR, '-', "%s", message_str->str);
|
2014-09-17 15:59:56 -04:00
|
|
|
|
|
|
|
g_string_free(message_str, TRUE);
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_handle_room_config_submit_result(const char *const roomjid)
|
2014-09-10 18:05:35 -04:00
|
|
|
{
|
2014-12-19 19:52:35 -05:00
|
|
|
if (roomjid) {
|
2015-10-09 05:20:49 -04:00
|
|
|
ProfWin *form_window = NULL;
|
|
|
|
ProfWin *muc_window = (ProfWin*)wins_get_muc(roomjid);
|
2014-09-17 16:48:55 -04:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
GString *form_recipient = g_string_new(roomjid);
|
|
|
|
g_string_append(form_recipient, " config");
|
|
|
|
form_window = (ProfWin*) wins_get_muc_conf(form_recipient->str);
|
2014-09-17 16:48:55 -04:00
|
|
|
g_string_free(form_recipient, TRUE);
|
|
|
|
|
|
|
|
if (form_window) {
|
2015-10-09 05:20:49 -04:00
|
|
|
int num = wins_get_num(form_window);
|
2014-09-17 16:48:55 -04:00
|
|
|
wins_close_by_num(num);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (muc_window) {
|
2015-11-02 15:59:36 -05:00
|
|
|
ui_focus_win((ProfWin*)muc_window);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(muc_window, THEME_ROOMINFO, '!', "Room configuration successful");
|
2014-09-17 16:48:55 -04:00
|
|
|
} else {
|
2015-04-30 17:09:39 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2015-11-02 15:59:36 -05:00
|
|
|
ui_focus_win(console);
|
2014-12-19 19:52:35 -05:00
|
|
|
cons_show("Room configuration successful: %s", roomjid);
|
2014-09-17 16:48:55 -04:00
|
|
|
}
|
|
|
|
} else {
|
2014-09-23 19:30:05 -04:00
|
|
|
cons_show("Room configuration successful");
|
2014-09-17 16:48:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_handle_room_config_submit_result_error(const char *const roomjid, const char *const message)
|
2014-09-17 16:48:55 -04:00
|
|
|
{
|
|
|
|
ProfWin *console = wins_get_console();
|
2014-12-19 19:52:35 -05:00
|
|
|
if (roomjid) {
|
2015-10-09 05:20:49 -04:00
|
|
|
ProfWin *muc_window = NULL;
|
|
|
|
ProfWin *form_window = NULL;
|
2014-12-19 19:52:35 -05:00
|
|
|
muc_window = (ProfWin*)wins_get_muc(roomjid);
|
2014-09-17 16:48:55 -04:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
GString *form_recipient = g_string_new(roomjid);
|
|
|
|
g_string_append(form_recipient, " config");
|
|
|
|
form_window = (ProfWin*) wins_get_muc_conf(form_recipient->str);
|
2014-09-17 16:48:55 -04:00
|
|
|
g_string_free(form_recipient, TRUE);
|
|
|
|
|
|
|
|
if (form_window) {
|
|
|
|
if (message) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(form_window, THEME_ERROR, '!', "Configuration error: %s", message);
|
2014-09-17 16:48:55 -04:00
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(form_window, THEME_ERROR, '!', "Configuration error");
|
2014-09-17 16:48:55 -04:00
|
|
|
}
|
|
|
|
} else if (muc_window) {
|
|
|
|
if (message) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(muc_window, THEME_ERROR, '!', "Configuration error: %s", message);
|
2014-09-17 16:48:55 -04:00
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(muc_window, THEME_ERROR, '!', "Configuration error");
|
2014-09-17 16:48:55 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (message) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_ERROR, '!', "Configuration error for %s: %s", roomjid, message);
|
2014-09-17 16:48:55 -04:00
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_ERROR, '!', "Configuration error for %s", roomjid);
|
2014-09-17 16:48:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(console, THEME_ERROR, '!', "Configuration error");
|
2014-09-17 16:48:55 -04:00
|
|
|
}
|
2014-09-06 19:22:11 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2016-07-03 19:41:29 -04:00
|
|
|
ui_show_lines(ProfWin *window, gchar** lines)
|
2014-09-16 15:52:38 -04:00
|
|
|
{
|
2015-05-04 18:05:52 -04:00
|
|
|
if (lines) {
|
2014-09-16 15:52:38 -04:00
|
|
|
int i;
|
|
|
|
for (i = 0; lines[i] != NULL; i++) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "%s", lines[i]);
|
2014-09-16 15:52:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_show_roster(void)
|
2014-11-10 18:23:02 -05:00
|
|
|
{
|
|
|
|
ProfWin *window = wins_get_console();
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window && !win_has_active_subwin(window)) {
|
2014-11-10 18:23:02 -05:00
|
|
|
wins_show_subwin(window);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2014-11-10 18:23:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
ui_hide_roster(void)
|
2014-11-10 18:23:02 -05:00
|
|
|
{
|
|
|
|
ProfWin *window = wins_get_console();
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window && win_has_active_subwin(window)) {
|
2014-11-10 18:23:02 -05:00
|
|
|
wins_hide_subwin(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-04 19:26:29 -04:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_handle_software_version_error(const char *const roomjid, const char *const message)
|
2015-08-04 19:26:29 -04:00
|
|
|
{
|
|
|
|
GString *message_str = g_string_new("");
|
|
|
|
|
|
|
|
ProfWin *window = wins_get_console();
|
|
|
|
g_string_printf(message_str, "Could not get software version");
|
|
|
|
|
|
|
|
if (message) {
|
|
|
|
g_string_append(message_str, ": ");
|
|
|
|
g_string_append(message_str, message);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_ERROR, '-', "%s", message_str->str);
|
2015-08-04 19:26:29 -04:00
|
|
|
|
|
|
|
g_string_free(message_str, TRUE);
|
|
|
|
}
|
|
|
|
|
2015-08-05 20:56:52 -04:00
|
|
|
void
|
2015-10-25 19:11:27 -04:00
|
|
|
ui_show_software_version(const char *const jid, const char *const presence,
|
|
|
|
const char *const name, const char *const version, const char *const os)
|
2015-08-05 20:56:52 -04:00
|
|
|
{
|
|
|
|
Jid *jidp = jid_create(jid);
|
|
|
|
ProfWin *window = NULL;
|
|
|
|
ProfWin *chatwin = (ProfWin*)wins_get_chat(jidp->barejid);
|
|
|
|
ProfWin *mucwin = (ProfWin*)wins_get_muc(jidp->barejid);
|
|
|
|
ProfWin *privwin = (ProfWin*)wins_get_private(jidp->fulljid);
|
|
|
|
ProfWin *console = wins_get_console();
|
|
|
|
jid_destroy(jidp);
|
|
|
|
|
|
|
|
if (chatwin) {
|
|
|
|
if (wins_is_current(chatwin)) {
|
|
|
|
window = chatwin;
|
|
|
|
} else {
|
|
|
|
window = console;
|
|
|
|
}
|
|
|
|
} else if (privwin) {
|
|
|
|
if (wins_is_current(privwin)) {
|
|
|
|
window = privwin;
|
|
|
|
} else {
|
|
|
|
window = console;
|
|
|
|
}
|
|
|
|
} else if (mucwin) {
|
|
|
|
if (wins_is_current(mucwin)) {
|
|
|
|
window = mucwin;
|
|
|
|
} else {
|
|
|
|
window = console;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
window = console;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name || version || os) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "");
|
2015-08-05 20:56:52 -04:00
|
|
|
theme_item_t presence_colour = theme_main_presence_attrs(presence);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_print(window, presence_colour, '-', "%s", jid);
|
2016-10-15 14:19:44 -04:00
|
|
|
win_appendln(window, THEME_DEFAULT, ":");
|
2015-08-05 20:56:52 -04:00
|
|
|
}
|
|
|
|
if (name) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "Name : %s", name);
|
2015-08-05 20:56:52 -04:00
|
|
|
}
|
|
|
|
if (version) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "Version : %s", version);
|
2015-08-05 20:56:52 -04:00
|
|
|
}
|
|
|
|
if (os) {
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println(window, THEME_DEFAULT, '-', "OS : %s", os);
|
2015-08-05 20:56:52 -04:00
|
|
|
}
|
|
|
|
}
|
2016-02-14 17:28:55 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ui_status_bar_inactive(const int win)
|
|
|
|
{
|
|
|
|
status_bar_inactive(win);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ui_status_bar_active(const int win)
|
|
|
|
{
|
|
|
|
status_bar_active(win);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ui_status_bar_new(const int win)
|
|
|
|
{
|
|
|
|
status_bar_new(win);
|
|
|
|
}
|