pidgin/gtkplugin.c

Fri, 06 Dec 2013 01:06:45 -0800

author
Mark Doliner <mark@kingant.net>
date
Fri, 06 Dec 2013 01:06:45 -0800
changeset 35105
ed127ccd9b9f
parent 34480
26e7a3057f0c
child 35454
cf2a24d01503
child 36929
eed15b8d51a1
permissions
-rw-r--r--

Remove the "existing window" option for where to open URLs.

This was kind of a dumb option. I mean, who would want that?
We didn't support it in Chrome. We attempted to support it in
Firefox, Netscape and Opera.

It actually caused my Pidgin to hang when I tested it with Firefox.
I'm sure it's fixable, but who cares? Here's the stacktrace, for the
curious:
#0 0x00007f5c461a8fbd in poll () at ../sysdeps/unix/syscall-template.S:81
#1 0x00007f5c470be1dc in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2 0x00007f5c470be6ba in g_main_loop_run () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3 0x00007f5c470ffe41 in g_spawn_sync () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4 0x00007f5c471002b8 in g_spawn_command_line_sync () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5 0x00000000004ae804 in uri_command (command=0x203e760 "firefox -a firefox -remote openURL('http://www.yahoo.com/')",
sync=1) at gtknotify.c:1270

5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
1 /**
6927
528988ef2781 [gaim-migrate @ 7474]
Christian Hammond <chipx86@chipx86.com>
parents: 5982
diff changeset
2 * @file gtkplugin.c GTK+ Plugins support
16254
eeb2bba4dc94 Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents: 16123
diff changeset
3 * @ingroup pidgin
20147
66f05a854eee applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents: 19859
diff changeset
4 */
66f05a854eee applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents: 19859
diff changeset
5
66f05a854eee applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents: 19859
diff changeset
6 /* pidgin
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
7 *
15931
716b5fac1895 Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@pidgin.im>
parents: 15884
diff changeset
8 * Pidgin is the legal property of its developers, whose names are too numerous
8046
c581b20a47d6 [gaim-migrate @ 8730]
Sean Egan <seanegan@pidgin.im>
parents: 6927
diff changeset
9 * to list here. Please refer to the COPYRIGHT file distributed with this
c581b20a47d6 [gaim-migrate @ 8730]
Sean Egan <seanegan@pidgin.im>
parents: 6927
diff changeset
10 * source distribution.
6927
528988ef2781 [gaim-migrate @ 7474]
Christian Hammond <chipx86@chipx86.com>
parents: 5982
diff changeset
11 *
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
12 * This program is free software; you can redistribute it and/or modify
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
13 * it under the terms of the GNU General Public License as published by
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
14 * the Free Software Foundation; either version 2 of the License, or
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
15 * (at your option) any later version.
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
16 *
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
17 * This program is distributed in the hope that it will be useful,
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
20 * GNU General Public License for more details.
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
21 *
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
22 * You should have received a copy of the GNU General Public License
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
23 * along with this program; if not, write to the Free Software
19859
71d37b57eff2 The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents: 19733
diff changeset
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
25 */
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
26 #include "internal.h"
15577
b8129373f65e More pidgin changes
Sean Egan <seanegan@pidgin.im>
parents: 15562
diff changeset
27 #include "pidgin.h"
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
28 #include "gtkplugin.h"
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
29 #include "gtkpluginpref.h"
13436
b80f8990bc67 [gaim-migrate @ 15810]
Richard Laager <rlaager@pidgin.im>
parents: 13435
diff changeset
30 #include "gtkutils.h"
5981
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
31 #include "debug.h"
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
32 #include "prefs.h"
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
33 #include "request.h"
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
34 #include "pidgintooltip.h"
5981
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
35
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
36 #include <string.h>
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
37
33170
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
38 #include "gtk3compat.h"
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
39
15880
d275b025481c More Gaim to Pidgin changes
Sean Egan <seanegan@pidgin.im>
parents: 15692
diff changeset
40 #define PIDGIN_RESPONSE_CONFIGURE 98121
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
41
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
42 typedef struct
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
43 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
44 enum
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
45 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
46 PIDGIN_PLUGIN_UI_DATA_TYPE_FRAME,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
47 PIDGIN_PLUGIN_UI_DATA_TYPE_REQUEST
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
48 } type;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
49
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
50 union
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
51 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
52 struct
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
53 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
54 GtkWidget *dialog;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
55 PurplePluginPrefFrame *pref_frame;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
56 } frame;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
57
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
58 gpointer request_handle;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
59 } u;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
60 } PidginPluginUiData;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
61
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
62 static void plugin_toggled_stage_two(PurplePlugin *plug, GtkTreeModel *model,
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
63 GtkTreeIter *iter, gboolean unload);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
64
12343
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
65 static GtkWidget *expander = NULL;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
66 static GtkWidget *plugin_dialog = NULL;
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
67
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
68 static GtkLabel *plugin_name = NULL;
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
69 static GtkTextBuffer *plugin_desc = NULL;
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
70 static GtkLabel *plugin_error = NULL;
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
71 static GtkLabel *plugin_author = NULL;
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
72 static GtkLabel *plugin_website = NULL;
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
73 static gchar *plugin_website_uri = NULL;
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
74 static GtkLabel *plugin_filename = NULL;
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
75
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
76 static GtkWidget *pref_button = NULL;
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
77
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
78 static gboolean
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
79 pidgin_plugin_has_prefs(PurplePlugin *plugin)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
80 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
81 PurplePluginUiInfo *pinfo;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
82
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
83 g_return_val_if_fail(plugin != NULL, FALSE);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
84
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
85 if (!purple_plugin_is_loaded(plugin))
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
86 return FALSE;
11747
f78febfc17c6 [gaim-migrate @ 14038]
Etan Reisner <deryni@pidgin.im>
parents: 11744
diff changeset
87
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
88 if (PIDGIN_IS_PIDGIN_PLUGIN(plugin) && plugin->info->ui_info &&
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
89 PIDGIN_PLUGIN_UI_INFO(plugin)->get_config_frame)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
90 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
91 return TRUE;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
92 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
93
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
94 pinfo = plugin->info->prefs_info;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
95
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
96 if (!pinfo)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
97 return FALSE;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
98
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
99 return (pinfo->get_plugin_pref_frame || pinfo->get_plugin_pref_request);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
100 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
101
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
102 static GtkWidget *
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
103 pidgin_plugin_get_config_frame(PurplePlugin *plugin,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
104 PurplePluginPrefFrame **purple_pref_frame)
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
105 {
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
106 GtkWidget *config = NULL;
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
107
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
108 g_return_val_if_fail(plugin != NULL, NULL);
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
109
15692
ecda27df58b9 Some more pidgininfication
Daniel Atallah <datallah@pidgin.im>
parents: 15577
diff changeset
110 if (PIDGIN_IS_PIDGIN_PLUGIN(plugin) && plugin->info->ui_info
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
111 && PIDGIN_PLUGIN_UI_INFO(plugin)->get_config_frame)
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
112 {
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
113 PidginPluginUiInfo *ui_info;
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
114
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
115 ui_info = PIDGIN_PLUGIN_UI_INFO(plugin);
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
116
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
117 config = ui_info->get_config_frame(plugin);
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
118 }
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
119
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
120 if (config == NULL && plugin->info->prefs_info
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
121 && plugin->info->prefs_info->get_plugin_pref_frame)
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
122 {
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
123 PurplePluginPrefFrame *frame;
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
124
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
125 frame = plugin->info->prefs_info->get_plugin_pref_frame(plugin);
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
126
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
127 config = pidgin_plugin_pref_create_frame(frame);
12870
20dd598144a9 [gaim-migrate @ 15222]
Etan Reisner <deryni@pidgin.im>
parents: 12705
diff changeset
128
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
129 *purple_pref_frame = frame;
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
130 }
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
131
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
132 return config;
5205
242b8aa81328 [gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
diff changeset
133 }
5981
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
134
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
135 static void
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
136 pref_dialog_close(PurplePlugin *plugin)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
137 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
138 PidginPluginUiData *ui_data;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
139
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
140 g_return_if_fail(plugin != NULL);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
141
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
142 ui_data = plugin->ui_data;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
143 if (ui_data == NULL)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
144 return;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
145
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
146 if (ui_data->type == PIDGIN_PLUGIN_UI_DATA_TYPE_REQUEST) {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
147 purple_request_close(PURPLE_REQUEST_FIELDS,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
148 ui_data->u.request_handle);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
149 return;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
150 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
151
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
152 g_return_if_fail(ui_data->type == PIDGIN_PLUGIN_UI_DATA_TYPE_FRAME);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
153
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
154 gtk_widget_destroy(ui_data->u.frame.dialog);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
155
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
156 if (ui_data->u.frame.pref_frame)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
157 purple_plugin_pref_frame_destroy(ui_data->u.frame.pref_frame);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
158
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
159 g_free(ui_data);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
160 plugin->ui_data = NULL;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
161 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
162
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
163
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
164 static void
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
165 pref_dialog_response_cb(GtkWidget *dialog, int response, PurplePlugin *plugin)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
166 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
167 if (response == GTK_RESPONSE_CLOSE ||
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
168 response == GTK_RESPONSE_DELETE_EVENT)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
169 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
170 pref_dialog_close(plugin);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
171 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
172 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
173
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
174 static void
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
175 pidgin_plugin_open_config(PurplePlugin *plugin, GtkWindow *parent)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
176 {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
177 PurplePluginUiInfo *pinfo;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
178 PidginPluginUiData *ui_data;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
179 gboolean has_purple_frame, has_purple_request, has_pidgin_frame;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
180 gint prefs_count;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
181
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
182 g_return_if_fail(plugin != NULL);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
183
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
184 if (!pidgin_plugin_has_prefs(plugin)) {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
185 purple_debug_warning("gtkplugin", "Plugin has no prefs");
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
186 return;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
187 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
188
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
189 if (plugin->ui_data != NULL)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
190 return;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
191
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
192 pinfo = plugin->info->prefs_info;
34480
26e7a3057f0c Plugins API: fix a crash
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34479
diff changeset
193 if (pinfo == NULL)
26e7a3057f0c Plugins API: fix a crash
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34479
diff changeset
194 has_purple_frame = has_purple_request = FALSE;
26e7a3057f0c Plugins API: fix a crash
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34479
diff changeset
195 else {
26e7a3057f0c Plugins API: fix a crash
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34479
diff changeset
196 has_purple_frame = (pinfo->get_plugin_pref_frame != NULL);
26e7a3057f0c Plugins API: fix a crash
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34479
diff changeset
197 has_purple_request = (pinfo->get_plugin_pref_request != NULL);
26e7a3057f0c Plugins API: fix a crash
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34479
diff changeset
198 }
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
199 has_pidgin_frame = (PIDGIN_IS_PIDGIN_PLUGIN(plugin) &&
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
200 plugin->info->ui_info &&
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
201 PIDGIN_PLUGIN_UI_INFO(plugin)->get_config_frame);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
202
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
203 prefs_count = 0;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
204 if (has_purple_frame)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
205 prefs_count++;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
206 if (has_purple_request)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
207 prefs_count++;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
208 if (has_pidgin_frame)
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
209 prefs_count++;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
210
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
211 if (prefs_count > 1) {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
212 purple_debug_warning("gtkplugin", "Plugin %s contains more than"
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
213 " one prefs callback, some will be ignored.",
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
214 plugin->info->name);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
215 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
216 g_return_if_fail(prefs_count > 0);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
217
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
218 plugin->ui_data = ui_data = g_new0(PidginPluginUiData, 1);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
219
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
220 /* Priority: pidgin frame > purple request > purple frame
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
221 * Purple frame could be replaced with purple request some day.
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
222 */
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
223 if (has_purple_request && !has_pidgin_frame) {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
224 ui_data->type = PIDGIN_PLUGIN_UI_DATA_TYPE_REQUEST;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
225 ui_data->u.request_handle =
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
226 pinfo->get_plugin_pref_request(plugin);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
227 purple_request_add_close_notify(ui_data->u.request_handle,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
228 purple_callback_set_zero, &plugin->ui_data);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
229 purple_request_add_close_notify(ui_data->u.request_handle,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
230 g_free, ui_data);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
231 } else {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
232 GtkWidget *box, *dialog;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
233
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
234 ui_data->type = PIDGIN_PLUGIN_UI_DATA_TYPE_FRAME;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
235
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
236 box = pidgin_plugin_get_config_frame(plugin,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
237 &ui_data->u.frame.pref_frame);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
238 if (box == NULL) {
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
239 purple_debug_error("gtkplugin",
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
240 "Failed to display prefs frame");
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
241 g_free(ui_data);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
242 plugin->ui_data = NULL;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
243 return;
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
244 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
245
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
246 ui_data->u.frame.dialog = dialog = gtk_dialog_new_with_buttons(
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
247 PIDGIN_ALERT_TITLE, parent,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
248 GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_CLOSE,
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
249 GTK_RESPONSE_CLOSE, NULL);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
250
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
251 g_signal_connect(G_OBJECT(dialog), "response",
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
252 G_CALLBACK(pref_dialog_response_cb), plugin);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
253 gtk_container_add(GTK_CONTAINER(
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
254 gtk_dialog_get_content_area(GTK_DIALOG(dialog))), box);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
255 gtk_window_set_role(GTK_WINDOW(dialog), "plugin_config");
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
256 gtk_window_set_title(GTK_WINDOW(dialog),
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
257 _(purple_plugin_get_name(plugin)));
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
258 gtk_widget_show_all(dialog);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
259 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
260 }
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
261
5981
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
262 void
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
263 pidgin_plugins_save(void)
5981
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
264 {
16123
8b98683319e7 Rename /purple/gtk preferences back to /gaim/gtk to allow for smooth upgrades
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15931
diff changeset
265 purple_plugins_save_loaded(PIDGIN_PREFS_ROOT "/plugins/loaded");
5981
c91ece01ad12 [gaim-migrate @ 6429]
Christian Hammond <chipx86@chipx86.com>
parents: 5205
diff changeset
266 }
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
267
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
268 static void
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
269 update_plugin_list(void *data)
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
270 {
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
271 GtkListStore *ls = GTK_LIST_STORE(data);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
272 GtkTreeIter iter;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
273 GList *probes;
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
274 PurplePlugin *plug;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
275
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
276 gtk_list_store_clear(ls);
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
277 purple_plugins_probe(G_MODULE_SUFFIX);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
278
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
279 for (probes = purple_plugins_get_all();
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
280 probes != NULL;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
281 probes = probes->next)
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
282 {
12702
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
283 char *name;
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
284 char *version;
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
285 char *summary;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
286 char *desc;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
287 plug = probes->data;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
288
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
289 if (plug->info->type == PURPLE_PLUGIN_LOADER) {
15336
a2454071e986 [gaim-migrate @ 18064]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15177
diff changeset
290 GList *cur;
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
291 for (cur = PURPLE_PLUGIN_LOADER_INFO(plug)->exts; cur != NULL;
15336
a2454071e986 [gaim-migrate @ 18064]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15177
diff changeset
292 cur = cur->next)
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
293 purple_plugins_probe(cur->data);
15336
a2454071e986 [gaim-migrate @ 18064]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 15177
diff changeset
294 continue;
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
295 } else if (plug->info->type != PURPLE_PLUGIN_STANDARD ||
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
296 (plug->info->flags & PURPLE_PLUGIN_FLAG_INVISIBLE)) {
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
297 continue;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
298 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
299
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
300 gtk_list_store_append (ls, &iter);
12702
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
301
26756
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
302 if (plug->info->name) {
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
303 name = g_markup_escape_text(_(plug->info->name), -1);
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
304 } else {
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
305 char *tmp = g_path_get_basename(plug->path);
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
306 name = g_markup_escape_text(tmp, -1);
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
307 g_free(tmp);
874b154f4220 More Pidgin updates for GTK+ 3.0. Removes any deprecated functions for GLib
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23180
diff changeset
308 }
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
309 version = g_markup_escape_text(purple_plugin_get_version(plug), -1);
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
310 summary = g_markup_escape_text(purple_plugin_get_summary(plug), -1);
12702
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
311
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
312 desc = g_strdup_printf("<b>%s</b> %s\n%s", name,
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
313 version,
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
314 summary);
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
315 g_free(name);
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
316 g_free(version);
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
317 g_free(summary);
fbd3bef47358 [gaim-migrate @ 15045]
Richard Laager <rlaager@pidgin.im>
parents: 12695
diff changeset
318
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
319 gtk_list_store_set(ls, &iter,
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
320 0, purple_plugin_is_loaded(plug),
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
321 1, desc,
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
322 2, plug,
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
323 3, purple_plugin_is_unloadable(plug),
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
324 -1);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
325 g_free(desc);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
326 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
327 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
328
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
329 static void plugin_loading_common(PurplePlugin *plugin, GtkTreeView *view, gboolean loaded)
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
330 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
331 GtkTreeIter iter;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
332 GtkTreeModel *model = gtk_tree_view_get_model(view);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
333
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
334 if (gtk_tree_model_get_iter_first(model, &iter)) {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
335 do {
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
336 PurplePlugin *plug;
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
337 GtkTreeSelection *sel;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
338
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
339 gtk_tree_model_get(model, &iter, 2, &plug, -1);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
340
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
341 if (plug != plugin)
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
342 continue;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
343
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
344 gtk_list_store_set(GTK_LIST_STORE(model), &iter, 0, loaded, -1);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
345
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
346 /* If the loaded/unloaded plugin is the selected row,
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
347 * update the pref_button. */
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
348 sel = gtk_tree_view_get_selection(view);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
349 if (gtk_tree_selection_get_selected(sel, &model, &iter))
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
350 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
351 gtk_tree_model_get(model, &iter, 2, &plug, -1);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
352 if (plug == plugin)
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
353 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
354 gtk_widget_set_sensitive(pref_button,
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
355 pidgin_plugin_has_prefs(plug));
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
356 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
357 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
358
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
359 break;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
360 } while (gtk_tree_model_iter_next(model, &iter));
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
361 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
362 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
363
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
364 static void plugin_load_cb(PurplePlugin *plugin, gpointer data)
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
365 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
366 GtkTreeView *view = (GtkTreeView *)data;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
367 plugin_loading_common(plugin, view, TRUE);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
368 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
369
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
370 static void plugin_unload_cb(PurplePlugin *plugin, gpointer data)
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
371 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
372 GtkTreeView *view = (GtkTreeView *)data;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
373 plugin_loading_common(plugin, view, FALSE);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
374 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
375
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
376 static void plugin_unload_confirm_cb(gpointer *data)
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
377 {
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
378 PurplePlugin *plugin = (PurplePlugin *)data[0];
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
379 GtkTreeModel *model = (GtkTreeModel *)data[1];
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
380 GtkTreeIter *iter = (GtkTreeIter *)data[2];
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
381
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
382 plugin_toggled_stage_two(plugin, model, iter, TRUE);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
383
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
384 g_free(data);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
385 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
386
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
387 static void plugin_toggled(GtkCellRendererToggle *cell, gchar *pth, gpointer data)
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
388 {
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
389 GtkTreeModel *model = (GtkTreeModel *)data;
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
390 GtkTreeIter *iter = g_new(GtkTreeIter, 1);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
391 GtkTreePath *path = gtk_tree_path_new_from_string(pth);
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
392 PurplePlugin *plug;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
393
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
394 gtk_tree_model_get_iter(model, iter, path);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
395 gtk_tree_path_free(path);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
396 gtk_tree_model_get(model, iter, 2, &plug, -1);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
397
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
398 /* Apparently, GTK+ won't honor the sensitive flag on cell renderers for booleans. */
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
399 if (purple_plugin_is_unloadable(plug))
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
400 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
401 g_free(iter);
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
402 return;
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
403 }
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
404
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
405 if (!purple_plugin_is_loaded(plug))
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
406 {
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
407 pidgin_set_cursor(plugin_dialog, GDK_WATCH);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
408
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
409 purple_plugin_load(plug);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
410 plugin_toggled_stage_two(plug, model, iter, FALSE);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
411
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
412 pidgin_clear_cursor(plugin_dialog);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
413 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
414 else
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
415 {
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
416 pref_dialog_close(plug);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
417
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
418 if (plug->dependent_plugins != NULL)
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
419 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
420 GString *tmp = g_string_new(_("The following plugins will be unloaded."));
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
421 GList *l;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
422 gpointer *cb_data;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
423
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
424 for (l = plug->dependent_plugins ; l != NULL ; l = l->next)
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
425 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
426 const char *dep_name = (const char *)l->data;
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
427 PurplePlugin *dep_plugin = purple_plugins_find_with_id(dep_name);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
428 g_return_if_fail(dep_plugin != NULL);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
429
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
430 g_string_append_printf(tmp, "\n\t%s\n", purple_plugin_get_name(dep_plugin));
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
431 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
432
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
433 cb_data = g_new(gpointer, 3);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
434 cb_data[0] = plug;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
435 cb_data[1] = model;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
436 cb_data[2] = iter;
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
437
21175
c6d76b49c206 disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents: 21174
diff changeset
438 purple_request_action(plugin_dialog, NULL,
34331
c8486462bb63 Request API refactoring: switch purple_request_action to PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 33271
diff changeset
439 _("Multiple plugins will be unloaded."),
c8486462bb63 Request API refactoring: switch purple_request_action to PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 33271
diff changeset
440 tmp->str, 0, NULL, cb_data, 2,
c8486462bb63 Request API refactoring: switch purple_request_action to PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 33271
diff changeset
441 _("Unload Plugins"),
c8486462bb63 Request API refactoring: switch purple_request_action to PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 33271
diff changeset
442 G_CALLBACK(plugin_unload_confirm_cb),
c8486462bb63 Request API refactoring: switch purple_request_action to PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 33271
diff changeset
443 _("Cancel"), g_free);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
444 g_string_free(tmp, TRUE);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
445 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
446 else
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
447 plugin_toggled_stage_two(plug, model, iter, TRUE);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
448 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
449 }
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
450
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
451 static void plugin_toggled_stage_two(PurplePlugin *plug, GtkTreeModel *model, GtkTreeIter *iter, gboolean unload)
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
452 {
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
453 if (unload)
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
454 {
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
455 pidgin_set_cursor(plugin_dialog, GDK_WATCH);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
456
20872
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
457 if (!purple_plugin_unload(plug))
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
458 {
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
459 const char *primary = _("Could not unload plugin");
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
460 const char *reload = _("The plugin could not be unloaded now, but will be disabled at the next startup.");
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
461
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
462 if (!plug->error)
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
463 {
34449
bbcb198650b7 Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34331
diff changeset
464 purple_notify_warning(NULL, NULL, primary, reload, NULL);
20872
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
465 }
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
466 else
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
467 {
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
468 char *tmp = g_strdup_printf("%s\n\n%s", reload, plug->error);
34449
bbcb198650b7 Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34331
diff changeset
469 purple_notify_warning(NULL, NULL, primary, tmp, NULL);
20872
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
470 g_free(tmp);
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
471 }
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
472
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
473 purple_plugin_disable(plug);
fc317689cfef Use the new purple_plugin_disable() function and purple_plugin_unload()'s
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
474 }
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
475
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
476 pidgin_clear_cursor(plugin_dialog);
11781
464cc8bc4169 [gaim-migrate @ 14072]
Kevin Stange <kstange@pidgin.im>
parents: 11777
diff changeset
477 }
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
478
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
479 gtk_widget_set_sensitive(pref_button, pidgin_plugin_has_prefs(plug));
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
480
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
481 if (plug->error != NULL)
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
482 {
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
483 gchar *name = g_markup_escape_text(purple_plugin_get_name(plug), -1);
11781
464cc8bc4169 [gaim-migrate @ 14072]
Kevin Stange <kstange@pidgin.im>
parents: 11777
diff changeset
484
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
485 gchar *error = g_markup_escape_text(plug->error, -1);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
486 gchar *text;
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
487
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
488 text = g_strdup_printf(
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
489 "<b>%s</b> %s\n<span weight=\"bold\" color=\"red\"%s</span>",
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
490 purple_plugin_get_name(plug), purple_plugin_get_version(plug), error);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
491 gtk_list_store_set(GTK_LIST_STORE (model), iter,
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
492 1, text,
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
493 -1);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
494 g_free(text);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
495
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
496 text = g_strdup_printf(
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
497 "<span weight=\"bold\" color=\"red\">%s</span>",
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
498 error);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
499 gtk_label_set_markup(plugin_error, text);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
500 g_free(text);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
501
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
502 g_free(error);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
503 g_free(name);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
504 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
505
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
506 gtk_list_store_set(GTK_LIST_STORE (model), iter,
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
507 0, purple_plugin_is_loaded(plug),
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
508 -1);
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
509 g_free(iter);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
510
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
511 pidgin_plugins_save();
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
512 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
513
11877
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
514 static gboolean ensure_plugin_visible(void *data)
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
515 {
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
516 GtkTreeSelection *sel = GTK_TREE_SELECTION(data);
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
517 GtkTreeView *tv = gtk_tree_selection_get_tree_view(sel);
11877
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
518 GtkTreeModel *model = gtk_tree_view_get_model(tv);
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
519 GtkTreePath *path;
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
520 GtkTreeIter iter;
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
521 if (!gtk_tree_selection_get_selected (sel, &model, &iter))
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
522 return FALSE;
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
523 path = gtk_tree_model_get_path(model, &iter);
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
524 gtk_tree_view_scroll_to_cell(gtk_tree_selection_get_tree_view(sel), path, NULL, FALSE, 0, 0);
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
525 gtk_tree_path_free(path);
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
526 return FALSE;
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
527 }
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
528
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
529 static void prefs_plugin_sel (GtkTreeSelection *sel, GtkTreeModel *model)
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
530 {
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
531 gchar *buf, *tmp, *name, *version;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
532 GtkTreeIter iter;
12600
7ecd4441fdc7 [gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents: 12343
diff changeset
533 GValue val;
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
534 PurplePlugin *plug;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
535
11833
119ea75db24b [gaim-migrate @ 14124]
Mark Doliner <markdoliner@pidgin.im>
parents: 11817
diff changeset
536 if (!gtk_tree_selection_get_selected (sel, &model, &iter))
119ea75db24b [gaim-migrate @ 14124]
Mark Doliner <markdoliner@pidgin.im>
parents: 11817
diff changeset
537 {
119ea75db24b [gaim-migrate @ 14124]
Mark Doliner <markdoliner@pidgin.im>
parents: 11817
diff changeset
538 gtk_widget_set_sensitive(pref_button, FALSE);
12343
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
539
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
540 /* Collapse and disable the expander widget */
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
541 gtk_expander_set_expanded(GTK_EXPANDER(expander), FALSE);
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
542 gtk_widget_set_sensitive(expander, FALSE);
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
543
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
544 return;
11833
119ea75db24b [gaim-migrate @ 14124]
Mark Doliner <markdoliner@pidgin.im>
parents: 11817
diff changeset
545 }
119ea75db24b [gaim-migrate @ 14124]
Mark Doliner <markdoliner@pidgin.im>
parents: 11817
diff changeset
546
12343
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
547 gtk_widget_set_sensitive(expander, TRUE);
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
548
12600
7ecd4441fdc7 [gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents: 12343
diff changeset
549 val.g_type = 0;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
550 gtk_tree_model_get_value (model, &iter, 2, &val);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
551 plug = g_value_get_pointer(&val);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
552
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
553 name = g_markup_escape_text(purple_plugin_get_name(plug), -1);
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
554 version = g_markup_escape_text(purple_plugin_get_version(plug), -1);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
555 buf = g_strdup_printf(
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
556 "<span size=\"larger\" weight=\"bold\">%s</span> "
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
557 "<span size=\"smaller\">%s</span>",
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
558 name, version);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
559 gtk_label_set_markup(plugin_name, buf);
23180
5d6a0a35837f applied changes from 97a20dd56598fa5c690eabcbc8ec3ff6e560aefd
Daniel Atallah <datallah@pidgin.im>
parents: 23100
diff changeset
560 g_free(name);
5d6a0a35837f applied changes from 97a20dd56598fa5c690eabcbc8ec3ff6e560aefd
Daniel Atallah <datallah@pidgin.im>
parents: 23100
diff changeset
561 g_free(version);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
562 g_free(buf);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
563
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
564 gtk_text_buffer_set_text(plugin_desc, purple_plugin_get_description(plug), -1);
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
565 gtk_label_set_text(plugin_author, purple_plugin_get_author(plug));
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
566 gtk_label_set_text(plugin_filename, plug->path);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
567
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
568 g_free(plugin_website_uri);
23100
013db96dd9a7 Translate the description of the plugin in the plugins dialog. Thanks to
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22788
diff changeset
569 plugin_website_uri = g_strdup(purple_plugin_get_homepage(plug));
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
570 if (plugin_website_uri)
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
571 {
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
572 tmp = g_markup_escape_text(plugin_website_uri, -1);
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
573 buf = g_strdup_printf("<span underline=\"single\" "
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
574 "foreground=\"blue\">%s</span>", tmp);
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
575 gtk_label_set_markup(plugin_website, buf);
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
576 g_free(tmp);
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
577 g_free(buf);
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
578 }
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
579 else
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
580 {
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
581 gtk_label_set_text(plugin_website, NULL);
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
582 }
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
583
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
584 if (plug->error == NULL)
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
585 {
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
586 gtk_label_set_text(plugin_error, NULL);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
587 }
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
588 else
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
589 {
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
590 tmp = g_markup_escape_text(plug->error, -1);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
591 buf = g_strdup_printf(
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
592 _("<span foreground=\"red\" weight=\"bold\">"
12705
7780ec726bdb [gaim-migrate @ 15048]
Richard Laager <rlaager@pidgin.im>
parents: 12702
diff changeset
593 "Error: %s\n"
7780ec726bdb [gaim-migrate @ 15048]
Richard Laager <rlaager@pidgin.im>
parents: 12702
diff changeset
594 "Check the plugin website for an update."
7780ec726bdb [gaim-migrate @ 15048]
Richard Laager <rlaager@pidgin.im>
parents: 12702
diff changeset
595 "</span>"),
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
596 tmp);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
597 gtk_label_set_markup(plugin_error, buf);
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
598 g_free(buf);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
599 g_free(tmp);
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
600 }
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
601
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
602 gtk_widget_set_sensitive(pref_button, pidgin_plugin_has_prefs(plug));
11817
b8622a510778 [gaim-migrate @ 14108]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 11813
diff changeset
603
11877
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
604 /* Make sure the selected plugin is still visible */
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
605 g_idle_add(ensure_plugin_visible, sel);
59ac4dc1e366 [gaim-migrate @ 14168]
Sean Egan <seanegan@pidgin.im>
parents: 11843
diff changeset
606
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
607 g_value_unset(&val);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
608 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
609
11741
63298b4d615a [gaim-migrate @ 14032]
Sean Egan <seanegan@pidgin.im>
parents: 11740
diff changeset
610 static void plugin_dialog_response_cb(GtkWidget *d, int response, GtkTreeSelection *sel)
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
611 {
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
612 PurplePlugin *plugin;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
613 GtkTreeModel *model;
12600
7ecd4441fdc7 [gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents: 12343
diff changeset
614 GValue val;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
615 GtkTreeIter iter;
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
616 GList *it;
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
617
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
618 switch (response) {
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
619 case GTK_RESPONSE_CLOSE:
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
620 case GTK_RESPONSE_DELETE_EVENT:
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
621 purple_request_close_with_handle(plugin_dialog);
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
622 purple_signals_disconnect_by_handle(plugin_dialog);
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
623 for (it = purple_plugins_get_all(); it; it = g_list_next(it))
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
624 pref_dialog_close(it->data);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
625 gtk_widget_destroy(d);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
626 plugin_dialog = NULL;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
627 break;
15880
d275b025481c More Gaim to Pidgin changes
Sean Egan <seanegan@pidgin.im>
parents: 15692
diff changeset
628 case PIDGIN_RESPONSE_CONFIGURE:
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
629 if (! gtk_tree_selection_get_selected (sel, &model, &iter))
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
630 return;
12600
7ecd4441fdc7 [gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents: 12343
diff changeset
631 val.g_type = 0;
7ecd4441fdc7 [gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents: 12343
diff changeset
632 gtk_tree_model_get_value(model, &iter, 2, &val);
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
633 plugin = g_value_get_pointer(&val);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
634 g_value_unset(&val);
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
635 if (plugin == NULL)
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
636 break;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
637
34479
7d4651f1035e Plugins API: add an option to provide plugin configuration using Request API
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 34477
diff changeset
638 pidgin_plugin_open_config(plugin, GTK_WINDOW(d));
11781
464cc8bc4169 [gaim-migrate @ 14072]
Kevin Stange <kstange@pidgin.im>
parents: 11777
diff changeset
639
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
640 break;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
641 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
642 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
643
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
644 static void
13718
f29249a2856c [gaim-migrate @ 16125]
Richard Laager <rlaager@pidgin.im>
parents: 13436
diff changeset
645 show_plugin_prefs_cb(GtkTreeView *view, GtkTreePath *path, GtkTreeViewColumn *column, GtkWidget *dialog)
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
646 {
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
647 GtkTreeSelection *sel;
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
648 GtkTreeIter iter;
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
649 PurplePlugin *plugin;
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
650 GtkTreeModel *model;
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
651
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
652 sel = gtk_tree_view_get_selection(view);
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
653
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
654 if (!gtk_tree_selection_get_selected(sel, &model, &iter))
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
655 return;
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
656
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
657 gtk_tree_model_get(model, &iter, 2, &plugin, -1);
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
658
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
659 if (!purple_plugin_is_loaded(plugin))
12174
3b0b53e84591 [gaim-migrate @ 14476]
Richard Laager <rlaager@pidgin.im>
parents: 12162
diff changeset
660 return;
3b0b53e84591 [gaim-migrate @ 14476]
Richard Laager <rlaager@pidgin.im>
parents: 12162
diff changeset
661
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
662 /* Now show the pref-dialog for the plugin */
15880
d275b025481c More Gaim to Pidgin changes
Sean Egan <seanegan@pidgin.im>
parents: 15692
diff changeset
663 plugin_dialog_response_cb(dialog, PIDGIN_RESPONSE_CONFIGURE, sel);
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
664 }
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
665
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
666 static gboolean
33161
c248c062f272 Pass the cairo context to the tooltip paint function.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33158
diff changeset
667 pidgin_plugins_paint_tooltip(GtkWidget *tipwindow, cairo_t *cr, gpointer data)
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
668 {
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
669 PangoLayout *layout = g_object_get_data(G_OBJECT(tipwindow), "tooltip-plugin");
33170
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
670 #if GTK_CHECK_VERSION(3,0,0)
33271
53bf180b9eb1 Use GtkStyleContext instead of GtkStyle on GTK+3.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33170
diff changeset
671 GtkStyleContext *context = gtk_widget_get_style_context(tipwindow);
53bf180b9eb1 Use GtkStyleContext instead of GtkStyle on GTK+3.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33170
diff changeset
672 gtk_style_context_add_class(context, GTK_STYLE_CLASS_TOOLTIP);
53bf180b9eb1 Use GtkStyleContext instead of GtkStyle on GTK+3.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33170
diff changeset
673 gtk_render_layout(context, cr, 6, 6, layout);
33170
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
674 #else
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
675 gtk_paint_layout(tipwindow->style, tipwindow->window, GTK_STATE_NORMAL, FALSE,
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
676 NULL, tipwindow, "tooltip",
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
677 6, 6, layout);
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
678 #endif
32422
c215bc5d85e4 Whitespace fixes. Try and check your editor settings before writing
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 32410
diff changeset
679 return TRUE;
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
680 }
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
681
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
682 static gboolean
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
683 pidgin_plugins_create_tooltip(GtkWidget *tipwindow, GtkTreePath *path,
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
684 gpointer data, int *w, int *h)
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
685 {
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
686 GtkTreeIter iter;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
687 GtkTreeView *treeview = GTK_TREE_VIEW(data);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
688 PurplePlugin *plugin = NULL;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
689 GtkTreeModel *model = gtk_tree_view_get_model(treeview);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
690 PangoLayout *layout;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
691 int width, height;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
692 char *markup, *name, *desc, *author;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
693
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
694 if (!gtk_tree_model_get_iter(model, &iter, path))
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
695 return FALSE;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
696
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
697 gtk_tree_model_get(model, &iter, 2, &plugin, -1);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
698
22533
7e1e39d5db7e Allow translation/transliteration foo in the plugin window tooltip.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22065
diff changeset
699 markup = g_strdup_printf("<span size='x-large' weight='bold'>%s</span>\n<b>%s:</b> %s\n<b>%s:</b> %s",
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
700 name = g_markup_escape_text(purple_plugin_get_name(plugin), -1),
22533
7e1e39d5db7e Allow translation/transliteration foo in the plugin window tooltip.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22065
diff changeset
701 _("Description"), desc = g_markup_escape_text(purple_plugin_get_description(plugin), -1),
7e1e39d5db7e Allow translation/transliteration foo in the plugin window tooltip.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22065
diff changeset
702 _("Author"), author = g_markup_escape_text(purple_plugin_get_author(plugin), -1));
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
703
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
704 layout = gtk_widget_create_pango_layout(tipwindow, NULL);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
705 pango_layout_set_markup(layout, markup, -1);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
706 pango_layout_set_wrap(layout, PANGO_WRAP_WORD);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
707 pango_layout_set_width(layout, 600000);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
708 pango_layout_get_size(layout, &width, &height);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
709 g_object_set_data_full(G_OBJECT(tipwindow), "tooltip-plugin", layout, g_object_unref);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
710
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
711 if (w)
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
712 *w = PANGO_PIXELS(width) + 12;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
713 if (h)
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
714 *h = PANGO_PIXELS(height) + 12;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
715
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
716 g_free(markup);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
717 g_free(name);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
718 g_free(desc);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
719 g_free(author);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
720
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
721 return TRUE;
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
722 }
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
723
22788
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
724 static gboolean
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
725 website_button_motion_cb(GtkWidget *button, GdkEventCrossing *event,
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
726 gpointer unused)
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
727 {
22788
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
728 if (plugin_website_uri) {
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
729 pidgin_set_cursor(button, GDK_HAND2);
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
730 return TRUE;
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
731 }
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
732 return FALSE;
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
733 }
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
734
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
735 static gboolean
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
736 website_button_clicked_cb(GtkButton *button, GdkEventButton *event,
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
737 gpointer unused)
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
738 {
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
739 if (plugin_website_uri) {
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
740 purple_notify_uri(NULL, plugin_website_uri);
22788
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
741 return TRUE;
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
742 }
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
743 return FALSE;
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
744 }
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
745
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
746 static GtkWidget *
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
747 create_details()
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
748 {
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
749 GtkBox *vbox = GTK_BOX(gtk_vbox_new(FALSE, 3));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
750 GtkSizeGroup *sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
751 GtkWidget *label, *view, *website_button;
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
752
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
753 plugin_name = GTK_LABEL(gtk_label_new(NULL));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
754 gtk_misc_set_alignment(GTK_MISC(plugin_name), 0, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
755 gtk_label_set_line_wrap(plugin_name, FALSE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
756 gtk_label_set_selectable(plugin_name, TRUE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
757 gtk_box_pack_start(vbox, GTK_WIDGET(plugin_name), FALSE, FALSE, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
758
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
759 view = gtk_text_view_new();
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
760 plugin_desc = gtk_text_view_get_buffer(GTK_TEXT_VIEW(view));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
761 g_object_set(view, "wrap-mode", GTK_WRAP_WORD,
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
762 "editable", FALSE,
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
763 "left-margin", PIDGIN_HIG_CAT_SPACE,
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
764 "right-margin", PIDGIN_HIG_CAT_SPACE,
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
765 NULL);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
766 gtk_box_pack_start(vbox, view, TRUE, TRUE, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
767
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
768 plugin_error = GTK_LABEL(gtk_label_new(NULL));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
769 gtk_misc_set_alignment(GTK_MISC(plugin_error), 0, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
770 gtk_label_set_line_wrap(plugin_error, FALSE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
771 gtk_label_set_selectable(plugin_error, TRUE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
772 gtk_box_pack_start(vbox, GTK_WIDGET(plugin_error), FALSE, FALSE, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
773
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
774 plugin_author = GTK_LABEL(gtk_label_new(NULL));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
775 gtk_label_set_line_wrap(plugin_author, FALSE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
776 gtk_misc_set_alignment(GTK_MISC(plugin_author), 0, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
777 gtk_label_set_selectable(plugin_author, TRUE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
778 pidgin_add_widget_to_vbox(vbox, "", sg,
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
779 GTK_WIDGET(plugin_author), TRUE, &label);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
780 gtk_label_set_markup(GTK_LABEL(label), _("<b>Written by:</b>"));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
781 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
782
22788
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
783 website_button = gtk_event_box_new();
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
784 gtk_event_box_set_visible_window(GTK_EVENT_BOX(website_button), FALSE);
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
785
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
786 plugin_website = GTK_LABEL(gtk_label_new(NULL));
22788
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
787 g_object_set(G_OBJECT(plugin_website),
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
788 "ellipsize", PANGO_ELLIPSIZE_MIDDLE, NULL);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
789 gtk_misc_set_alignment(GTK_MISC(plugin_website), 0, 0);
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
790 gtk_container_add(GTK_CONTAINER(website_button),
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
791 GTK_WIDGET(plugin_website));
22788
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
792 g_signal_connect(website_button, "button-release-event",
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
793 G_CALLBACK(website_button_clicked_cb), NULL);
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
794 g_signal_connect(website_button, "enter-notify-event",
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
795 G_CALLBACK(website_button_motion_cb), NULL);
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
796 g_signal_connect(website_button, "leave-notify-event",
113ae3a1f584 Use an event-box instead of a button for the link, and change the cursor
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22785
diff changeset
797 G_CALLBACK(pidgin_clear_cursor), NULL);
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
798
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
799 pidgin_add_widget_to_vbox(vbox, "", sg, website_button, TRUE, &label);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
800 gtk_label_set_markup(GTK_LABEL(label), _("<b>Web site:</b>"));
22785
d712839ebf36 Make plugin website URLs clickable; it's a button with blue underlined text.
Will Thompson <resiak@pidgin.im>
parents: 22781
diff changeset
801 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
802
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
803 plugin_filename = GTK_LABEL(gtk_label_new(NULL));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
804 gtk_label_set_line_wrap(plugin_filename, FALSE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
805 gtk_misc_set_alignment(GTK_MISC(plugin_filename), 0, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
806 gtk_label_set_selectable(plugin_filename, TRUE);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
807 pidgin_add_widget_to_vbox(vbox, "", sg,
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
808 GTK_WIDGET(plugin_filename), TRUE, &label);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
809 gtk_label_set_markup(GTK_LABEL(label), _("<b>Filename:</b>"));
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
810 gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
811
23180
5d6a0a35837f applied changes from 97a20dd56598fa5c690eabcbc8ec3ff6e560aefd
Daniel Atallah <datallah@pidgin.im>
parents: 23100
diff changeset
812 g_object_unref(sg);
5d6a0a35837f applied changes from 97a20dd56598fa5c690eabcbc8ec3ff6e560aefd
Daniel Atallah <datallah@pidgin.im>
parents: 23100
diff changeset
813
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
814 return GTK_WIDGET(vbox);
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
815 }
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
816
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
817
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
818 void pidgin_plugin_dialog_show()
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
819 {
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
820 GtkWidget *event_view;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
821 GtkListStore *ls;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
822 GtkCellRenderer *rend, *rendt;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
823 GtkTreeViewColumn *col;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
824 GtkTreeSelection *sel;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
825
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
826 if (plugin_dialog != NULL) {
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
827 gtk_window_present(GTK_WINDOW(plugin_dialog));
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
828 return;
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
829 }
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
830
33168
f51e53d27b99 Fix a minor warning.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33161
diff changeset
831 plugin_dialog = gtk_dialog_new();
f51e53d27b99 Fix a minor warning.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33161
diff changeset
832 gtk_window_set_title(GTK_WINDOW(plugin_dialog), _("Plugins"));
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
833 pref_button = gtk_dialog_add_button(GTK_DIALOG(plugin_dialog),
15880
d275b025481c More Gaim to Pidgin changes
Sean Egan <seanegan@pidgin.im>
parents: 15692
diff changeset
834 _("Configure Pl_ugin"), PIDGIN_RESPONSE_CONFIGURE);
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
835 gtk_dialog_add_button(GTK_DIALOG(plugin_dialog),
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
836 GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
11813
5dcd1a562a5c [gaim-migrate @ 14104]
Kevin Stange <kstange@pidgin.im>
parents: 11794
diff changeset
837 gtk_widget_set_sensitive(pref_button, FALSE);
11747
f78febfc17c6 [gaim-migrate @ 14038]
Etan Reisner <deryni@pidgin.im>
parents: 11744
diff changeset
838 gtk_window_set_role(GTK_WINDOW(plugin_dialog), "plugins");
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
839
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
840 ls = gtk_list_store_new(4, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_POINTER, G_TYPE_BOOLEAN);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
841 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(ls),
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
842 1, GTK_SORT_ASCENDING);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
843
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
844 update_plugin_list(ls);
11813
5dcd1a562a5c [gaim-migrate @ 14104]
Kevin Stange <kstange@pidgin.im>
parents: 11794
diff changeset
845
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
846 event_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ls));
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
847
14359
afd4908b1c80 [gaim-migrate @ 16987]
Nathan Walp <nwalp@pidgin.im>
parents: 14253
diff changeset
848 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(event_view), TRUE);
afd4908b1c80 [gaim-migrate @ 16987]
Nathan Walp <nwalp@pidgin.im>
parents: 14253
diff changeset
849
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
850 g_signal_connect(G_OBJECT(event_view), "row-activated",
13718
f29249a2856c [gaim-migrate @ 16125]
Richard Laager <rlaager@pidgin.im>
parents: 13436
diff changeset
851 G_CALLBACK(show_plugin_prefs_cb), plugin_dialog);
12162
449845a545ab [gaim-migrate @ 14463]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 12066
diff changeset
852
15884
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
853 purple_signal_connect(purple_plugins_get_handle(), "plugin-load", plugin_dialog,
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
854 PURPLE_CALLBACK(plugin_load_cb), event_view);
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
855 purple_signal_connect(purple_plugins_get_handle(), "plugin-unload", plugin_dialog,
4de1981757fc sed -ie 's/gaim/purple/g'
Sean Egan <seanegan@pidgin.im>
parents: 15882
diff changeset
856 PURPLE_CALLBACK(plugin_unload_cb), event_view);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
857
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
858 rend = gtk_cell_renderer_toggle_new();
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
859 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (event_view));
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
860
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
861 col = gtk_tree_view_column_new_with_attributes (_("Enabled"),
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
862 rend,
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
863 "active", 0,
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
864 NULL);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
865 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col);
11794
6c39942d27a9 [gaim-migrate @ 14085]
Gary Kramlich <grim@reaperworld.com>
parents: 11783
diff changeset
866 gtk_tree_view_column_set_sort_column_id(col, 0);
12927
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
867 g_signal_connect(G_OBJECT(rend), "toggled",
f3e4ef8958a3 [gaim-migrate @ 15280]
Richard Laager <rlaager@pidgin.im>
parents: 12889
diff changeset
868 G_CALLBACK(plugin_toggled), ls);
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
869
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
870 rendt = gtk_cell_renderer_text_new();
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
871 g_object_set(rendt,
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
872 "foreground", "#c0c0c0",
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
873 NULL);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
874 col = gtk_tree_view_column_new_with_attributes (_("Name"),
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
875 rendt,
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
876 "markup", 1,
12695
0c93a42b7ee2 [gaim-migrate @ 15038]
Richard Laager <rlaager@pidgin.im>
parents: 12600
diff changeset
877 "foreground-set", 3,
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
878 NULL);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
879 gtk_tree_view_column_set_expand (col, TRUE);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
880 g_object_set(rendt, "ellipsize", PANGO_ELLIPSIZE_END, NULL);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
881 gtk_tree_view_append_column (GTK_TREE_VIEW(event_view), col);
11794
6c39942d27a9 [gaim-migrate @ 14085]
Gary Kramlich <grim@reaperworld.com>
parents: 11783
diff changeset
882 gtk_tree_view_column_set_sort_column_id(col, 1);
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
883 g_object_unref(G_OBJECT(ls));
33158
ad941796372e Remove some added trailing spaces.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33133
diff changeset
884 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(plugin_dialog))),
31321
1fef3832cfa2 Add pidgin_make_scrollable and use it. Cleans up a bunch of duplicate code. Net code loss of 180 lines. Fixes #13073.
Gabriel Schulhof <nix@go-nix.ca>
parents: 30785
diff changeset
885 pidgin_make_scrollable(event_view, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC, GTK_SHADOW_IN, -1, -1),
1fef3832cfa2 Add pidgin_make_scrollable and use it. Cleans up a bunch of duplicate code. Net code loss of 180 lines. Fixes #13073.
Gabriel Schulhof <nix@go-nix.ca>
parents: 30785
diff changeset
886 TRUE, TRUE, 0);
15177
8b6c66e09388 [gaim-migrate @ 17901]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14359
diff changeset
887 gtk_tree_view_set_search_column(GTK_TREE_VIEW(event_view), 1);
8b6c66e09388 [gaim-migrate @ 17901]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 14359
diff changeset
888 gtk_tree_view_set_search_equal_func(GTK_TREE_VIEW(event_view),
15562
8c8249fe5e3c gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents: 15435
diff changeset
889 pidgin_tree_view_search_equal_func, NULL, NULL);
12246
7af1ef3b1cc4 [gaim-migrate @ 14548]
Mark Doliner <markdoliner@pidgin.im>
parents: 12240
diff changeset
890
22065
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
891 pidgin_tooltip_setup_for_treeview(event_view, event_view,
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
892 pidgin_plugins_create_tooltip,
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
893 pidgin_plugins_paint_tooltip);
4bfdea9613d1 Add tooltips to the plugin window. I did it mostly to test the new tooltip
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 21352
diff changeset
894
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
895
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
896 expander = gtk_expander_new(_("<b>Plugin Details</b>"));
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
897 gtk_expander_set_use_markup(GTK_EXPANDER(expander), TRUE);
12343
0ede7c5a9465 [gaim-migrate @ 14647]
Mark Doliner <markdoliner@pidgin.im>
parents: 12290
diff changeset
898 gtk_widget_set_sensitive(expander, FALSE);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
899 gtk_container_add(GTK_CONTAINER(expander), create_details());
33133
9a31f084f259 Fix some merge errors.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 32438
diff changeset
900 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(plugin_dialog))),
33170
ce4447562d64 Add checks for old GTK+2 stuff.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 33168
diff changeset
901 expander, FALSE, FALSE, 0);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
902
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
903
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
904 g_signal_connect (G_OBJECT (sel), "changed", G_CALLBACK (prefs_plugin_sel), NULL);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
905 g_signal_connect(G_OBJECT(plugin_dialog), "response", G_CALLBACK(plugin_dialog_response_cb), sel);
22781
c85c7a3609dc Improve the layout of the plugin description pane.
Will Thompson <resiak@pidgin.im>
parents: 22608
diff changeset
906 gtk_window_set_default_size(GTK_WINDOW(plugin_dialog), 430, 530);
30760
7b0121a454cd Auto-parent the Plugins dialog.
Gabriel Schulhof <nix@go-nix.ca>
parents: 29500
diff changeset
907
30785
9c4ea3886ce5 Remove an unnecessary cast. Get's rid of this compile warning:
Mark Doliner <markdoliner@pidgin.im>
parents: 30760
diff changeset
908 pidgin_auto_parent_window(plugin_dialog);
30760
7b0121a454cd Auto-parent the Plugins dialog.
Gabriel Schulhof <nix@go-nix.ca>
parents: 29500
diff changeset
909
11740
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
910 gtk_widget_show_all(plugin_dialog);
2b605228ec11 [gaim-migrate @ 14031]
Sean Egan <seanegan@pidgin.im>
parents: 9791
diff changeset
911 }

mercurial