comparison libpurple/protocols/mxit/splashscreen.h @ 28903:69aa4660401a

Initial addition of the MXit protocol plugin, provided by the MXit folks themselves.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 08 Nov 2009 23:55:56 +0000
parents
children c2bc5f8071a2
comparison
equal deleted inserted replaced
28901:13e668ef158d 28903:69aa4660401a
1 /*
2 * MXit Protocol libPurple Plugin
3 *
4 * -- splash screens --
5 *
6 * Andrew Victor <libpurple@mxit.com>
7 *
8 * (C) Copyright 2009 MXit Lifestyle (Pty) Ltd.
9 * <http://www.mxitlifestyle.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
24 */
25
26 #ifndef _MXIT_SPLASHSCREEN_H_
27 #define _MXIT_SPLASHSCREEN_H_
28
29 #define HANDLE_SPLASH1 "plas1.png"
30 #define HANDLE_SPLASH2 "plas2.png"
31
32 #define DEFAULT_SPLASH_POPUP FALSE /* disabled by default */
33
34 /*
35 * Return the ID of the current splash-screen.
36 */
37 const char* splash_current(struct MXitSession* session);
38
39 /*
40 * Indicate if splash-screen popups are enabled.
41 */
42 gboolean splash_popup_enabled();
43
44 /*
45 * Save a new splash-screen.
46 */
47 void splash_update(struct MXitSession* session, const char* splashId, const char* data, int datalen, gboolean clickable);
48
49 /*
50 * Remove the stored splash-screen (if it exists).
51 */
52 void splash_remove(struct MXitSession* session);
53
54 /*
55 * Display the current splash-screen.
56 */
57 void splash_display(struct MXitSession* session);
58
59 #endif /* _MXIT_SPLASHSCREEN_H_ */