diff libpurple/plugins/statenotify.c @ 15822:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 4999bbc52881
line wrap: on
line diff
--- a/libpurple/plugins/statenotify.c	Mon Mar 19 06:11:46 2007 +0000
+++ b/libpurple/plugins/statenotify.c	Mon Mar 19 07:01:17 2007 +0000
@@ -13,39 +13,39 @@
 #define STATENOTIFY_PLUGIN_ID "core-statenotify"
 
 static void
-write_status(GaimBuddy *buddy, const char *message)
+write_status(PurpleBuddy *buddy, const char *message)
 {
-	GaimConversation *conv;
+	PurpleConversation *conv;
 	const char *who;
 	char buf[256];
 	char *escaped;
 
-	conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM,
+	conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM,
 											   buddy->name, buddy->account);
 
 	if (conv == NULL)
 		return;
-	g_return_if_fail(conv->type == GAIM_CONV_TYPE_IM);
+	g_return_if_fail(conv->type == PURPLE_CONV_TYPE_IM);
 
-	who = gaim_buddy_get_alias(buddy);
+	who = purple_buddy_get_alias(buddy);
 	escaped = g_markup_escape_text(who, -1);
 
 	g_snprintf(buf, sizeof(buf), message, escaped);
 	g_free(escaped);
 
-	gaim_conv_im_write(conv->u.im, NULL, buf, GAIM_MESSAGE_SYSTEM | GAIM_MESSAGE_ACTIVE_ONLY, time(NULL));
+	purple_conv_im_write(conv->u.im, NULL, buf, PURPLE_MESSAGE_SYSTEM | PURPLE_MESSAGE_ACTIVE_ONLY, time(NULL));
 }
 
 static void
