Mercurial > pidgin.yaz
annotate plugins/timestamp.c @ 10390:de92a8da82c3
[gaim-migrate @ 11617]
I forgot the newline.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 16 Dec 2004 07:22:54 +0000 |
parents | c432b927b0b1 |
children | 6a043ae92db6 |
rev | line source |
---|---|
7237 | 1 /* |
2 * Gaim - iChat-like timestamps | |
3 * | |
4 * Copyright (C) 2002-2003, Sean Egan | |
5 * Copyright (C) 2003, Chris J. Friesen <Darth_Sebulba04@yahoo.com> | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
9 * the Free Software Foundation; either version 2 of the License, or | |
10 * (at your option) any later version. | |
4220 | 11 * |
7237 | 12 * This program is distributed in the hope that it will be useful, |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
20 * | |
21 */ | |
22 | |
23 | |
3598 | 24 |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
25 #include "internal.h" |
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4201
diff
changeset
|
26 |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
27 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
28 #include "debug.h" |
7237 | 29 #include "prefs.h" |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
30 #include "signals.h" |
9943 | 31 #include "version.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
32 |
3598 | 33 #include "gtkimhtml.h" |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
34 #include "gtkplugin.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
35 #include "gtkutils.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
36 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
37 #define TIMESTAMP_PLUGIN_ID "gtk-timestamp" |
3598 | 38 |
6050 | 39 /* Set the default to 5 minutes. */ |
7237 | 40 static int interval = 5 * 60 * 1000; |
3598 | 41 |
9191 | 42 static GSList *timestamp_timeouts = NULL; |
3598 | 43 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
44 static gboolean do_timestamp (gpointer data) |
3598 | 45 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
46 GaimConversation *c = (GaimConversation *)data; |
10389 | 47 GaimGtkConversation *conv = GAIM_GTK_CONVERSATION(c); |
48 GtkTextIter iter; | |
10390 | 49 char mdate[7]; |
9191 | 50 int is_conversation_active; |
3598 | 51 time_t tim = time(NULL); |
9191 | 52 |
4376
2c985a9e994c
[gaim-migrate @ 4642]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
53 if (!g_list_find(gaim_get_conversations(), c)) |
3598 | 54 return FALSE; |
55 | |
9191 | 56 /* is_conversation_active is true if an im has been displayed since the last timestamp */ |
57 is_conversation_active = GPOINTER_TO_INT(gaim_conversation_get_data(c, "timestamp-conv-active")); | |
58 | |
59 if (is_conversation_active){ | |
10389 | 60 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(conv->imhtml)); |
61 gtk_text_buffer_get_end_iter(buffer, &iter); | |
9191 | 62 gaim_conversation_set_data(c, "timestamp-conv-active", GINT_TO_POINTER(FALSE)); |
10390 | 63 strftime(mdate, sizeof(mdate), "\n%H:%M", localtime(&tim)); |
10389 | 64 gtk_text_buffer_insert_with_tags_by_name(buffer, &iter, mdate, strlen(mdate), "TIMESTAMP", NULL); |
9191 | 65 } |
66 else | |
67 gaim_conversation_set_data(c, "timestamp-enabled", GINT_TO_POINTER(FALSE)); | |
68 | |
3598 | 69 return TRUE; |
70 } | |
71 | |
9191 | 72 |
73 static gboolean | |
74 timestamp_displaying_conv_msg(GaimAccount *account, GaimConversation *conv, | |
9863 | 75 char **buffer, void *data) |
9191 | 76 { |
77 int is_timestamp_enabled; | |
78 | |
79 if (!g_list_find(gaim_get_conversations(), conv)) | |
80 return FALSE; | |
81 | |
82 /* set to true, since there has been an im since the last timestamp */ | |
83 gaim_conversation_set_data(conv, "timestamp-conv-active", GINT_TO_POINTER(TRUE)); | |
84 | |
85 is_timestamp_enabled = GPOINTER_TO_INT(gaim_conversation_get_data(conv, "timestamp-enabled")); | |
86 | |
87 if (!is_timestamp_enabled){ | |
88 gaim_conversation_set_data(conv, "timestamp-enabled", GINT_TO_POINTER(TRUE)); | |
89 do_timestamp((gpointer)conv); | |
90 } | |
91 | |
92 return FALSE; | |
93 } | |
94 | |
95 static gboolean | |
96 timestamp_receiving_msg(GaimAccount *account, char **sender, char **buffer, | |
10104 | 97 GaimConversation *conv, int *flags, void *data) |
9191 | 98 { |
10104 | 99 g_return_val_if_fail(conv != NULL, FALSE); |
100 | |
101 return timestamp_displaying_conv_msg(account, conv, buffer, data); | |
9191 | 102 } |
103 | |
104 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
105 static void timestamp_new_convo(GaimConversation *conv) |
3598 | 106 { |
10389 | 107 GaimGtkConversation *c = GAIM_GTK_CONVERSATION(conv); |
108 | |
9191 | 109 if (!g_list_find(gaim_get_conversations(), conv)) |
110 return; | |
111 | |
10389 | 112 gtk_imhtml_show_comments(GTK_IMHTML(c->imhtml), FALSE); |
113 | |
9191 | 114 /* |
115 This if statement stops conversations that have already been initialized for timestamps | |
116 from being reinitialized. This prevents every active conversation from immediately being spammed | |
117 with a new timestamp when the user modifies the timer interval. | |
118 */ | |
119 if (!gaim_conversation_get_data(conv, "timestamp-initialized")){ | |
10389 | 120 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(c->imhtml)); |
9191 | 121 gaim_conversation_set_data(conv, "timestamp-initialized", GINT_TO_POINTER(TRUE)); |
122 gaim_conversation_set_data(conv, "timestamp-enabled", GINT_TO_POINTER(TRUE)); | |
123 gaim_conversation_set_data(conv, "timestamp-conv-active", GINT_TO_POINTER(TRUE)); | |
10389 | 124 gtk_text_buffer_create_tag (buffer, "TIMESTAMP", "foreground", "#888888", "justification", GTK_JUSTIFY_CENTER, |
125 "weight", PANGO_WEIGHT_BOLD, NULL); | |
9191 | 126 do_timestamp(conv); |
127 } | |
4168 | 128 |
3727 | 129 timestamp_timeouts = g_slist_append(timestamp_timeouts, |
7237 | 130 GINT_TO_POINTER(g_timeout_add(interval, do_timestamp, conv))); |
9191 | 131 } |
3598 | 132 |
9191 | 133 |
134 static void destroy_timer_list() | |
135 { | |
136 GSList *to; | |
137 | |
138 for (to = timestamp_timeouts; to != NULL; to = to->next) | |
139 g_source_remove(GPOINTER_TO_INT(to->data)); | |
140 | |
141 g_slist_free(timestamp_timeouts); | |
142 | |
143 timestamp_timeouts = NULL; | |
3598 | 144 } |
4220 | 145 |
9191 | 146 static void init_timer_list() |
147 { | |
148 GList *cnvs; | |
149 GaimConversation *c; | |
150 | |
151 if (timestamp_timeouts != NULL) | |
152 destroy_timer_list(); | |
153 | |
154 for (cnvs = gaim_get_conversations(); cnvs != NULL; cnvs = cnvs->next) { | |
155 c = cnvs->data; | |
156 timestamp_new_convo(c); | |
157 } | |
158 } | |
159 | |
160 | |
161 | |
4220 | 162 static void set_timestamp(GtkWidget *button, GtkWidget *spinner) { |
163 int tm; | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
164 |
4220 | 165 tm = 0; |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
166 |
4220 | 167 tm = CLAMP(gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner)), 1, G_MAXINT); |
7237 | 168 gaim_debug(GAIM_DEBUG_MISC, "timestamp", "setting time to %d mins\n", tm); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
169 |
4220 | 170 tm = tm * 60 * 1000; |
171 | |
7237 | 172 interval = tm; |
173 gaim_prefs_set_int("/plugins/gtk/timestamp/interval", interval); | |
9191 | 174 |
175 destroy_timer_list(); | |
176 init_timer_list(); | |
4220 | 177 } |
178 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
179 static GtkWidget * |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
180 get_config_frame(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
181 { |
4220 | 182 GtkWidget *ret; |
183 GtkWidget *frame, *label; | |
184 GtkWidget *vbox, *hbox; | |
185 GtkAdjustment *adj; | |
186 GtkWidget *spinner, *button; | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
187 |
4220 | 188 ret = gtk_vbox_new(FALSE, 18); |
189 gtk_container_set_border_width (GTK_CONTAINER (ret), 12); | |
190 | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5314
diff
changeset
|
191 frame = gaim_gtk_make_frame(ret, _("iChat Timestamp")); |
4220 | 192 vbox = gtk_vbox_new(FALSE, 5); |
193 gtk_container_add(GTK_CONTAINER(frame), vbox); | |
194 | |
195 hbox = gtk_hbox_new(FALSE, 5); | |
196 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); | |
197 | |
4586 | 198 label = gtk_label_new(_("Delay")); |
4220 | 199 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
200 |
7237 | 201 adj = (GtkAdjustment *)gtk_adjustment_new(interval/(60*1000), 1, G_MAXINT, 1, 0, 0); |
4220 | 202 spinner = gtk_spin_button_new(adj, 0, 0); |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
203 gtk_box_pack_start(GTK_BOX(hbox), spinner, TRUE, TRUE, 0); |
4220 | 204 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
205 label = gtk_label_new(_("minutes.")); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
206 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); |
4220 | 207 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
208 hbox = gtk_hbox_new(TRUE, 5); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
209 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); |
4220 | 210 |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
211 button = gtk_button_new_with_mnemonic(_("_Apply")); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
212 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 5); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
213 g_signal_connect(G_OBJECT(button), "clicked", |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
214 G_CALLBACK(set_timestamp), spinner); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
215 |
4220 | 216 gtk_widget_show_all(ret); |
217 return ret; | |
218 } | |
219 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
220 static gboolean |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
221 plugin_load(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
222 { |
9191 | 223 void *conv_handle = gaim_conversations_get_handle(); |
224 | |
225 init_timer_list(); | |
3598 | 226 |
9191 | 227 gaim_signal_connect(conv_handle, "conversation-created", |
228 plugin, GAIM_CALLBACK(timestamp_new_convo), NULL); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
229 |
9863 | 230 /* record IM display events for each conversation */ |
9191 | 231 gaim_signal_connect(conv_handle, "receiving-im-msg", |
232 plugin, GAIM_CALLBACK(timestamp_receiving_msg), NULL); | |
233 gaim_signal_connect(conv_handle, "displaying-im-msg", | |
234 plugin, GAIM_CALLBACK(timestamp_displaying_conv_msg), NULL); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
235 |
7237 | 236 interval = gaim_prefs_get_int("/plugins/gtk/timestamp/interval"); |
237 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
238 return TRUE; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
239 } |
3598 | 240 |
9191 | 241 |
242 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
243 static gboolean |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
244 plugin_unload(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
245 { |
10389 | 246 GList *cnvs; |
9191 | 247 void *conv_handle = gaim_conversations_get_handle(); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
248 |
9191 | 249 gaim_signal_disconnect(conv_handle, "conversation-created", |
250 plugin, GAIM_CALLBACK(timestamp_new_convo)); | |
251 gaim_signal_disconnect(conv_handle, "receiving-im-msg", | |
252 plugin, GAIM_CALLBACK(timestamp_receiving_msg)); | |
253 gaim_signal_disconnect(conv_handle, "displaying-im-msg", | |
254 plugin, GAIM_CALLBACK(timestamp_displaying_conv_msg)); | |
255 | |
256 destroy_timer_list(); | |
10389 | 257 |
258 for (cnvs = gaim_get_conversations(); cnvs != NULL; cnvs = cnvs->next) { | |
259 GaimConversation *c = cnvs->data; | |
260 GaimGtkConversation *conv = GAIM_GTK_CONVERSATION(c); | |
261 gtk_imhtml_show_comments(GTK_IMHTML(conv->imhtml), TRUE); | |
262 } | |
263 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
264 return TRUE; |
3598 | 265 } |
266 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
267 static GaimGtkPluginUiInfo ui_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
268 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
269 get_config_frame |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
270 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
271 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
272 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
273 { |
9943 | 274 GAIM_PLUGIN_MAGIC, |
275 GAIM_MAJOR_VERSION, | |
276 GAIM_MINOR_VERSION, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
277 GAIM_PLUGIN_STANDARD, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
278 GAIM_GTK_PLUGIN_TYPE, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
279 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
280 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
281 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
282 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
283 TIMESTAMP_PLUGIN_ID, /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
284 N_("Timestamp"), /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
285 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
286 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
287 N_("Adds iChat-style timestamps to conversations every N minutes."), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
288 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
289 N_("Adds iChat-style timestamps to conversations every N minutes."), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
290 "Sean Egan <bj91704@binghamton.edu>", /**< author */ |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
291 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
292 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
293 plugin_load, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
294 plugin_unload, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
295 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
296 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
297 &ui_info, /**< ui_info */ |
8993 | 298 NULL, /**< extra_info */ |
299 NULL, | |
300 NULL | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
301 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
302 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
303 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5873
diff
changeset
|
304 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4586
diff
changeset
|
305 { |
7237 | 306 gaim_prefs_add_none("/plugins/gtk/timestamp"); |
307 gaim_prefs_add_int("/plugins/gtk/timestamp/interval", interval); | |
3598 | 308 } |
309 | |
7237 | 310 GAIM_INIT_PLUGIN(interval, init_plugin, info) |