gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis-gtk] branch master updated: work on dialogs


From: gnunet
Subject: [taler-anastasis-gtk] branch master updated: work on dialogs
Date: Wed, 10 Mar 2021 12:37:16 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository anastasis-gtk.

The following commit(s) were added to refs/heads/master by this push:
     new bd8e4e6  work on dialogs
bd8e4e6 is described below

commit bd8e4e6bb05747477be67c77b2c5f32e6f134db6
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Mar 10 12:37:14 2021 +0100

    work on dialogs
---
 src/anastasis/Makefile.am                         |   3 +
 src/anastasis/anastasis-gtk_action.c              |  24 +++-
 src/anastasis/anastasis-gtk_handle-method-email.c | 134 ++++++++++++++++++
 src/anastasis/anastasis-gtk_handle-method-post.c  | 163 ++++++++++++++++++++++
 src/anastasis/anastasis-gtk_handle-method-sms.c   | 132 ++++++++++++++++++
 src/anastasis/anastasis-gtk_handle-method-video.c | 160 +++++++++++++++++++++
 6 files changed, 609 insertions(+), 7 deletions(-)

diff --git a/src/anastasis/Makefile.am b/src/anastasis/Makefile.am
index e61076c..e87bf1e 100644
--- a/src/anastasis/Makefile.am
+++ b/src/anastasis/Makefile.am
@@ -30,7 +30,10 @@ anastasis_gtk_SOURCES = \
   anastasis-gtk_handle-main-window-forward-clicked.c \
   anastasis-gtk_handle-main-window-forward-clicked.h \
   anastasis-gtk_handle-main-window-back-clicked.c \
+  anastasis-gtk_handle-method-email.c \
+  anastasis-gtk_handle-method-post.c \
   anastasis-gtk_handle-method-question.c \
+  anastasis-gtk_handle-method-sms.c \
   anastasis-gtk_helper.c  anastasis-gtk_helper.h \
   os_installation.c
 
diff --git a/src/anastasis/anastasis-gtk_action.c 
b/src/anastasis/anastasis-gtk_action.c
index 16e1a16..21410fb 100644
--- a/src/anastasis/anastasis-gtk_action.c
+++ b/src/anastasis/anastasis-gtk_action.c
@@ -630,7 +630,7 @@ action_policies_reviewing (void)
   json_dumpf (redux_state,
               stderr,
               JSON_INDENT (2));
-  // FIXME: import into tree model!
+  // FIXME: import policies into tree model!
   AG_sensitive ("anastasis_gtk_main_window_prev_button");
   AG_sensitive ("anastasis_gtk_main_window_forward_button");
   AG_show ("anastasis_gtk_b_policy_frame");
