aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPriit Laes <plaes@plaes.org>2009-07-29 02:59:19 +0800
committerPriit Laes <plaes@plaes.org>2009-07-29 17:42:14 +0800
commit689820485d8060c85760cd54d8b370f4e108d6dd (patch)
treeed13d024dfce29d29d1bab1f54efa925e49bc550 /src
parenta75e0d2fc04d9f599edccf572afe78f2e48e2e44 (diff)
downloadgsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.tar
gsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.tar.gz
gsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.tar.bz2
gsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.tar.lz
gsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.tar.xz
gsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.tar.zst
gsoc2013-epiphany-689820485d8060c85760cd54d8b370f4e108d6dd.zip
Password removal is now async :)
Signed-off-by: Priit Laes <plaes@plaes.org>
Diffstat (limited to 'src')
-rw-r--r--src/pdm-dialog.c104
1 files changed, 62 insertions, 42 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index 575aab9fd..cb8849997 100644
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -57,7 +57,7 @@ struct PdmActionInfo
void (* fill) (PdmActionInfo *info);
void (* add) (PdmActionInfo *info,
gpointer data);
- gboolean (* remove) (PdmActionInfo *info,
+ void (* remove) (PdmActionInfo *info,
gpointer data);
void (* scroll_to) (PdmActionInfo *info);
@@ -141,7 +141,7 @@ EphyDialogProperty properties [] =
static void pdm_dialog_class_init (PdmDialogClass *klass);
static void pdm_dialog_init (PdmDialog *dialog);
static void pdm_dialog_finalize (GObject *object);
-static gboolean pdm_dialog_password_remove (PdmActionInfo *info, gpointer data);
+static void pdm_dialog_password_remove (PdmActionInfo *info, gpointer data);
G_DEFINE_TYPE (PdmDialog, pdm_dialog, EPHY_TYPE_DIALOG)
@@ -216,8 +216,8 @@ clear_all_cookies (SoupCookieJar *jar)
}
static void
-clear_all_passwords_async_cb (GnomeKeyringResult result,
- gpointer data)
+pdm_dialog_password_remove_cb (GnomeKeyringResult result,
+ gpointer data)
{
GtkTreeRowReference *rowref = (GtkTreeRowReference *)data;
@@ -259,11 +259,10 @@ clear_all_passwords (GtkTreeModel *model,
gnome_keyring_item_delete (GNOME_KEYRING_DEFAULT,
info->keyring_id,
- (GnomeKeyringOperationDoneCallback) clear_all_passwords_async_cb,
+ (GnomeKeyringOperationDoneCallback) pdm_dialog_password_remove_cb,
row,
(GDestroyNotify) gtk_tree_row_reference_free);
g_value_unset (&val);
-
return FALSE;
}
@@ -542,30 +541,8 @@ pdm_cmd_delete_selection (PdmActionInfo *action)
gtk_tree_path_free (path);
/* Removal */
-
for (r = rlist; r != NULL; r = r->next)
- {
- GValue val = { 0, };
- gboolean remove;
-
- path = gtk_tree_row_reference_get_path
- ((GtkTreeRowReference *)r->data);
-
- gtk_tree_model_get_iter (model, &iter, path);
- gtk_tree_model_get_value (model, &iter, action->data_col, &val);
- remove = action->remove (action, g_value_get_boxed (&val));
- g_value_unset (&val);
-
- /*
- * Remove the item:
- * cookies are deleted using callback, passwords right here
- */
- if (remove)
- gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
-
- gtk_tree_row_reference_free ((GtkTreeRowReference *)r->data);
- gtk_tree_path_free (path);
- }
+ action->remove (action, (GtkTreeRowReference *)r->data);
g_list_foreach (llist, (GFunc)gtk_tree_path_free, NULL);
g_list_free (llist);
@@ -1132,17 +1109,39 @@ pdm_dialog_cookie_add (PdmActionInfo *info,
g_value_unset (&value[3]);
}
-static gboolean
+static void
pdm_dialog_cookie_remove (PdmActionInfo *info,
gpointer data)
{
- SoupCookie *cookie = (SoupCookie *) data;
- SoupCookieJar *jar;
+ GtkTreeRowReference *rowref = (GtkTreeRowReference *)data;
- jar = get_cookie_jar();
+ if (gtk_tree_row_reference_valid (rowref)) {
+ GtkTreeIter iter;
+ GtkTreePath *path;
+ GtkTreeModel *model;
- soup_cookie_jar_delete_cookie (jar, cookie);
- return FALSE;
+ path = gtk_tree_row_reference_get_path (rowref);
+ model = gtk_tree_row_reference_get_model (rowref);
+
+ if (path != NULL && gtk_tree_model_get_iter (model, &iter, path)) {
+ SoupCookie *cookie;
+ SoupCookieJar *jar;
+ GValue val = { 0, };
+
+ gtk_tree_model_get_value (model, &iter, COL_PASSWORDS_DATA, &val);
+
+ cookie = (SoupCookie *) g_value_get_boxed (&val);
+
+ g_value_unset (&val);
+
+ jar = get_cookie_jar();
+ soup_cookie_jar_delete_cookie (jar, cookie);
+
+ gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
+ gtk_tree_path_free (path);
+ }
+ gtk_tree_row_reference_free (rowref);
+ }
}
static void
@@ -1449,16 +1448,37 @@ out:
return;
}
-static gboolean
+static void
pdm_dialog_password_remove (PdmActionInfo *info,
- gpointer data)
+ gpointer data)
{
- EphyPasswordInfo *pinfo = (EphyPasswordInfo *) data;
- GnomeKeyringResult result;
+ GtkTreeRowReference *rowref = (GtkTreeRowReference *)data;
- result = gnome_keyring_item_delete_sync (GNOME_KEYRING_DEFAULT,
- pinfo->keyring_id);
- return result == GNOME_KEYRING_RESULT_OK;
+ if (gtk_tree_row_reference_valid (rowref)) {
+ EphyPasswordInfo *pinfo;
+ GtkTreeIter iter;
+ GtkTreePath *path;
+ GtkTreeModel *model;
+ GValue val = { 0, };
+
+ path = gtk_tree_row_reference_get_path (rowref);
+ model = gtk_tree_row_reference_get_model (rowref);
+
+ if (path != NULL && gtk_tree_model_get_iter (model, &iter, path)) {
+
+ gtk_tree_model_get_value (model, &iter,
+ COL_PASSWORDS_DATA, &val);
+ pinfo = g_value_get_boxed (&val);
+
+ gnome_keyring_item_delete (GNOME_KEYRING_DEFAULT,
+ pinfo->keyring_id,
+ (GnomeKeyringOperationDoneCallback) pdm_dialog_password_remove_cb,
+ rowref,
+ (GDestroyNotify) gtk_tree_row_reference_free);
+ g_value_unset (&val);
+ gtk_tree_path_free (path);
+ }
+ }
}
/* common routines */