Files
evolution/plugins/bbdb/bbdb.h
Nat Friedman b40eb4903c Sync the Gaim buddy list. Set a timer to check for Gaim buddy list chnages
2004-10-25  Nat Friedman  <nat@novell.com>

	* bbdb.c (e_plugin_lib_enable): Sync the Gaim buddy list.  Set a
	timer to check for Gaim buddy list chnages to sync.
	(bbdb_do_it): Free some memory we were leaking before.
	(bbdb_open_addressbook): New function for Gaim buddy list support.
	(bbdb_check_gaim_enabled): Likewise.
	(enable_gaim_toggled_cb): Likewise.
	(synchronize_button_clicked_cb): Likewise.
	(bbdb_page_factory): Added UI for Gaim buddy list sync support.

	* gaimbuddies.c: New file, contains routines to synchronize IM
	information and buddy icons from a Gaim buddy list.

	* bbdb.h: New file, contains shared macros and prototypes.

	* test-evobuddy.c (main): New function, tests a gaim buddy list
	sync.

svn path=/trunk/; revision=27723
2004-10-26 03:02:04 +00:00

23 lines
736 B
C

#ifndef __BBDB_H__
#define __BBDB_H__
/* Where to store the config values */
#define GCONF_KEY_ENABLE "/apps/evolution/autocontacts/enable_autocontacts"
#define GCONF_KEY_ENABLE_GAIM "/apps/evolution/autocontacts/auto_sync_gaim"
#define GCONF_KEY_WHICH_ADDRESSBOOK "/apps/evolution/autocontacts/addressbook_source"
#define GCONF_KEY_GAIM_LAST_SYNC "/apps/evolution/autocontacts/gaim_last_sync_time"
/* How often to poll the buddy list for changes (every two minutes) */
#define BBDB_BLIST_CHECK_INTERVAL (2 * 60 * 1000)
/* bbdb.c */
EBook *bbdb_open_addressbook (void);
gboolean bbdb_check_gaim_enabled (void);
/* gaimbuddies.c */
void bbdb_sync_buddy_list (void);
void bbdb_sync_buddy_list_check (void);
#endif /* __BBDB_H__ */