@@ -645,16 +645,26 @@ static void
 action_secret_editing (void)
 {
   GtkEntry *entry;
+  const char *secret;
 
   AG_hide_all_frames ();
   GNUNET_break (0);
   entry = GTK_ENTRY (GCG_get_main_window_object (
                        "anastasis_gtk_enter_secret_entry"));
+  secret = json_string_value (json_object_get (redux_state,
+                                               "core_secret")); // FIXME: 
right field name?
+  if ( (NULL != secret) &&
+       (0 < strlen (secret)) )
+  {
+    gtk_entry_set_text (entry,
+                        secret);
+    AG_sensitive ("anastasis_gtk_main_window_forward_button");
+  }
+  else
+  {
+    AG_insensitive ("anastasis_gtk_main_window_forward_button");
+  }
   AG_sensitive ("anastasis_gtk_main_window_prev_button");
-
-  // FIXME: if secret is already present, set to sensitive!
-  AG_insensitive ("anastasis_gtk_main_window_forward_button");
-
   AG_show ("anastasis_gtk_enter_secret_frame");
   AG_show ("anastasis_gtk_enter_secret_image");
   AG_show ("anastasis_gtk_main_control_vbox");
@@ -720,8 +730,8 @@ action_recovery_finished (void)
   AG_hide_all_frames ();
   l = GTK_LABEL (GCG_get_main_window_object (
                    "anastasis_gtk_secret_value_label"));
-  secret = json_string_value (gtk_object_get (redux_state,
-                                              "core_secret"));
+  secret = json_string_value (json_object_get (redux_state,
+                                               "core_secret"));
   gtk_label_set_text (l,
                       secret);
   AG_show ("anastasis_gtk_completed_frame");
diff --git a/src/anastasis/anastasis-gtk_handle-method-email.c 
b/src/anastasis/anastasis-gtk_handle-method-email.c
new file mode 100644
index 0000000..1eda203
--- /dev/null
+++ b/src/anastasis/anastasis-gtk_handle-method-email.c
@@ -0,0 +1,134 @@
+/*
+     This file is part of anastasis-gtk.
+     Copyright (C) 2020 Anastasis SARL
+
+     Anastasis 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 3, or (at your
+     option) any later version.
+
+     Anastasis 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 Anastasis; see the file COPYING.  If not, write to the
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
+*/
+
+/**
+ * @file src/anastasis/anastasis-gtk_handle-method-email.c
+ * @brief Handle dialogs for security email
+ * @author Christian Grothoff
+ */
+#include <gnunet/platform.h>
+#include <gnunet/gnunet_util_lib.h>
+#include "anastasis-gtk_action.h"
+#include "anastasis-gtk_helper.h"
+#include "anastasis-gtk_handle-identity-changed.h"
+#include <jansson.h>
+
+
+/**
+ * Function called from the security-email dialog upon completion.
+ *
+ * @param dialog the pseudonym selection dialog
+ * @param response_id response code from the dialog
+ * @param user_data the builder of the dialog
+ */
+void
+anastasis_gtk_b_email_dialog_response_cb (GtkDialog *dialog,
+                                          gint response_id,
+                                          gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+  GtkEntry *q;
+  const char *qs;
+  json_t *args;
+
+  if (GTK_RESPONSE_OK != response_id)
+  {
+    gtk_widget_destroy (GTK_WIDGET (dialog));
+    g_object_unref (G_OBJECT (builder));
+    return;
+  }
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_email_dialog_email_entry"));
+  qs = gtk_entry_get_text (q);
+  // FIXME: produce mangled email address for instructions!
+  args = json_pack ("{ s:{s:s, s:o, s:s}}",
+                    "authentication_method",
+                    "type",
+                    "email",
+                    "challenge",
+                    GNUNET_JSON_from_data (qs,
+                                           strlen (qs)),
+                    "instructions",
+                    qs);
+  gtk_widget_destroy (GTK_WIDGET (dialog));
+  g_object_unref (G_OBJECT (builder));
+  AG_freeze ();
+  ra = ANASTASIS_redux_action (redux_state,
+                               "add_authentication",
+                               args,
+                               &AG_action_cb,
+                               NULL);
+  json_decref (args);
+}
+
+
+void
+anastasis_gtk_b_email_dialog_email_entry_changed_cb (GtkEntry *entry,
+                                                     gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+  GtkEntry *q;
+  GtkEntry *a;
+  const char *qs;
+  const char *as;
+
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_email_dialog_email_entry"));
+  qs = gtk_entry_get_text (q);
+  // FIXME: validate e-mail address more here!
+  gtk_widget_set_sensitive (
+    GTK_WIDGET (gtk_builder_get_object (builder,
+                                        
"anastasis_gtk_b_email_dialog_btn_ok")),
+    ( (NULL != qs) &&
+      (0 < strlen (qs)) ));
+}
+
+
+/**
+ * Callback invoked if the the "secure email"-button is clicked.
+ *
+ * @param object
+ * @param user_data unused
+ */
+void
+anastasis_gtk_btn_add_auth_email_clicked_cb (GObject *object,
+                                             gpointer user_data)
+{
+  GtkWidget *ad;
+  GtkBuilder *builder;
+
+  builder = GNUNET_GTK_get_new_builder ("anastasis_gtk_auth_add_email.glade",
+                                        NULL);
+  if (NULL == builder)
+  {
+    GNUNET_break (0);
+    return;
+  }
+  ad = GTK_WIDGET (gtk_builder_get_object (builder,
+                                           "anastasis_gtk_b_email_dialog"));
+  {
+    GtkWidget *toplevel;
+
+    toplevel = gtk_widget_get_toplevel (GTK_WIDGET (object));
+    gtk_window_set_transient_for (GTK_WINDOW (ad),
+                                  GTK_WINDOW (toplevel));
+    gtk_window_present (GTK_WINDOW (ad));
+  }
+}
diff --git a/src/anastasis/anastasis-gtk_handle-method-post.c 
b/src/anastasis/anastasis-gtk_handle-method-post.c
new file mode 100644
index 0000000..8418b35
--- /dev/null
+++ b/src/anastasis/anastasis-gtk_handle-method-post.c
@@ -0,0 +1,163 @@
+/*
+     This file is part of anastasis-gtk.
+     Copyright (C) 2020 Anastasis SARL
+
+     Anastasis 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 3, or (at your
+     option) any later version.
+
+     Anastasis 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 Anastasis; see the file COPYING.  If not, write to the
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
+*/
+
+/**
+ * @file src/anastasis/anastasis-gtk_handle-method-post.c
+ * @brief Handle dialogs for security post
+ * @author Christian Grothoff
+ */
+#include <gnunet/platform.h>
+#include <gnunet/gnunet_util_lib.h>
+#include "anastasis-gtk_action.h"
+#include "anastasis-gtk_helper.h"
+#include "anastasis-gtk_handle-identity-changed.h"
+#include <jansson.h>
+
+
+/**
+ * Function called from the security-post dialog upon completion.
+ *
+ * @param dialog the pseudonym selection dialog
+ * @param response_id response code from the dialog
+ * @param user_data the builder of the dialog
+ */
+void
+anastasis_gtk_b_post_dialog_response_cb (GtkDialog *dialog,
+                                         gint response_id,
+                                         gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+  GtkEntry *q;
+  const char *qs;
+  json_t *args;
+
+  if (GTK_RESPONSE_OK != response_id)
+  {
+    gtk_widget_destroy (GTK_WIDGET (dialog));
+    g_object_unref (G_OBJECT (builder));
+    return;
+  }
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_post_dialog_post_entry"));
+  qs = gtk_entry_get_text (q);
+  args = json_pack ("{ s:{s:s, s:{s:s,s:s,s:s,s:s,s:s}, s:s}}",
+                    "authentication_method",
+                    "type",
+                    "post",
+                    "challenge",
+                    "full_name",
+                    qs,
+                    "street",
+                    qs,
+                    "city",
+                    qs,
+                    "postcode",
+                    qs,
+                    "country",
+                    qs,
+                    "instructions",
+                    qs);
+  gtk_widget_destroy (GTK_WIDGET (dialog));
+  g_object_unref (G_OBJECT (builder));
+  AG_freeze ();
+  ra = ANASTASIS_redux_action (redux_state,
+                               "add_authentication",
+                               args,
+                               &AG_action_cb,
+                               NULL);
+  json_decref (args);
+}
+
+
+static void
+update_sensitivity (GtkBuilder *builder)
+{
+  GtkEntry *q;
+  GtkEntry *a;
+  const char *qs;
+  const char *as;
+
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_post_dialog_post_entry"));
+  qs = gtk_entry_get_text (q);
+  a = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_post_dialog_answer_entry"));
+  as = gtk_entry_get_text (a);
+  gtk_widget_set_sensitive (
+    GTK_WIDGET (gtk_builder_get_object (builder,
+                                        "anastasis_gtk_b_post_dialog_btn_ok")),
+    ( (NULL != qs) &&
+      (0 < strlen (qs)) &&
+      (NULL != as) &&
+      (0 < strlen (as)) ));
+}
+
+
+void
+anastasis_gtk_b_post_dialog_post_entry_changed_cb (GtkEntry *entry,
+                                                   gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+
+  update_sensitivity (builder);
+}
+
+
+void
+anastasis_gtk_b_post_dialog_answer_entry_changed_cb (GtkEntry *entry,
+                                                     gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+
+  update_sensitivity (builder);
+}
+
+
+/**
+ * Callback invoked if the the "secure post"-button is clicked.
+ *
+ * @param object
+ * @param user_data unused
+ */
+void
+anastasis_gtk_btn_add_auth_post_clicked_cb (GObject *object,
+                                            gpointer user_data)
+{
+  GtkWidget *ad;
+  GtkBuilder *builder;
+
+  builder = GNUNET_GTK_get_new_builder ("anastasis_gtk_auth_add_post.glade",
+                                        NULL);
+  if (NULL == builder)
+  {
+    GNUNET_break (0);
+    return;
+  }
+  ad = GTK_WIDGET (gtk_builder_get_object (builder,
+                                           "anastasis_gtk_b_post_dialog"));
+  {
+    GtkWidget *toplevel;
+
+    toplevel = gtk_widget_get_toplevel (GTK_WIDGET (object));
+    gtk_window_set_transient_for (GTK_WINDOW (ad),
+                                  GTK_WINDOW (toplevel));
+    gtk_window_present (GTK_WINDOW (ad));
+  }
+}
diff --git a/src/anastasis/anastasis-gtk_handle-method-sms.c 
b/src/anastasis/anastasis-gtk_handle-method-sms.c
new file mode 100644
index 0000000..d298572
--- /dev/null
+++ b/src/anastasis/anastasis-gtk_handle-method-sms.c
@@ -0,0 +1,132 @@
+/*
+     This file is part of anastasis-gtk.
+     Copyright (C) 2020 Anastasis SARL
+
+     Anastasis 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 3, or (at your
+     option) any later version.
+
+     Anastasis 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 Anastasis; see the file COPYING.  If not, write to the
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
+*/
+
+/**
+ * @file src/anastasis/anastasis-gtk_handle-method-sms.c
+ * @brief Handle dialogs for security sms
+ * @author Christian Grothoff
+ */
+#include <gnunet/platform.h>
+#include <gnunet/gnunet_util_lib.h>
+#include "anastasis-gtk_action.h"
+#include "anastasis-gtk_helper.h"
+#include "anastasis-gtk_handle-identity-changed.h"
+#include <jansson.h>
+
+
+/**
+ * Function called from the security-sms dialog upon completion.
+ *
+ * @param dialog the pseudonym selection dialog
+ * @param response_id response code from the dialog
+ * @param user_data the builder of the dialog
+ */
+void
+anastasis_gtk_b_sms_dialog_response_cb (GtkDialog *dialog,
+                                        gint response_id,
+                                        gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+  GtkEntry *q;
+  const char *qs;
+  json_t *args;
+
+  if (GTK_RESPONSE_OK != response_id)
+  {
+    gtk_widget_destroy (GTK_WIDGET (dialog));
+    g_object_unref (G_OBJECT (builder));
+    return;
+  }
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_sms_dialog_sms_entry"));
+  qs = gtk_entry_get_text (q);
+  // FIXME: produce mangled phone number for instructions!
+  args = json_pack ("{ s:{s:s, s:o, s:s}}",
+                    "authentication_method",
+                    "type",
+                    "sms",
+                    "challenge",
+                    GNUNET_JSON_from_data (qs,
+                                           strlen (qs)),
+                    "instructions",
+                    qs);
+  gtk_widget_destroy (GTK_WIDGET (dialog));
+  g_object_unref (G_OBJECT (builder));
+  AG_freeze ();
+  ra = ANASTASIS_redux_action (redux_state,
+                               "add_authentication",
+                               args,
+                               &AG_action_cb,
+                               NULL);
+  json_decref (args);
+}
+
+
+void
+anastasis_gtk_b_sms_dialog_sms_entry_changed_cb (GtkEntry *entry,
+                                                 gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+  GtkEntry *q;
+  const char *qs;
+
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_sms_dialog_sms_entry"));
+  qs = gtk_entry_get_text (q);
+  // FIXME: validate phone number more here!
+  gtk_widget_set_sensitive (
+    GTK_WIDGET (gtk_builder_get_object (builder,
+                                        "anastasis_gtk_b_sms_dialog_btn_ok")),
+    ( (NULL != qs) &&
+      (0 < strlen (qs)) ));
+}
+
+
+/**
+ * Callback invoked if the the "secure sms"-button is clicked.
+ *
+ * @param object
+ * @param user_data unused
+ */
+void
+anastasis_gtk_btn_add_auth_sms_clicked_cb (GObject *object,
+                                           gpointer user_data)
+{
+  GtkWidget *ad;
+  GtkBuilder *builder;
+
+  builder = GNUNET_GTK_get_new_builder ("anastasis_gtk_auth_add_sms.glade",
+                                        NULL);
+  if (NULL == builder)
+  {
+    GNUNET_break (0);
+    return;
+  }
+  ad = GTK_WIDGET (gtk_builder_get_object (builder,
+                                           "anastasis_gtk_b_sms_dialog"));
+  {
+    GtkWidget *toplevel;
+
+    toplevel = gtk_widget_get_toplevel (GTK_WIDGET (object));
+    gtk_window_set_transient_for (GTK_WINDOW (ad),
+                                  GTK_WINDOW (toplevel));
+    gtk_window_present (GTK_WINDOW (ad));
+  }
+}
diff --git a/src/anastasis/anastasis-gtk_handle-method-video.c 
b/src/anastasis/anastasis-gtk_handle-method-video.c
new file mode 100644
index 0000000..18d716b
--- /dev/null
+++ b/src/anastasis/anastasis-gtk_handle-method-video.c
@@ -0,0 +1,160 @@
+/*
+     This file is part of anastasis-gtk.
+     Copyright (C) 2020 Anastasis SARL
+
+     Anastasis 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 3, or (at your
+     option) any later version.
+
+     Anastasis 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 Anastasis; see the file COPYING.  If not, write to the
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
+*/
+
+/**
+ * @file src/anastasis/anastasis-gtk_handle-method-question.c
+ * @brief Handle dialogs for security question
+ * @author Christian Grothoff
+ */
+#include <gnunet/platform.h>
+#include <gnunet/gnunet_util_lib.h>
+#include "anastasis-gtk_action.h"
+#include "anastasis-gtk_helper.h"
+#include "anastasis-gtk_handle-identity-changed.h"
+#include <jansson.h>
+
+
+/**
+ * Function called from the security-question dialog upon completion.
+ *
+ * @param dialog the pseudonym selection dialog
+ * @param response_id response code from the dialog
+ * @param user_data the builder of the dialog
+ */
+void
+anastasis_gtk_b_question_dialog_response_cb (GtkDialog *dialog,
+                                             gint response_id,
+                                             gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+  GtkEntry *q;
+  GtkEntry *a;
+  const char *qs;
+  const char *as;
+  json_t *args;
+
+  if (GTK_RESPONSE_OK != response_id)
+  {
+    gtk_widget_destroy (GTK_WIDGET (dialog));
+    g_object_unref (G_OBJECT (builder));
+    return;
+  }
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_question_dialog_question_entry"));
+  qs = gtk_entry_get_text (q);
+  a = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_question_dialog_answer_entry"));
+  as = gtk_entry_get_text (a);
+  args = json_pack ("{ s:{s:s, s:o, s:s}}",
+                    "authentication_method",
+                    "type",
+                    "question",
+                    "challenge",
+                    GNUNET_JSON_from_data (as,
+                                           strlen (as)),
+                    "instructions",
+                    qs);
+  gtk_widget_destroy (GTK_WIDGET (dialog));
+  g_object_unref (G_OBJECT (builder));
+  AG_freeze ();
+  ra = ANASTASIS_redux_action (redux_state,
+                               "add_authentication",
+                               args,
+                               &AG_action_cb,
+                               NULL);
+  json_decref (args);
+}
+
+
+static void
+update_sensitivity (GtkBuilder *builder)
+{
+  GtkEntry *q;
+  GtkEntry *a;
+  const char *qs;
+  const char *as;
+
+  q = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_question_dialog_question_entry"));
+  qs = gtk_entry_get_text (q);
+  a = GTK_ENTRY (gtk_builder_get_object (builder,
+                                         
"anastasis_gtk_b_question_dialog_answer_entry"));
+  as = gtk_entry_get_text (a);
+  gtk_widget_set_sensitive (
+    GTK_WIDGET (gtk_builder_get_object (builder,
+                                        
"anastasis_gtk_b_question_dialog_btn_ok")),
+    ( (NULL != qs) &&
+      (0 < strlen (qs)) &&
+      (NULL != as) &&
+      (0 < strlen (as)) ));
+}
+
+
+void
+anastasis_gtk_b_question_dialog_question_entry_changed_cb (GtkEntry *entry,
+                                                           gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+
+  update_sensitivity (builder);
+}
+
+
+void
+anastasis_gtk_b_question_dialog_answer_entry_changed_cb (GtkEntry *entry,
+                                                         gpointer user_data)
+{
+  GtkBuilder *builder = GTK_BUILDER (user_data);
+
+  update_sensitivity (builder);
+}
+
+
+/**
+ * Callback invoked if the the "secure question"-button is clicked.
+ *
+ * @param object
+ * @param user_data unused
+ */
+void
+anastasis_gtk_btn_add_auth_question_clicked_cb (GObject *object,
+                                                gpointer user_data)
+{
+  GtkWidget *ad;
+  GtkBuilder *builder;
+
+  builder = GNUNET_GTK_get_new_builder 
("anastasis_gtk_auth_add_question.glade",
+                                        NULL);
+  if (NULL == builder)
+  {
+    GNUNET_break (0);
+    return;
+  }
+  ad = GTK_WIDGET (gtk_builder_get_object (builder,
+                                           "anastasis_gtk_b_question_dialog"));
+  {
+    GtkWidget *toplevel;
+
+    toplevel = gtk_widget_get_toplevel (GTK_WIDGET (object));
+    gtk_window_set_transient_for (GTK_WINDOW (ad),
+                                  GTK_WINDOW (toplevel));
+    gtk_window_present (GTK_WINDOW (ad));
+  }
+}

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]