Mercurial > pidgin
view src/protocols/icq/icqevent.h @ 7950:7b8407d8c546
[gaim-migrate @ 8624]
Move the "Logged In:" tooltip thingy to the core.
Much thanks to Evan Schoenberg of Adium.
This shouldn't affect anything for oscar. For jabber
some servers/accounts might start showing a "Logged In:"
line in people's tooltips. I'm really not sure when it
will or won't. I bet faceprint knows!
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 29 Dec 2003 06:13:36 +0000 |
parents | 424a40f12a6c |
children |
line wrap: on
line source
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* * $Id: icqevent.h 2096 2001-07-31 01:00:39Z warmenhoven $ * * Copyright (C) 1998-2001, Denis V. Dmitrienko <denis@null.net> and * Bill Soudan <soudan@kde.org> * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #ifndef _ICQEVENT_H #define _ICQEVENT_H #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <time.h> #include "icqpacket.h" #include "tcplink.h" #include "stdpackets.h" #define EVENT_DEBUG #define ICQ_EVENT_MESSAGE ICQ_TCP_MESSAGE #define ICQ_EVENT_ACK ICQ_TCP_ACK #define ICQ_EVENT_CANCEL ICQ_TCP_CANCEL #define ICQ_EVENT_INCOMING 1 #define ICQ_EVENT_OUTGOING 2 typedef struct icq_Event_s { unsigned long version; unsigned long id; unsigned long uin; int type; /* chat, file, message, url */ int subtype; /* message, ack, or cancel */ int direction; time_t time; icq_Packet *(*createPacket)(struct icq_Event_s *, icq_TCPLink *); void *(*parsePacket)(struct icq_Event_s *, icq_Packet *); void (*handleEvent)(struct icq_Event_s *, icq_Link *); #ifdef EVENT_DEBUG const char *(*eventName)(struct icq_Event_s *); const char *(*eventDump)(struct icq_Event_s *); #endif } icq_Event; typedef struct icq_MessageEvent_s { icq_Event event; char *message; /* must be non-const for url hack */ char *url; /* hack so we can use same structure for url */ int status; int type; } icq_MessageEvent; typedef struct icq_MessageEvent_s icq_URLEvent; typedef struct icq_ChatRequestEvent_s { icq_MessageEvent message_event; int port; } icq_ChatRequestEvent; typedef struct icq_FileRequestEvent_s { icq_MessageEvent message_event; const char *filename; unsigned long filesize; int port; } icq_FileRequestEvent; /* generic event functions */ void icq_EventInit(icq_Event *p, int type, int subtype, unsigned long uin, int version); icq_Packet *icq_EventCreatePacket(icq_Event *pbase); void icq_EventParsePacket(icq_Event *pevent, icq_Packet *p); /* message event functions */ icq_MessageEvent *icq_CreateMessageEvent(int subtype, unsigned long uin, const char *message); void icq_MessageEventInit(icq_MessageEvent *p, int type, int subtype, unsigned long uin, int msgtype, const char *message); icq_Packet *icq_MessageCreatePacket(icq_Event *pbase, icq_TCPLink *plink); void icq_MessageParsePacket(icq_Event *pbase, icq_Packet *p); /* url event functions */ icq_URLEvent *icq_CreateURLEvent(int subtype, unsigned long uin, const char *message, const char *url); icq_Packet *icq_URLCreatePacket(icq_Event *pbase, icq_TCPLink *plink); void icq_URLParsePacket(icq_Event *pbase, icq_Packet *p); /* chat request event functions */ icq_ChatRequestEvent *icq_ChatRequestEventNew(int subtype, unsigned long uin, const char *message, int port); icq_Packet *icq_ChatRequestCreatePacket(icq_Event *pbase, icq_TCPLink *plink); void icq_ChatParsePacket(icq_Event *pbase, icq_Packet *p); /* file request event functions */ icq_FileRequestEvent *icq_FileRequestEventNew(int subtype, unsigned long uin, const char *message, const char *filename, unsigned long filesize); icq_Packet *icq_FileRequestCreatePacket(icq_Event *pbase, icq_TCPLink *plink); void icq_FileParsePacket(icq_Event *pbase, icq_Packet *p); /* main packet parser */ icq_Event *icq_ParsePacket(icq_Packet *p); #ifdef EVENT_DEBUG const char *icq_MessageEventName(icq_Event *p); const char *icq_MessageEventDump(icq_Event *p); const char *icq_URLEventName(icq_Event *p); const char *icq_URLEventDump(icq_Event *p); const char *icq_ChatRequestEventName(icq_Event *p); const char *icq_ChatRequestEventDump(icq_Event *p); const char *icq_FileRequestEventName(icq_Event *p); const char *icq_FileRequestEventDump(icq_Event *p); const char *icq_EventDump(icq_Event *p); #endif #endif /* _ICQEVENT_H */