/* 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 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include #include "fe-gtk.h" #include "../common/hexchat.h" #include "../common/ignore.h" #include "../common/cfgfiles.h" #include "../common/fe.h" #include "gtkutil.h" #include "maingui.h" enum { MASK_COLUMN, CHAN_COLUMN, PRIV_COLUMN, NOTICE_COLUMN, CTCP_COLUMN, DCC_COLUMN, INVITE_COLUMN, UNIGNORE_COLUMN, N_COLUMNS }; static GtkWidget *ignorewin = 0; static GtkWidget *num_ctcp; static GtkWidget *num_priv; static GtkWidget *num_chan; static GtkWidget *num_noti; static GtkWidget *num_invi; static GtkTreeModel * get_store (void) { return gtk_tree_view_get_model (g_object_get_data (G_OBJECT (ignorewin), "view")); } static int ignore_get_flags (GtkTreeModel *model, GtkTreeIter *iter) { gboolean chan, priv, noti, ctcp, dcc, invi, unig; int flags = 0; gtk_tree_model_get (model, iter, 1, &chan, 2, &priv, 3, ¬i, 4, &ctcp, 5, &dcc, 6, &invi, 7, &unig, -1); if (chan) flags |= IG_CHAN; if (priv) flags |= IG_PRIV; if (noti) flags |= IG_NOTI; if (ctcp) flags |= IG_CTCP; if (dcc) flags |= IG_DCC; if (invi) flags |= IG_INVI; if (unig) flags |= IG_UNIG; return flags; } static void mask_edited (GtkCellRendererText *render, gchar *path, gchar *new, gpointer dat) { GtkListStore *store = GTK_LIST_STORE (get_store ()); GtkTreeIter iter; char *old; int flags; gtkutil_treemodel_string_to_iter (GTK_TREE_MODEL (store), path, &iter); gtk_tree_model_get (GTK_TREE_MODEL (store), &iter, 0, &old, -1); if (!strcmp (old, new)) /* no change */ ; else if (ignore_exists (new)) /* duplicate, ignore */ fe_message (_("That mask already exists."), FE_MSG_ERROR); else { /* delete old mask, and add new one with original flags */ ignore_del (old, NULL); flags = ignore_get_flags (GTK_TREE_MODEL (store), &iter); ignore_add (new, flags); /* update tree */ gtk_list_store_set (store, &iter, MASK_COLUMN, new, -1); } g_free (old); } static void option_toggled (GtkCellRendererToggle *render, gchar *path, gpointer data) { GtkListStore *store = GTK_LIST_STORE (get_store ()); GtkTreeIter iter; int col_id = GPOINTER_TO_INT (data); gboolean active; char *mask; int flags; gtkutil_treemodel_string_to_iter (GTK_TREE_MODEL (store), path, &iter); /* update model */ gtk_tree_model_get (GTK_TREE_MODEL (store), &iter, col_id, &active, -1); gtk_list_store_set (store, &iter, col_id, !active, -1); /* update ignore list */ gtk_tree_model_get (GTK_TREE_MODEL (store), &iter, 0, &mask, -1); flags = ignore_get_flags (GTK_TREE_MODEL (store), &iter); if (ignore_add (mask, flags) != 2) g_warning ("ignore treeview is out of sync!\n"); g_free (mask); } static GtkWidget * ignore_treeview_new (GtkWidget *box) { GtkListStore *store; GtkWidget *view; GtkTreeViewColumn *col; GtkCellRenderer *render; int col_id; store = gtk_list_store_new (N_COLUMNS, G_TYPE_STRING, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN); g_return_val_if_fail (store != NULL, NULL);
size_t strlcat(char *dst, const char *src, size_t siz);
size_t strlcpy(char *dst, const char *src, size_t siz);
gtkutil_button (box, GTK_STOCK_CLEAR, 0, ignore_clear_entry_clicked, 0, _("Clear")); store = GTK_LIST_STORE (gtk_tree_view_get_model (GTK_TREE_VIEW (view))); while (temp) { struct ignore *ignore = temp->data; mask = ignore->mask; chan = (ignore->type & IG_CHAN); private = (ignore->type & IG_PRIV); notice = (ignore->type & IG_NOTI); ctcp = (ignore->type & IG_CTCP); dcc = (ignore->type & IG_DCC); invite = (ignore->type & IG_INVI); unignore = (ignore->type & IG_UNIG); gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, MASK_COLUMN, mask, CHAN_COLUMN, chan, PRIV_COLUMN, private, NOTICE_COLUMN, notice, CTCP_COLUMN, ctcp, DCC_COLUMN, dcc, INVITE_COLUMN, invite, UNIGNORE_COLUMN, unignore, -1); temp = temp->next; } gtk_widget_show (ignorewin); } void fe_ignore_update (int level) { /* some ignores have changed via /ignore, we should update the gui now */ /* level 1 = the list only. */ /* level 2 = the numbers only. */ /* for now, ignore level 1, since the ignore GUI isn't realtime, only saved when you click OK */ char buf[16]; if (level == 2 && ignorewin) { sprintf (buf, "%d", ignored_ctcp); gtk_entry_set_text (GTK_ENTRY (num_ctcp), buf); sprintf (buf, "%d", ignored_noti); gtk_entry_set_text (GTK_ENTRY (num_noti), buf); sprintf (buf, "%d", ignored_chan); gtk_entry_set_text (GTK_ENTRY (num_chan), buf); sprintf (buf, "%d", ignored_invi); gtk_entry_set_text (GTK_ENTRY (num_invi), buf); sprintf (buf, "%d", ignored_priv); gtk_entry_set_text (GTK_ENTRY (num_priv), buf); } }