2011-02-23 22:14:30 -05:00
|
|
|
/* X-Chat
|
|
|
|
* Copyright (C) 1998 Peter Zelezny.
|
|
|
|
*
|
|
|
|
* 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
|
2012-12-23 14:36:54 -05:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2011-02-23 22:14:30 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "fe-gtk.h"
|
|
|
|
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "../common/hexchat.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#define PLUGIN_C
|
2012-10-30 03:42:48 -04:00
|
|
|
typedef struct session hexchat_context;
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "../common/hexchat-plugin.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#include "../common/plugin.h"
|
|
|
|
#include "../common/util.h"
|
|
|
|
#include "../common/outbound.h"
|
|
|
|
#include "../common/fe.h"
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "../common/hexchatc.h"
|
2012-07-21 15:42:48 -04:00
|
|
|
#include "../common/cfgfiles.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#include "gtkutil.h"
|
2012-11-30 11:59:42 -05:00
|
|
|
#include "maingui.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
/* model for the plugin treeview */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
NAME_COLUMN,
|
|
|
|
VERSION_COLUMN,
|
|
|
|
FILE_COLUMN,
|
|
|
|
DESC_COLUMN,
|
|
|
|
N_COLUMNS
|
|
|
|
};
|
|
|
|
|
|
|
|
static GtkWidget *plugin_window = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
plugingui_treeview_new (GtkWidget *box)
|
|
|
|
{
|
|
|
|
GtkListStore *store;
|
|
|
|
GtkWidget *view;
|
|
|
|
GtkTreeViewColumn *col;
|
|
|
|
int col_id;
|
|
|
|
|
|
|
|
store = gtk_list_store_new (N_COLUMNS, G_TYPE_STRING, G_TYPE_STRING,
|
|
|
|
G_TYPE_STRING, G_TYPE_STRING);
|
|
|
|
g_return_val_if_fail (store != NULL, NULL);
|
|
|
|
view = gtkutil_treeview_new (box, GTK_TREE_MODEL (store), NULL,
|
|
|
|
NAME_COLUMN, _("Name"),
|
|
|
|
VERSION_COLUMN, _("Version"),
|
|
|
|
FILE_COLUMN, _("File"),
|
|
|
|
DESC_COLUMN, _("Description"), -1);
|
|
|
|
gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (view), TRUE);
|
|
|
|
for (col_id=0; (col = gtk_tree_view_get_column (GTK_TREE_VIEW (view), col_id));
|
|
|
|
col_id++)
|
|
|
|
gtk_tree_view_column_set_alignment (col, 0.5);
|
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
2013-08-04 04:36:10 -04:00
|
|
|
static char *
|
|
|
|
plugingui_getfilename (GtkTreeView *view)
|
|
|
|
{
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GtkTreeSelection *sel;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GValue file;
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
memset (&file, 0, sizeof (file));
|
|
|
|
|
|
|
|
sel = gtk_tree_view_get_selection (view);
|
|
|
|
if (gtk_tree_selection_get_selected (sel, &model, &iter))
|
|
|
|
{
|
|
|
|
gtk_tree_model_get_value (model, &iter, FILE_COLUMN, &file);
|
|
|
|
|
|
|
|
str = g_value_dup_string (&file);
|
|
|
|
g_value_unset (&file);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
static void
|
|
|
|
plugingui_close (GtkWidget * wid, gpointer a)
|
|
|
|
{
|
|
|
|
plugin_window = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern GSList *plugin_list;
|
|
|
|
|
|
|
|
void
|
|
|
|
fe_pluginlist_update (void)
|
|
|
|
{
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_plugin *pl;
|
2011-02-23 22:14:30 -05:00
|
|
|
GSList *list;
|
|
|
|
GtkTreeView *view;
|
|
|
|
GtkListStore *store;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
|
|
|
if (!plugin_window)
|
|
|
|
return;
|
|
|
|
|
|
|
|
view = g_object_get_data (G_OBJECT (plugin_window), "view");
|
|
|
|
store = GTK_LIST_STORE (gtk_tree_view_get_model (view));
|
|
|
|
gtk_list_store_clear (store);
|
|
|
|
|
|
|
|
list = plugin_list;
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
pl = list->data;
|
|
|
|
if (pl->version[0] != 0)
|
|
|
|
{
|
|
|
|
gtk_list_store_append (store, &iter);
|
|
|
|
gtk_list_store_set (store, &iter, NAME_COLUMN, pl->name,
|
|
|
|
VERSION_COLUMN, pl->version,
|
|
|
|
FILE_COLUMN, file_part (pl->filename),
|
|
|
|
DESC_COLUMN, pl->desc, -1);
|
|
|
|
}
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
plugingui_load_cb (session *sess, char *file)
|
|
|
|
{
|
|
|
|
if (file)
|
|
|
|
{
|
|
|
|
char *buf = malloc (strlen (file) + 9);
|
|
|
|
|
|
|
|
if (strchr (file, ' '))
|
|
|
|
sprintf (buf, "LOAD \"%s\"", file);
|
|
|
|
else
|
|
|
|
sprintf (buf, "LOAD %s", file);
|
|
|
|
handle_command (sess, buf, FALSE);
|
|
|
|
free (buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
plugingui_load (void)
|
|
|
|
{
|
2012-07-26 14:53:59 -04:00
|
|
|
char *sub_dir;
|
|
|
|
|
2013-05-04 12:21:48 -04:00
|
|
|
sub_dir = g_build_filename (get_xdir(), "addons", NULL);
|
2012-07-26 14:53:59 -04:00
|
|
|
|
2011-12-11 11:34:02 -05:00
|
|
|
gtkutil_file_req (_("Select a Plugin or Script to load"), plugingui_load_cb, current_sess,
|
2012-07-21 15:42:48 -04:00
|
|
|
#ifdef WIN32
|
2013-08-30 20:19:10 -04:00
|
|
|
sub_dir, "*.dll;*.lua;*.pl;*.py;*.tcl;*.js", FRF_FILTERISINITIAL|FRF_EXTENSIONS);
|
2012-07-21 15:42:48 -04:00
|
|
|
#else
|
2013-08-30 20:19:10 -04:00
|
|
|
sub_dir, "*.so;*.lua;*.pl;*.py;*.tcl;*.js", FRF_FILTERISINITIAL|FRF_EXTENSIONS);
|
2012-07-21 15:42:48 -04:00
|
|
|
#endif
|
2012-07-26 14:53:59 -04:00
|
|
|
|
2012-11-03 13:24:25 -04:00
|
|
|
g_free (sub_dir);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
plugingui_loadbutton_cb (GtkWidget * wid, gpointer unused)
|
|
|
|
{
|
|
|
|
plugingui_load ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
plugingui_unload (GtkWidget * wid, gpointer unused)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *modname, *file, *buf;
|
|
|
|
GtkTreeView *view;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
|
|
|
view = g_object_get_data (G_OBJECT (plugin_window), "view");
|
|
|
|
if (!gtkutil_treeview_get_selected (view, &iter, NAME_COLUMN, &modname,
|
|
|
|
FILE_COLUMN, &file, -1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
len = strlen (file);
|
|
|
|
#ifdef WIN32
|
2012-06-16 07:01:47 -04:00
|
|
|
if (len > 4 && g_ascii_strcasecmp (file + len - 4, ".dll") == 0)
|
2011-02-23 22:14:30 -05:00
|
|
|
#else
|
|
|
|
#if defined(__hpux)
|
2012-06-16 07:01:47 -04:00
|
|
|
if (len > 3 && g_ascii_strcasecmp (file + len - 3, ".sl") == 0)
|
2011-02-23 22:14:30 -05:00
|
|
|
#else
|
2012-06-16 07:01:47 -04:00
|
|
|
if (len > 3 && g_ascii_strcasecmp (file + len - 3, ".so") == 0)
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (plugin_kill (modname, FALSE) == 2)
|
|
|
|
fe_message (_("That plugin is refusing to unload.\n"), FE_MSG_ERROR);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
/* let python.so or perl.so handle it */
|
|
|
|
buf = malloc (strlen (file) + 10);
|
|
|
|
if (strchr (file, ' '))
|
|
|
|
sprintf (buf, "UNLOAD \"%s\"", file);
|
|
|
|
else
|
|
|
|
sprintf (buf, "UNLOAD %s", file);
|
|
|
|
handle_command (current_sess, buf, FALSE);
|
|
|
|
free (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (modname);
|
|
|
|
g_free (file);
|
|
|
|
}
|
|
|
|
|
2013-08-04 04:36:10 -04:00
|
|
|
static void
|
|
|
|
plugingui_reloadbutton_cb (GtkWidget *wid, GtkTreeView *view)
|
|
|
|
{
|
|
|
|
char *file = plugingui_getfilename(view);
|
|
|
|
|
|
|
|
if (file)
|
|
|
|
{
|
|
|
|
char *buf = malloc (strlen (file) + 9);
|
|
|
|
|
|
|
|
if (strchr (file, ' '))
|
|
|
|
sprintf (buf, "RELOAD \"%s\"", file);
|
|
|
|
else
|
|
|
|
sprintf (buf, "RELOAD %s", file);
|
|
|
|
handle_command (current_sess, buf, FALSE);
|
|
|
|
free (buf);
|
|
|
|
g_free (file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
void
|
|
|
|
plugingui_open (void)
|
|
|
|
{
|
|
|
|
GtkWidget *view;
|
2012-11-30 11:59:42 -05:00
|
|
|
GtkWidget *vbox, *hbox;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
if (plugin_window)
|
|
|
|
{
|
2012-11-30 11:59:42 -05:00
|
|
|
mg_bring_tofront (plugin_window);
|
2011-02-23 22:14:30 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-30 11:59:42 -05:00
|
|
|
plugin_window = mg_create_generic_tab ("Addons", _(DISPLAY_NAME": Plugins and Scripts"),
|
|
|
|
FALSE, TRUE, plugingui_close, NULL,
|
|
|
|
500, 250, &vbox, 0);
|
2013-03-17 18:11:23 -04:00
|
|
|
gtkutil_destroy_on_esc (plugin_window);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
view = plugingui_treeview_new (vbox);
|
|
|
|
g_object_set_data (G_OBJECT (plugin_window), "view", view);
|
|
|
|
|
2012-11-30 11:59:42 -05:00
|
|
|
|
|
|
|
hbox = gtk_hbutton_box_new ();
|
|
|
|
gtk_button_box_set_layout (GTK_BUTTON_BOX (hbox), GTK_BUTTONBOX_SPREAD);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (hbox), 5);
|
|
|
|
gtk_box_pack_end (GTK_BOX (vbox), hbox, 0, 0, 0);
|
|
|
|
|
|
|
|
gtkutil_button (hbox, GTK_STOCK_REVERT_TO_SAVED, NULL,
|
2011-02-23 22:14:30 -05:00
|
|
|
plugingui_loadbutton_cb, NULL, _("_Load..."));
|
|
|
|
|
2012-11-30 11:59:42 -05:00
|
|
|
gtkutil_button (hbox, GTK_STOCK_DELETE, NULL,
|
2013-08-04 04:53:40 -04:00
|
|
|
plugingui_unload, NULL, _("_Unload"));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2013-08-04 04:53:40 -04:00
|
|
|
gtkutil_button (hbox, GTK_STOCK_REFRESH, NULL,
|
|
|
|
plugingui_reloadbutton_cb, view, _("_Reload"));
|
2013-08-04 04:36:10 -04:00
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
fe_pluginlist_update ();
|
|
|
|
|
2012-11-30 11:59:42 -05:00
|
|
|
gtk_widget_show_all (plugin_window);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|