comparison src/conversation.h @ 5717:1d140b31d4b3

[gaim-migrate @ 6138] this almost kinda sorta works. It's the wonderful connecting dialog that shows you how far along you are in connecting. This also gets rid of the ever-present signon dialog. Oh, and I ended up digging through header hell and changing a lot. Hopefully I didn't break anything too badly. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 03 Jun 2003 19:55:47 +0000
parents dae79aefac8d
children 96e5b32e75ad
comparison
equal deleted inserted replaced
5716:52f301dbfeaa 5717:1d140b31d4b3
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */ 22 */
23 23
24 #ifndef _GAIM_CONVERSATION_H_ 24 #ifndef _GAIM_CONVERSATION_H_
25 #define _GAIM_CONVERSATION_H_ 25 #define _GAIM_CONVERSATION_H_
26
27 #include "account.h"
26 28
27 /**************************************************************************/ 29 /**************************************************************************/
28 /** Data Structures */ 30 /** Data Structures */
29 /**************************************************************************/ 31 /**************************************************************************/
30 32
82 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ 84 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */
83 GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */ 85 GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */
84 GAIM_CONV_UPDATE_AWAY /**< The other user went away. */ 86 GAIM_CONV_UPDATE_AWAY /**< The other user went away. */
85 }; 87 };
86 88
87 /* Yeah, this has to be included here. Ugh. */
88 #include "gaim.h"
89
90 /** 89 /**
91 * Conversation window operations. 90 * Conversation window operations.
92 * 91 *
93 * Any UI representing a window must assign a filled-out gaim_window_ops 92 * Any UI representing a window must assign a filled-out gaim_window_ops
94 * structure to the GaimWindow. 93 * structure to the GaimWindow.