diff plugins/notify.c @ 7118:bf630f7dfdcd

[gaim-migrate @ 7685] Here's a commit that I think will make faceprint happy. GaimWindow -> GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat, GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin authors are going to hunt me down and murder me. I can feel it.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 02 Oct 2003 02:54:07 +0000
parents 083d1e4a9c78
children b4285106f396
line wrap: on
line diff
--- a/plugins/notify.c	Thu Oct 02 02:15:36 2003 +0000
+++ b/plugins/notify.c	Thu Oct 02 02:54:07 2003 +0000
@@ -84,7 +84,7 @@
 static int notify(GaimConversation *conv, gboolean increment);
 static gboolean unnotify(GaimConversation *conv, gboolean reset);
 static int unnotify_cb(GtkWidget *widget, GaimConversation *conv);
-static void renotify(GaimWindow *gaimwin);
+static void renotify(GaimConvWindow *gaimwin);
 
 /* gtk widget callbacks for prefs panel */
 static void type_toggle_cb(GtkWidget *widget, gpointer data);
@@ -110,7 +110,7 @@
 static int
 notify(GaimConversation *conv, gboolean increment)
 {
-	GaimWindow *gaimwin = NULL;
+	GaimConvWindow *gaimwin = NULL;
 	GaimGtkWindow *gtkwin = NULL;
 	/*
 	Window focus_return;
@@ -139,7 +139,7 @@
 	/* TODO need to test these different levels of having focus
 	 * only still need to test the window has focus, but tab doesn't one */
 	if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/type_focused") ||
-			(has_focus && gaim_window_get_active_conversation(gaimwin) != conv) ||
+			(has_focus && gaim_conv_window_get_active_conversation(gaimwin) != conv) ||
 			!has_focus) {
 		if (increment) {
 			count = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(gtkwin->window), "notify-message-count"));
@@ -167,7 +167,7 @@
 {
 	GaimConversation *active_conv = NULL;
 	GaimGtkWindow *gtkwin = NULL;
-	GaimWindow *gaimwin = NULL;
+	GaimConvWindow *gaimwin = NULL;
 	gint count;
 
 	if (conv == NULL)
@@ -175,7 +175,7 @@
 
 	gaimwin = gaim_conversation_get_window(conv);
 	gtkwin = GAIM_GTK_WINDOW(gaimwin);
-	active_conv = gaim_window_get_active_conversation(gaimwin);
+	active_conv = gaim_conv_window_get_active_conversation(gaimwin);
 
 	/* This should mean that there is no notification on the window */
 	count = GPOINTER_TO_INT(gaim_conversation_get_data(conv, "notify-message-count"));
@@ -211,12 +211,12 @@
 }
 
 static void
-renotify(GaimWindow *gaimwin)
+renotify(GaimConvWindow *gaimwin)
 {
 	GList *convs = NULL;
 
 
-	for (convs = gaim_window_get_conversations(gaimwin);
+	for (convs = gaim_conv_window_get_conversations(gaimwin);
 			 convs != NULL; convs = convs->next) {
 		GaimGtkWindow *gtkwin = NULL;
 		int count;
@@ -358,7 +358,7 @@
 static void
 conv_created(GaimConversation *conv)
 {
-	GaimWindow *gaimwin = NULL;
+	GaimConvWindow *gaimwin = NULL;
 	GaimGtkWindow *gtkwin = NULL;
 
 	gaimwin = gaim_conversation_get_window(conv);
@@ -378,7 +378,7 @@
 static void
 chat_join(GaimConversation *conv)
 {
-	GaimWindow *gaimwin = NULL;
+	GaimConvWindow *gaimwin = NULL;
 	GaimGtkWindow *gtkwin = NULL;
 
 	gaimwin = gaim_conversation_get_window(conv);
@@ -399,7 +399,7 @@
 static void
 conv_switched(GaimConversation *old_conv, GaimConversation *new_conv)
 {
-	GaimWindow *gaimwin = NULL;
+	GaimConvWindow *gaimwin = NULL;
 	GaimGtkWindow *gtkwin = NULL;
 	/*
 	gint count;