
Reduce the amount of annoying popup messages for file transfers. Don't do it for Adium, which doesn't support file-links for security reasons. Make the threshold configurable.
50 lines
2.2 KiB
C
50 lines
2.2 KiB
C
/*
|
|
This file is part of telegram-purple
|
|
|
|
This program 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
|
|
|
|
Copyright Matthias Jentsch 2014-2015
|
|
*/
|
|
#ifndef __telegram_adium__purple2tgl__
|
|
#define __telegram_adium__purple2tgl__
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "telegram-purple.h"
|
|
|
|
PurpleAccount *tls_get_pa (struct tgl_state *TLS);
|
|
PurpleConnection *tls_get_conn (struct tgl_state *TLS);
|
|
connection_data *tls_get_data (struct tgl_state *TLS);
|
|
int tls_get_media_threshold (struct tgl_state *TLS);
|
|
connection_data *gc_get_data (PurpleConnection *gc);
|
|
connection_data *pa_get_data (PurpleAccount *pa);
|
|
connection_data *pbn_get_data (PurpleBlistNode *node);
|
|
struct tgl_state *gc_get_tls (PurpleConnection *gc);
|
|
|
|
int p2tgl_status_is_present (PurpleStatus *status);
|
|
|
|
void tgp_chat_got_in (struct tgl_state *TLS, tgl_peer_t *chat, tgl_peer_id_t who, const char *message, int flags, time_t when);
|
|
void p2tgl_got_im_combo (struct tgl_state *TLS, tgl_peer_id_t who, const char *msg, int flags, time_t when);
|
|
void p2tgl_prpl_got_user_status (struct tgl_state *TLS, tgl_peer_id_t user, struct tgl_user_status *status);
|
|
void p2tgl_conv_add_user (struct tgl_state *TLS, PurpleConversation *conv, int user, char *message, int flags, int new_arrival);
|
|
PurpleConversation *p2tgl_find_conversation_with_account (struct tgl_state *TLS, tgl_peer_id_t peer);
|
|
|
|
int p2tgl_imgstore_add_with_id (const char* filename);
|
|
int p2tgl_imgstore_add_with_id_raw (const unsigned char *raw_rgba, unsigned width, unsigned height);
|
|
#ifdef HAVE_LIBWEBP
|
|
int p2tgl_imgstore_add_with_id_webp (const char *filename);
|
|
#endif
|
|
|
|
#endif
|