Mercurial > pidgin
annotate plugins/raw.c @ 5255:c0baa01cdeda
[gaim-migrate @ 5627]
Paul A (darkrain) writes:
" This patch updates the events.c, filectl.c, gaiminc.c,
and mailchk.c plugins to the new api as well as
updating mailchk.c to the new buddy list code.
events.so, gaiminc.so, and mailchk.so all load and
function properly on my computer.
filectl doesn't even compile, but then, it has been a
while since it did actually compile. I didn't even bother
to update a few of the other plugins, since they're
completely out of date. Perhaps one of the developers
needs to go through and prune out a bunch of the
plugins that are not kept up to date.
Out of date plugins:
chatlist.c - superceded by faceprint's recent commit to
cvs.
filectl.c - doesn't support multiple accounts for IMs and
away messages.
raw.c - does anyone use this? it doesn't compile, but it
looks like an easy fix. "
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Mon, 28 Apr 2003 18:45:38 +0000 |
| parents | 6d1707dc8c3d |
| children | 1f901484599d |
| rev | line source |
|---|---|
| 2495 | 1 #define GAIM_PLUGINS |
| 2 #include "gaim.h" | |
| 3 #include "prpl.h" | |
| 4 #ifdef MAX | |
| 5 #undef MAX | |
| 6 #undef MIN | |
| 7 #endif | |
|
2824
2c39e70dd07c
[gaim-migrate @ 2837]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2495
diff
changeset
|
8 #include "protocols/jabber/jabber.h" |
| 2495 | 9 |
| 10 static GtkWidget *window = NULL; | |
| 11 static GtkWidget *optmenu = NULL; | |
| 12 static struct gaim_connection *gc = NULL; | |
| 13 static GModule *me = NULL; | |
| 14 | |
| 15 /* this is an evil hack. | |
| 16 * gc->proto_data for Jabber connections can be cast to a jconn *. | |
| 17 * gc->proto_data for MSN, TOC, and IRC connections can be cast to an int *. | |
| 18 */ | |
| 19 | |
| 3551 | 20 struct gaim_plugin_description desc; |
| 21 struct gaim_plugin_description *gaim_plugin_desc() { | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4655
diff
changeset
|
22 desc.api_version = GAIM_PLUGIN_API_VERSION; |
| 3551 | 23 desc.name = g_strdup("Raw Input"); |
| 24 desc.version = g_strdup(VERSION); | |
| 25 desc.description = g_strdup("Lets you send raw input to text-vased protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window."); | |
| 26 desc.authors = g_strdup("Eric Warmehoven <eric@warmenhoven.org>"); | |
| 27 desc.url = g_strdup(WEBSITE); | |
| 28 return &desc; | |
| 29 } | |
| 30 | |
| 31 | |
| 2495 | 32 char *name() |
| 33 { | |
| 34 return "Raw"; | |
| 35 } | |
| 36 | |
| 37 char *description() | |
| 38 { | |
| 39 return "Lets you send raw XML to Jabber, or raw commands to MSN, IRC, and TOC." | |
| 40 " Not very useful except for debugging. Hit 'enter' in the entry to send." | |
| 41 " Watch the debug window."; | |
| 42 } | |
| 43 | |
| 44 static int goodbye() | |
| 45 { | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4655
diff
changeset
|
46 gaim_plugin_unload_self(me); |
| 2495 | 47 return FALSE; |
| 48 } | |
| 49 | |
| 50 static void send_it(GtkEntry *entry) | |
| 51 { | |
| 4655 | 52 const char *txt; |
| 2495 | 53 if (!gc) return; |
| 54 txt = gtk_entry_get_text(entry); | |
| 55 switch (gc->protocol) { | |
| 56 case PROTO_TOC: | |
| 57 { | |
| 58 int *a = (int *)gc->proto_data; | |
| 59 unsigned short seqno = htons(a[1]++ & 0xffff); | |
| 60 unsigned short len = htons(strlen(txt) + 1); | |
| 61 write(*a, "*\002", 2); | |
| 62 write(*a, &seqno, 2); | |
| 63 write(*a, &len, 2); | |
| 64 write(*a, txt, ntohs(len)); | |
|
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
65 gaim_debug(GAIM_DEBUG_MISC, "raw", "TOC C: %s\n", txt); |
| 2495 | 66 } |
| 67 break; | |
| 68 case PROTO_MSN: | |
| 69 write(*(int *)gc->proto_data, txt, strlen(txt)); | |
| 70 write(*(int *)gc->proto_data, "\r\n", 2); | |
|
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
71 gaim_debug(GAIM_DEBUG_MISC, "raw", "MSN C: %s\n", txt); |
| 2495 | 72 break; |
| 73 case PROTO_IRC: | |
| 74 write(*(int *)gc->proto_data, txt, strlen(txt)); | |
| 75 write(*(int *)gc->proto_data, "\r\n", 2); | |
|
5227
6d1707dc8c3d
[gaim-migrate @ 5597]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
76 gaim_debug(GAIM_DEBUG_MISC, "raw", "IRC C: %s\n", txt); |
| 2495 | 77 break; |
| 78 case PROTO_JABBER: | |
| 79 jab_send_raw(*(jconn *)gc->proto_data, txt); | |
| 80 break; | |
| 81 } | |
| 82 gtk_entry_set_text(entry, ""); | |
| 83 } | |
| 84 | |
| 85 static void set_gc(gpointer d, struct gaim_connection *c) | |
| 86 { | |
| 87 gc = c; | |
| 88 } | |
| 89 | |
| 90 static void redo_optmenu(struct gaim_connection *arg, gpointer x) | |
| 91 { | |
| 92 GtkWidget *menu; | |
| 93 GSList *g = connections; | |
| 94 struct gaim_connection *c; | |
| 95 | |
| 96 menu = gtk_menu_new(); | |
| 97 gc = NULL; | |
| 98 | |
| 99 while (g) { | |
| 100 char buf[256]; | |
| 101 GtkWidget *opt; | |
| 102 c = (struct gaim_connection *)g->data; | |
| 103 g = g->next; | |
| 104 if (x && c == arg) | |
| 105 continue; | |
| 106 if (c->protocol != PROTO_TOC && c->protocol != PROTO_MSN && | |
| 107 c->protocol != PROTO_IRC && c->protocol != PROTO_JABBER) | |
| 108 continue; | |
| 109 if (!gc) | |
| 110 gc = c; | |
| 4655 | 111 g_snprintf(buf, sizeof buf, "%s (%s)", c->username, c->prpl->name); |
| 2495 | 112 opt = gtk_menu_item_new_with_label(buf); |
|
4165
07a3d1fae88f
[gaim-migrate @ 4394]
Christian Hammond <chipx86@chipx86.com>
parents:
3551
diff
changeset
|
113 g_signal_connect(GTK_OBJECT(opt), "activate", G_CALLBACK(set_gc), c); |
| 2495 | 114 gtk_widget_show(opt); |
| 4655 | 115 gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt); |
| 2495 | 116 } |
| 117 | |
| 118 gtk_option_menu_remove_menu(GTK_OPTION_MENU(optmenu)); | |
| 119 gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), menu); | |
| 120 gtk_option_menu_set_history(GTK_OPTION_MENU(optmenu), 0); | |
| 121 } | |
| 122 | |
| 123 char *gaim_plugin_init(GModule *h) | |
| 124 { | |
| 125 GtkWidget *hbox; | |
| 126 GtkWidget *entry; | |
| 127 | |
| 128 me = h; | |
| 129 | |
| 130 gaim_signal_connect(h, event_signon, redo_optmenu, NULL); | |
| 131 gaim_signal_connect(h, event_signoff, redo_optmenu, me); | |
| 132 | |
| 133 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
|
4165
07a3d1fae88f
[gaim-migrate @ 4394]
Christian Hammond <chipx86@chipx86.com>
parents:
3551
diff
changeset
|
134 g_signal_connect(GTK_OBJECT(window), "delete_event", G_CALLBACK(goodbye), NULL); |
| 2495 | 135 |
| 136 hbox = gtk_hbox_new(FALSE, 0); | |
| 137 gtk_container_add(GTK_CONTAINER(window), hbox); | |
| 138 | |
| 139 optmenu = gtk_option_menu_new(); | |
| 140 gtk_box_pack_start(GTK_BOX(hbox), optmenu, FALSE, FALSE, 5); | |
| 141 | |
| 142 redo_optmenu(NULL, NULL); | |
| 143 | |
| 144 entry = gtk_entry_new(); | |
| 145 gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 5); | |
|
4165
07a3d1fae88f
[gaim-migrate @ 4394]
Christian Hammond <chipx86@chipx86.com>
parents:
3551
diff
changeset
|
146 g_signal_connect(GTK_OBJECT(entry), "activate", G_CALLBACK(send_it), NULL); |
| 2495 | 147 |
| 148 gtk_widget_show_all(window); | |
| 149 | |
| 150 return NULL; | |
| 151 } | |
| 152 | |
| 153 void gaim_plugin_remove() | |
| 154 { | |
| 155 if (window) | |
| 156 gtk_widget_destroy(window); | |
| 157 window = NULL; | |
| 158 me = NULL; | |
| 159 } |
