f246acfb3c
* src/Makefile.am * src/crash.c * src/export.c * src/filesel.[ch] ** REMOVE ** * src/folder.c * src/main.[ch] * src/common/sylpheed.[ch] * src/gtk/Makefile.am * src/gtk/filesel.[ch] ** NEW ** * src/gtk/pluginwindow.c * src/gtk/sslcertwindow.c move filesel.[ch] to gtk directory
255 lines
7.9 KiB
C
255 lines
7.9 KiB
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 1999-2002 Hiroyuki Yamamoto and the Sylpheed-Claws Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "intl.h"
|
|
#include "plugin.h"
|
|
|
|
#include "filesel.h"
|
|
#include "alertpanel.h"
|
|
|
|
typedef struct _PluginWindow
|
|
{
|
|
GtkWidget *window;
|
|
GtkWidget *plugin_list;
|
|
GtkWidget *plugin_desc;
|
|
GtkWidget *unload_btn;
|
|
|
|
Plugin *selected_plugin;
|
|
} PluginWindow;
|
|
|
|
static void close_cb(GtkButton *button, PluginWindow *pluginwindow)
|
|
{
|
|
gtk_widget_destroy(pluginwindow->window);
|
|
g_free(pluginwindow);
|
|
plugin_save_list();
|
|
}
|
|
|
|
static void set_plugin_list(PluginWindow *pluginwindow)
|
|
{
|
|
GSList *plugins, *cur;
|
|
gchar *text[1];
|
|
gint row;
|
|
GtkCList *clist = GTK_CLIST(pluginwindow->plugin_list);
|
|
|
|
plugins = plugin_get_list();
|
|
gtk_clist_freeze(clist);
|
|
gtk_clist_clear(clist);
|
|
gtk_editable_delete_text(GTK_EDITABLE(pluginwindow->plugin_desc), 0, -1);
|
|
gtk_widget_set_sensitive(pluginwindow->unload_btn, FALSE);
|
|
|
|
for(cur = plugins; cur != NULL; cur = g_slist_next(cur)) {
|
|
Plugin *plugin = (Plugin *) cur->data;
|
|
|
|
text[0] = (gchar *) plugin_get_name(plugin);
|
|
row = gtk_clist_append(clist, text);
|
|
gtk_clist_set_row_data(clist, row, plugin);
|
|
}
|
|
gtk_clist_thaw(clist);
|
|
}
|
|
|
|
static void select_row_cb(GtkCList *clist, gint row, gint column,
|
|
GdkEventButton *event, PluginWindow *pluginwindow)
|
|
{
|
|
Plugin *plugin;
|
|
GtkEditable *plugin_desc = GTK_EDITABLE(pluginwindow->plugin_desc);
|
|
const gchar *text;
|
|
gint pos = 0;
|
|
|
|
plugin = (Plugin *) gtk_clist_get_row_data(clist, row);
|
|
pluginwindow->selected_plugin = plugin;
|
|
|
|
if (pluginwindow->selected_plugin != NULL) {
|
|
gtk_editable_delete_text(plugin_desc, 0, -1);
|
|
text = plugin_get_desc(plugin);
|
|
gtk_editable_insert_text(plugin_desc, text, strlen(text), &pos);
|
|
gtk_widget_set_sensitive(pluginwindow->unload_btn, TRUE);
|
|
} else {
|
|
gtk_widget_set_sensitive(pluginwindow->unload_btn, FALSE);
|
|
}
|
|
}
|
|
|
|
static void unselect_row_cb(GtkCList * clist, gint row, gint column,
|
|
GdkEventButton * event, PluginWindow *pluginwindow)
|
|
{
|
|
gtk_widget_set_sensitive(pluginwindow->unload_btn, FALSE);
|
|
}
|
|
|
|
static void unload_cb(GtkButton *button, PluginWindow *pluginwindow)
|
|
{
|
|
Plugin *plugin = pluginwindow->selected_plugin;
|
|
|
|
g_return_if_fail(plugin != NULL);
|
|
plugin_unload(plugin);
|
|
set_plugin_list(pluginwindow);
|
|
}
|
|
|
|
static void load_cb(GtkButton *button, PluginWindow *pluginwindow)
|
|
{
|
|
gchar *file, *error = NULL;
|
|
|
|
file = filesel_select_file(_("Select Plugin to load"), "");
|
|
if (file == NULL)
|
|
return;
|
|
|
|
plugin_load(file, &error);
|
|
if (error != NULL) {
|
|
alertpanel_error("The following error occured while loading the plugin:\n%s\n", error);
|
|
g_free(error);
|
|
}
|
|
|
|
set_plugin_list(pluginwindow);
|
|
}
|
|
|
|
void pluginwindow_create()
|
|
{
|
|
PluginWindow *pluginwindow;
|
|
/* ---------------------- code made by glade ---------------------- */
|
|
GtkWidget *window;
|
|
GtkWidget *vbox1;
|
|
GtkWidget *hbox2;
|
|
GtkWidget *scrolledwindow2;
|
|
GtkWidget *plugin_list;
|
|
GtkWidget *label12;
|
|
GtkWidget *vbox2;
|
|
GtkWidget *frame2;
|
|
GtkWidget *label13;
|
|
GtkWidget *scrolledwindow3;
|
|
GtkWidget *plugin_desc;
|
|
GtkWidget *hbuttonbox1;
|
|
GtkWidget *load_btn;
|
|
GtkWidget *unload_btn;
|
|
GtkWidget *close_btn;
|
|
|
|
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
|
gtk_container_set_border_width(GTK_CONTAINER(window), 8);
|
|
gtk_window_set_default_size(GTK_WINDOW(window), 480, 300);
|
|
gtk_window_set_title(GTK_WINDOW(window), _("Plugins"));
|
|
gtk_window_set_position(GTK_WINDOW(window),
|
|
GTK_WIN_POS_CENTER);
|
|
gtk_window_set_modal(GTK_WINDOW(window), TRUE);
|
|
|
|
vbox1 = gtk_vbox_new(FALSE, 4);
|
|
gtk_widget_show(vbox1);
|
|
gtk_container_add(GTK_CONTAINER(window), vbox1);
|
|
|
|
hbox2 = gtk_hbox_new(FALSE, 8);
|
|
gtk_widget_show(hbox2);
|
|
gtk_box_pack_start(GTK_BOX(vbox1), hbox2, TRUE, TRUE, 0);
|
|
|
|
scrolledwindow2 = gtk_scrolled_window_new(NULL, NULL);
|
|
gtk_widget_show(scrolledwindow2);
|
|
gtk_box_pack_start(GTK_BOX(hbox2), scrolledwindow2, TRUE, TRUE, 0);
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW
|
|
(scrolledwindow2), GTK_POLICY_NEVER,
|
|
GTK_POLICY_ALWAYS);
|
|
|
|
plugin_list = gtk_clist_new(1);
|
|
gtk_widget_show(plugin_list);
|
|
gtk_container_add(GTK_CONTAINER(scrolledwindow2), plugin_list);
|
|
gtk_clist_set_column_width(GTK_CLIST(plugin_list), 0, 80);
|
|
gtk_clist_column_titles_show(GTK_CLIST(plugin_list));
|
|
|
|
label12 = gtk_label_new(_("Plugins"));
|
|
gtk_widget_show(label12);
|
|
gtk_clist_set_column_widget(GTK_CLIST(plugin_list), 0, label12);
|
|
gtk_label_set_justify(GTK_LABEL(label12), GTK_JUSTIFY_LEFT);
|
|
gtk_misc_set_alignment(GTK_MISC(label12), 0, 0.5);
|
|
|
|
vbox2 = gtk_vbox_new(FALSE, 0);
|
|
gtk_widget_show(vbox2);
|
|
gtk_box_pack_start(GTK_BOX(hbox2), vbox2, TRUE, TRUE, 0);
|
|
|
|
frame2 = gtk_frame_new(NULL);
|
|
gtk_widget_show(frame2);
|
|
gtk_box_pack_start(GTK_BOX(vbox2), frame2, FALSE, TRUE, 0);
|
|
|
|
label13 = gtk_label_new(_("Description"));
|
|
gtk_widget_show(label13);
|
|
gtk_container_add(GTK_CONTAINER(frame2), label13);
|
|
gtk_misc_set_alignment(GTK_MISC(label13), 0, 0.5);
|
|
gtk_misc_set_padding(GTK_MISC(label13), 2, 2);
|
|
|
|
scrolledwindow3 = gtk_scrolled_window_new(NULL, NULL);
|
|
gtk_widget_show(scrolledwindow3);
|
|
gtk_box_pack_start(GTK_BOX(vbox2), scrolledwindow3, TRUE, TRUE, 0);
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW
|
|
(scrolledwindow3), GTK_POLICY_NEVER,
|
|
GTK_POLICY_ALWAYS);
|
|
|
|
plugin_desc = gtk_text_new(NULL, NULL);
|
|
gtk_widget_show(plugin_desc);
|
|
gtk_container_add(GTK_CONTAINER(scrolledwindow3), plugin_desc);
|
|
|
|
hbuttonbox1 = gtk_hbutton_box_new();
|
|
gtk_widget_show(hbuttonbox1);
|
|
gtk_box_pack_start(GTK_BOX(vbox1), hbuttonbox1, FALSE, FALSE, 0);
|
|
gtk_button_box_set_layout(GTK_BUTTON_BOX(hbuttonbox1),
|
|
GTK_BUTTONBOX_END);
|
|
gtk_button_box_set_spacing(GTK_BUTTON_BOX(hbuttonbox1), 0);
|
|
|
|
load_btn = gtk_button_new_with_label(_("Load Plugin"));
|
|
gtk_widget_show(load_btn);
|
|
gtk_container_add(GTK_CONTAINER(hbuttonbox1), load_btn);
|
|
GTK_WIDGET_SET_FLAGS(load_btn, GTK_CAN_DEFAULT);
|
|
|
|
unload_btn = gtk_button_new_with_label(_("Unload Plugin"));
|
|
gtk_widget_show(unload_btn);
|
|
gtk_container_add(GTK_CONTAINER(hbuttonbox1), unload_btn);
|
|
GTK_WIDGET_SET_FLAGS(unload_btn, GTK_CAN_DEFAULT);
|
|
|
|
close_btn = gtk_button_new_with_label(_("Close"));
|
|
gtk_widget_show(close_btn);
|
|
gtk_container_add(GTK_CONTAINER(hbuttonbox1), close_btn);
|
|
GTK_WIDGET_SET_FLAGS(close_btn, GTK_CAN_DEFAULT);
|
|
/* ----------------------------------------------------------- */
|
|
|
|
gtk_text_set_word_wrap(GTK_TEXT(plugin_desc), TRUE);
|
|
gtk_widget_set_sensitive(GTK_WIDGET(unload_btn), FALSE);
|
|
|
|
pluginwindow = g_new0(PluginWindow, 1);
|
|
|
|
gtk_signal_connect(GTK_OBJECT(load_btn), "released",
|
|
GTK_SIGNAL_FUNC(load_cb), pluginwindow);
|
|
gtk_signal_connect(GTK_OBJECT(unload_btn), "released",
|
|
GTK_SIGNAL_FUNC(unload_cb), pluginwindow);
|
|
gtk_signal_connect(GTK_OBJECT(close_btn), "released",
|
|
GTK_SIGNAL_FUNC(close_cb), pluginwindow);
|
|
gtk_signal_connect(GTK_OBJECT(plugin_list), "select-row",
|
|
GTK_SIGNAL_FUNC(select_row_cb), pluginwindow);
|
|
gtk_signal_connect(GTK_OBJECT(plugin_list), "unselect-row",
|
|
GTK_SIGNAL_FUNC(unselect_row_cb), pluginwindow);
|
|
|
|
pluginwindow->window = window;
|
|
pluginwindow->plugin_list = plugin_list;
|
|
pluginwindow->plugin_desc = plugin_desc;
|
|
pluginwindow->unload_btn = unload_btn;
|
|
pluginwindow->selected_plugin = NULL;
|
|
|
|
set_plugin_list(pluginwindow);
|
|
|
|
gtk_widget_show(window);
|
|
}
|