Mercurial > pidgin
annotate plugins/psychic.c @ 13683:59a86d70825b
[gaim-migrate @ 16086]
If we're going to support crappy stalker-enablement plugins, we should
at least make an effort to ensure that they don't require C99.
This removes a variadic macro (DEBUG_INFO) from psychic.c by:
%s/DEBUG_INFO(/gaim_debug_info("psychic", /
There were only three occurrences of the DEBUG_INFO macro, so this
isn't a big deal.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sun, 23 Apr 2006 22:05:14 +0000 |
parents | 465c368366f8 |
children | 85267a333422 |
rev | line source |
---|---|
12859 | 1 |
2 | |
3 #include "internal.h" | |
4 | |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
5 #include "account.h" |
12859 | 6 #include "blist.h" |
7 #include "conversation.h" | |
8 #include "debug.h" | |
9 #include "signals.h" | |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
10 #include "status.h" |
12859 | 11 #include "version.h" |
12 | |
13 #include "plugin.h" | |
14 #include "pluginpref.h" | |
15 #include "prefs.h" | |
16 | |
17 | |
18 #define PLUGIN_ID "core-psychic" | |
19 #define PLUGIN_NAME N_("Psychic Mode") | |
20 #define PLUGIN_SUMMARY N_("Psychic mode for incoming conversation") | |
21 #define PLUGIN_DESC N_("Causes conversation windows to appear as other" \ | |
13247 | 22 " users begin to message you. This works for" \ |
23 " AIM, ICQ, Jabber, Sametime, and Yahoo!") | |
12859 | 24 #define PLUGIN_AUTHOR "Christopher O'Brien <siege@preoccupied.net>" |
25 | |
26 | |
27 #define PREFS_BASE "/plugins/core/psychic" | |
28 #define PREF_BUDDIES PREFS_BASE "/buddies_only" | |
29 #define PREF_NOTICE PREFS_BASE "/show_notice" | |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
30 #define PREF_STATUS PREFS_BASE "/activate_online" |
12859 | 31 |
32 | |
33 static void | |
34 buddy_typing_cb(GaimAccount *acct, const char *name, void *data) { | |
35 GaimConversation *gconv; | |
36 | |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
37 if(gaim_prefs_get_bool(PREF_STATUS) && |
12925
fd734d1fb2f4
[gaim-migrate @ 15278]
Christopher O'Brien <siege@pidgin.im>
parents:
12924
diff
changeset
|
38 ! gaim_status_is_available(gaim_account_get_active_status(acct))) { |
13683 | 39 gaim_debug_info("psychic", "not available, doing nothing\n"); |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
40 return; |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
41 } |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
42 |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
43 if(gaim_prefs_get_bool(PREF_BUDDIES) && |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
44 ! gaim_find_buddy(acct, name)) { |
13683 | 45 gaim_debug_info("psychic", "not in blist, doing nothing\n"); |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
46 return; |
12859 | 47 } |
48 | |
49 gconv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, name, acct); | |
50 if(! gconv) { | |
13683 | 51 gaim_debug_info("psychic", "no previous conversation exists\n"); |
12859 | 52 gconv = gaim_conversation_new(GAIM_CONV_TYPE_IM, acct, name); |
53 gaim_conversation_present(gconv); | |
54 | |
55 if(gaim_prefs_get_bool(PREF_NOTICE)) { | |
12861
6cc43e23ad36
[gaim-migrate @ 15212]
Christopher O'Brien <siege@pidgin.im>
parents:
12859
diff
changeset
|
56 gaim_conversation_write(gconv, NULL, |
6cc43e23ad36
[gaim-migrate @ 15212]
Christopher O'Brien <siege@pidgin.im>
parents:
12859
diff
changeset
|
57 _("You feel a disturbance in the force..."), |
13476
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
13247
diff
changeset
|
58 GAIM_MESSAGE_SYSTEM | GAIM_MESSAGE_NO_LOG | GAIM_MESSAGE_ACTIVE_ONLY, |
12895
a355472257f4
[gaim-migrate @ 15248]
Richard Laager <rlaager@wiktel.com>
parents:
12861
diff
changeset
|
59 time(NULL)); |
12859 | 60 } |
13247 | 61 |
62 gaim_conv_im_set_typing_state(GAIM_CONV_IM(gconv), GAIM_TYPING); | |
12859 | 63 } |
64 } | |
65 | |
66 | |
67 static GaimPluginPrefFrame * | |
68 get_plugin_pref_frame(GaimPlugin *plugin) { | |
69 | |
70 GaimPluginPrefFrame *frame; | |
71 GaimPluginPref *pref; | |
72 | |
73 frame = gaim_plugin_pref_frame_new(); | |
74 | |
75 pref = gaim_plugin_pref_new_with_name(PREF_BUDDIES); | |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
76 gaim_plugin_pref_set_label(pref, _("Only enable for users on" |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
77 " the buddy list")); |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
78 gaim_plugin_pref_frame_add(frame, pref); |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
79 |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
80 pref = gaim_plugin_pref_new_with_name(PREF_STATUS); |
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
81 gaim_plugin_pref_set_label(pref, _("Disable when away")); |
12859 | 82 gaim_plugin_pref_frame_add(frame, pref); |
83 | |
84 pref = gaim_plugin_pref_new_with_name(PREF_NOTICE); | |
85 gaim_plugin_pref_set_label(pref, _("Display notification message in" | |
86 " conversations")); | |
87 gaim_plugin_pref_frame_add(frame, pref); | |
88 | |
89 return frame; | |
90 } | |
91 | |
92 | |
93 static gboolean | |
94 plugin_load(GaimPlugin *plugin) { | |
95 | |
96 void *convs_handle; | |
97 convs_handle = gaim_conversations_get_handle(); | |
98 | |
99 gaim_signal_connect(convs_handle, "buddy-typing", plugin, | |
100 GAIM_CALLBACK(buddy_typing_cb), NULL); | |
101 | |
102 return TRUE; | |
103 } | |
104 | |
105 | |
106 static GaimPluginUiInfo prefs_info = { | |
107 get_plugin_pref_frame, | |
108 0, /* page_num (Reserved) */ | |
109 NULL, /* frame (Reserved) */ | |
110 }; | |
111 | |
112 | |
113 static GaimPluginInfo info = { | |
114 GAIM_PLUGIN_MAGIC, | |
115 GAIM_MAJOR_VERSION, | |
116 GAIM_MINOR_VERSION, | |
117 GAIM_PLUGIN_STANDARD, /**< type */ | |
118 NULL, /**< ui_requirement */ | |
119 0, /**< flags */ | |
120 NULL, /**< dependencies */ | |
121 GAIM_PRIORITY_DEFAULT, /**< priority */ | |
122 | |
123 PLUGIN_ID, /**< id */ | |
124 PLUGIN_NAME, /**< name */ | |
125 VERSION, /**< version */ | |
126 PLUGIN_SUMMARY, /**< summary */ | |
127 PLUGIN_DESC, /**< description */ | |
128 PLUGIN_AUTHOR, /**< author */ | |
129 GAIM_WEBSITE, /**< homepage */ | |
130 | |
131 plugin_load, /**< load */ | |
132 NULL, /**< unload */ | |
133 NULL, /**< destroy */ | |
134 | |
135 NULL, /**< ui_info */ | |
136 NULL, /**< extra_info */ | |
137 &prefs_info, /**< prefs_info */ | |
138 NULL, /**< actions */ | |
139 }; | |
140 | |
141 | |
142 static void | |
143 init_plugin(GaimPlugin *plugin) { | |
144 gaim_prefs_add_none(PREFS_BASE); | |
145 gaim_prefs_add_bool(PREF_BUDDIES, FALSE); | |
146 gaim_prefs_add_bool(PREF_NOTICE, TRUE); | |
12924
e841e23a334c
[gaim-migrate @ 15277]
Christopher O'Brien <siege@pidgin.im>
parents:
12895
diff
changeset
|
147 gaim_prefs_add_bool(PREF_STATUS, TRUE); |
12859 | 148 } |
149 | |
150 | |
151 GAIM_INIT_PLUGIN(psychic, init_plugin, info) |