2012-10-21 20:02:20 +01:00
|
|
|
/*
|
2012-02-20 20:07:38 +00:00
|
|
|
* profanity.h
|
|
|
|
*
|
2013-01-11 02:05:29 +00:00
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
2012-10-21 20:02:20 +01:00
|
|
|
*
|
2012-02-20 20:07:38 +00: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
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-09 22:24:03 +00:00
|
|
|
#ifndef PROFANITY_H
|
|
|
|
#define PROFANITY_H
|
|
|
|
|
2013-02-14 22:06:25 +00:00
|
|
|
#include "resource.h"
|
2013-02-02 19:47:41 +00:00
|
|
|
#include "xmpp/xmpp.h"
|
2012-11-11 14:00:21 +02:00
|
|
|
|
2012-10-02 01:24:48 +01:00
|
|
|
void prof_run(const int disable_tls, char *log_level);
|
|
|
|
|
2012-12-07 00:10:00 +00:00
|
|
|
void prof_handle_login_success(const char *jid, const char *altdomain);
|
2012-12-09 22:14:38 +00:00
|
|
|
void prof_handle_login_account_success(char *account_name);
|
2012-10-01 23:53:26 +01:00
|
|
|
void prof_handle_lost_connection(void);
|
2012-11-19 22:23:48 +00:00
|
|
|
void prof_handle_disconnect(const char * const jid);
|
2012-10-01 23:53:26 +01:00
|
|
|
void prof_handle_failed_login(void);
|
2012-10-01 23:41:36 +01:00
|
|
|
void prof_handle_typing(char *from);
|
2013-02-14 22:06:25 +00:00
|
|
|
void prof_handle_contact_online(char *contact, Resource *resource,
|
|
|
|
GDateTime *last_activity);
|
2012-10-02 00:03:53 +01:00
|
|
|
void prof_handle_contact_offline(char *contact, char *show, char *status);
|
2012-11-14 00:04:08 +00:00
|
|
|
void prof_handle_incoming_message(char *from, char *message, gboolean priv);
|
|
|
|
void prof_handle_delayed_message(char *from, char *message, GTimeVal tv_stamp,
|
|
|
|
gboolean priv);
|
2012-10-18 18:18:44 +03:00
|
|
|
void prof_handle_error_message(const char *from, const char *err_msg);
|
2012-11-11 14:00:21 +02:00
|
|
|
void prof_handle_subscription(const char *from, jabber_subscr_t type);
|
2012-10-02 01:04:53 +01:00
|
|
|
void prof_handle_roster(GSList *roster);
|
2012-11-01 01:21:00 +00:00
|
|
|
void prof_handle_gone(const char * const from);
|
2012-11-06 22:40:38 +00:00
|
|
|
void prof_handle_room_history(const char * const room_jid,
|
|
|
|
const char * const nick, GTimeVal tv_stamp, const char * const message);
|
|
|
|
void prof_handle_room_message(const char * const room_jid, const char * const nick,
|
|
|
|
const char * const message);
|
2012-11-10 03:30:27 +00:00
|
|
|
void prof_handle_room_subject(const char * const room_jid,
|
|
|
|
const char * const subject);
|
2012-11-07 22:24:50 +00:00
|
|
|
void prof_handle_room_roster_complete(const char * const room);
|
2012-11-08 00:05:32 +00:00
|
|
|
void prof_handle_room_member_online(const char * const room,
|
2013-01-20 04:33:31 +00:00
|
|
|
const char * const nick, const char * const show, const char * const status,
|
|
|
|
const char * const caps_str);
|
2012-11-08 00:05:32 +00:00
|
|
|
void prof_handle_room_member_offline(const char * const room,
|
|
|
|
const char * const nick, const char * const show, const char * const status);
|
2012-11-19 00:26:31 +00:00
|
|
|
void prof_handle_room_member_presence(const char * const room,
|
|
|
|
const char * const nick, const char * const show,
|
2013-01-20 04:33:31 +00:00
|
|
|
const char * const status, const char * const caps_str);
|
2012-11-10 01:17:16 +00:00
|
|
|
void prof_handle_leave_room(const char * const room);
|
2012-11-18 21:46:58 +00:00
|
|
|
void prof_handle_room_member_nick_change(const char * const room,
|
|
|
|
const char * const old_nick, const char * const nick);
|
2012-11-18 22:49:01 +00:00
|
|
|
void prof_handle_room_nick_change(const char * const room,
|
|
|
|
const char * const nick);
|
2012-11-19 22:15:53 +00:00
|
|
|
void prof_handle_room_broadcast(const char *const room_jid,
|
|
|
|
const char * const message);
|
2012-11-19 23:15:42 +00:00
|
|
|
void prof_handle_idle(void);
|
|
|
|
void prof_handle_activity(void);
|
2013-02-17 16:39:37 +00:00
|
|
|
void prof_handle_version_result(const char * const jid,
|
|
|
|
const char * const presence, const char * const name,
|
2013-02-17 02:10:56 +00:00
|
|
|
const char * const version, const char * const os);
|
2013-03-13 23:38:26 +00:00
|
|
|
void prof_handle_room_list(GSList *rooms, const char *conference_node);
|
2013-03-14 22:18:21 +00:00
|
|
|
void prof_handle_disco_items(GSList *items, const char *jid);
|
2013-03-14 23:41:36 +00:00
|
|
|
void prof_handle_disco_info(const char *from, GSList *identities,
|
|
|
|
GSList *features);
|
2012-10-02 01:04:53 +01:00
|
|
|
|
2012-02-09 22:24:03 +00:00
|
|
|
#endif
|