-buddy_status_changed_cb(GaimBuddy *buddy, GaimStatus *old_status,
-                        GaimStatus *status, void *data)
+buddy_status_changed_cb(PurpleBuddy *buddy, PurpleStatus *old_status,
+                        PurpleStatus *status, void *data)
 {
 	gboolean available, old_available;
 
-	available = gaim_status_is_available(status);
-	old_available = gaim_status_is_available(old_status);
+	available = purple_status_is_available(status);
+	old_available = purple_status_is_available(old_status);
 
-	if (gaim_prefs_get_bool("/plugins/core/statenotify/notify_away")) {
+	if (purple_prefs_get_bool("/plugins/core/statenotify/notify_away")) {
 		if (available && !old_available)
 			write_status(buddy, _("%s is no longer away."));
 		else if (!available && old_available)
@@ -54,10 +54,10 @@
 }
 
 static void
-buddy_idle_changed_cb(GaimBuddy *buddy, gboolean old_idle, gboolean idle,
+buddy_idle_changed_cb(PurpleBuddy *buddy, gboolean old_idle, gboolean idle,
                       void *data)
 {
-	if (gaim_prefs_get_bool("/plugins/core/statenotify/notify_idle")) {
+	if (purple_prefs_get_bool("/plugins/core/statenotify/notify_idle")) {
 		if (idle) {
 			write_status(buddy, _("%s has become idle."));
 		} else {
@@ -67,76 +67,76 @@
 }
 
 static void
-buddy_signon_cb(GaimBuddy *buddy, void *data)
+buddy_signon_cb(PurpleBuddy *buddy, void *data)
 {
-	if (gaim_prefs_get_bool("/plugins/core/statenotify/notify_signon"))
+	if (purple_prefs_get_bool("/plugins/core/statenotify/notify_signon"))
 		write_status(buddy, _("%s has signed on."));
 }
 
 static void
-buddy_signoff_cb(GaimBuddy *buddy, void *data)
+buddy_signoff_cb(PurpleBuddy *buddy, void *data)
 {
-	if (gaim_prefs_get_bool("/plugins/core/statenotify/notify_signon"))
+	if (purple_prefs_get_bool("/plugins/core/statenotify/notify_signon"))
 		write_status(buddy, _("%s has signed off."));
 }
 
-static GaimPluginPrefFrame *
-get_plugin_pref_frame(GaimPlugin *plugin)
+static PurplePluginPrefFrame *
+get_plugin_pref_frame(PurplePlugin *plugin)
 {
-	GaimPluginPrefFrame *frame;
-	GaimPluginPref *ppref;
+	PurplePluginPrefFrame *frame;
+	PurplePluginPref *ppref;
 
-	frame = gaim_plugin_pref_frame_new();
+	frame = purple_plugin_pref_frame_new();
 
-	ppref = gaim_plugin_pref_new_with_label(_("Notify When"));
-	gaim_plugin_pref_frame_add(frame, ppref);
+	ppref = purple_plugin_pref_new_with_label(_("Notify When"));
+	purple_plugin_pref_frame_add(frame, ppref);
 
-	ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_away", _("Buddy Goes _Away"));
-	gaim_plugin_pref_frame_add(frame, ppref);
+	ppref = purple_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_away", _("Buddy Goes _Away"));
+	purple_plugin_pref_frame_add(frame, ppref);
 
-	ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_idle", _("Buddy Goes _Idle"));
-	gaim_plugin_pref_frame_add(frame, ppref);
+	ppref = purple_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_idle", _("Buddy Goes _Idle"));
+	purple_plugin_pref_frame_add(frame, ppref);
 
-	ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_signon", _("Buddy _Signs On/Off"));
-	gaim_plugin_pref_frame_add(frame, ppref);
+	ppref = purple_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_signon", _("Buddy _Signs On/Off"));
+	purple_plugin_pref_frame_add(frame, ppref);
 
 	return frame;
 }
 
 static gboolean
-plugin_load(GaimPlugin *plugin)
+plugin_load(PurplePlugin *plugin)
 {
-	void *blist_handle = gaim_blist_get_handle();
+	void *blist_handle = purple_blist_get_handle();
 
-	gaim_signal_connect(blist_handle, "buddy-status-changed", plugin,
-	                    GAIM_CALLBACK(buddy_status_changed_cb), NULL);
-	gaim_signal_connect(blist_handle, "buddy-idle-changed", plugin,
-	                    GAIM_CALLBACK(buddy_idle_changed_cb), NULL);
-	gaim_signal_connect(blist_handle, "buddy-signed-on", plugin,
-	                    GAIM_CALLBACK(buddy_signon_cb), NULL);
-	gaim_signal_connect(blist_handle, "buddy-signed-off", plugin,
-	                    GAIM_CALLBACK(buddy_signoff_cb), NULL);
+	purple_signal_connect(blist_handle, "buddy-status-changed", plugin,
+	                    PURPLE_CALLBACK(buddy_status_changed_cb), NULL);
+	purple_signal_connect(blist_handle, "buddy-idle-changed", plugin,
+	                    PURPLE_CALLBACK(buddy_idle_changed_cb), NULL);
+	purple_signal_connect(blist_handle, "buddy-signed-on", plugin,
+	                    PURPLE_CALLBACK(buddy_signon_cb), NULL);
+	purple_signal_connect(blist_handle, "buddy-signed-off", plugin,
+	                    PURPLE_CALLBACK(buddy_signoff_cb), NULL);
 
 	return TRUE;
 }
 
-static GaimPluginUiInfo prefs_info =
+static PurplePluginUiInfo prefs_info =
 {
 	get_plugin_pref_frame,
 	0,   /* page_num (Reserved) */
 	NULL /* frame (Reserved) */
 };
 
-static GaimPluginInfo info =
+static PurplePluginInfo info =
 {
-	GAIM_PLUGIN_MAGIC,
-	GAIM_MAJOR_VERSION,
-	GAIM_MINOR_VERSION,
-	GAIM_PLUGIN_STANDARD,                             /**< type           */
+	PURPLE_PLUGIN_MAGIC,
+	PURPLE_MAJOR_VERSION,
+	PURPLE_MINOR_VERSION,
+	PURPLE_PLUGIN_STANDARD,                             /**< type           */
 	NULL,                                             /**< ui_requirement */
 	0,                                                /**< flags          */
 	NULL,                                             /**< dependencies   */
-	GAIM_PRIORITY_DEFAULT,                            /**< priority       */
+	PURPLE_PRIORITY_DEFAULT,                            /**< priority       */
 
 	STATENOTIFY_PLUGIN_ID,                            /**< id             */
 	N_("Buddy State Notification"),                   /**< name           */
@@ -148,7 +148,7 @@
 	N_("Notifies in a conversation window when a buddy goes or returns from "
 	   "away or idle."),
 	"Christian Hammond <chipx86@gnupdate.org>",       /**< author         */
-	GAIM_WEBSITE,                                     /**< homepage       */
+	PURPLE_WEBSITE,                                     /**< homepage       */
 
 	plugin_load,                                      /**< load           */
 	NULL,                                             /**< unload         */
@@ -161,12 +161,12 @@
 };
 
 static void
-init_plugin(GaimPlugin *plugin)
+init_plugin(PurplePlugin *plugin)
 {
-	gaim_prefs_add_none("/plugins/core/statenotify");
-	gaim_prefs_add_bool("/plugins/core/statenotify/notify_away", TRUE);
-	gaim_prefs_add_bool("/plugins/core/statenotify/notify_idle", TRUE);
-	gaim_prefs_add_bool("/plugins/core/statenotify/notify_signon", TRUE);
+	purple_prefs_add_none("/plugins/core/statenotify");
+	purple_prefs_add_bool("/plugins/core/statenotify/notify_away", TRUE);
+	purple_prefs_add_bool("/plugins/core/statenotify/notify_idle", TRUE);
+	purple_prefs_add_bool("/plugins/core/statenotify/notify_signon", TRUE);
 }
 
-GAIM_INIT_PLUGIN(statenotify, init_plugin, info)
+PURPLE_INIT_PLUGIN(statenotify, init_plugin, info)