summaryrefslogtreecommitdiff
path: root/src/password.c
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@src.gnome.org>2010-07-10 16:13:40 -0300
committerArx Cruz <arxcruz@src.gnome.org>2010-07-12 11:08:26 -0300
commit10d038022014a8069495bd72ccf9ed47fdf9d14d (patch)
tree1534f086e8259514ad9117724eb262a34346b4f1 /src/password.c
parent728c840668de3ec7c8a66842cad1b758c4dc90b3 (diff)
Add new password dialog
Diffstat (limited to 'src/password.c')
-rw-r--r--src/password.c169
1 files changed, 169 insertions, 0 deletions
diff --git a/src/password.c b/src/password.c
new file mode 100644
index 0000000..96aef7a
--- /dev/null
+++ b/src/password.c
@@ -0,0 +1,169 @@
+/*
+ * password.c
+ *
+ * Copyright (C) 2010 Berislav Kovacki
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 121 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ * Authors: Arx Cruz <arxcruz@gmail.com>
+ */
+
+#include "config.h"
+#include <string.h>
+#include "zenity.h"
+#include "util.h"
+
+static ZenityData *zen_data;
+
+static void zenity_password_dialog_response (GtkWidget *widget, int response, gpointer data);
+
+void zenity_password_dialog (ZenityData *data, ZenityPasswordData *password_data)
+{
+ GtkWidget *dialog;
+ GtkWidget *image;
+ GtkWidget *hbox;
+ GtkWidget *vbox_labels;
+ GtkWidget *vbox_entries;
+ GtkWidget *label;
+ GtkWidget *align;
+
+ zen_data = data;
+
+ dialog = gtk_dialog_new ();
+
+ gtk_dialog_add_button(GTK_DIALOG(dialog),
+ GTK_STOCK_CANCEL,
+ GTK_RESPONSE_CANCEL);
+ gtk_dialog_add_button(GTK_DIALOG(dialog),
+ GTK_STOCK_OK,
+ GTK_RESPONSE_OK);
+
+ image = gtk_image_new_from_stock(GTK_STOCK_DIALOG_AUTHENTICATION,
+ GTK_ICON_SIZE_DIALOG);
+ gtk_dialog_set_default_response(GTK_DIALOG(dialog),
+ GTK_RESPONSE_OK);
+ hbox = gtk_hbox_new(FALSE, 5);
+ gtk_box_pack_start(GTK_BOX(hbox),
+ image,
+ FALSE,
+ FALSE,
+ 12);
+ label = gtk_label_new(_("Type your password"));
+ gtk_box_pack_start(GTK_BOX(hbox),
+ label,
+ FALSE,
+ FALSE,
+ 12);
+ gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
+ hbox,
+ FALSE,
+ TRUE,
+ 5);
+
+ vbox_labels = gtk_vbox_new(FALSE, 5);
+ vbox_entries = gtk_vbox_new(FALSE, 5);
+
+ hbox = gtk_hbox_new(FALSE, 5);
+ gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
+ hbox,
+ FALSE,
+ TRUE,
+ 5);
+
+ gtk_box_pack_start(GTK_BOX(hbox),
+ vbox_labels,
+ FALSE,
+ TRUE,
+ 12);
+ gtk_box_pack_start(GTK_BOX(hbox),
+ vbox_entries,
+ TRUE,
+ TRUE,
+ 12);
+
+ if(password_data->username) {
+ align = gtk_alignment_new(0.0, 0.12, 0.0, 0.0);
+ label = gtk_label_new(_("Username:"));
+ gtk_container_add(GTK_CONTAINER(align), label);
+ gtk_box_pack_start(GTK_BOX(vbox_labels),
+ align,
+ TRUE,
+ FALSE,
+ 12);
+ password_data->entry_username = gtk_entry_new();
+ gtk_box_pack_start(GTK_BOX(vbox_entries),
+ password_data->entry_username,
+ TRUE,
+ TRUE,
+ 12);
+ }
+
+ align = gtk_alignment_new(0.0, 0.5, 0.0, 0.0);
+ label = gtk_label_new(_("Password:"));
+ gtk_container_add(GTK_CONTAINER(align), label);
+
+ gtk_box_pack_start(GTK_BOX(vbox_labels),
+ align,
+ TRUE,
+ FALSE,
+ 12);
+ password_data->entry_password = gtk_entry_new();
+ gtk_entry_set_visibility(GTK_ENTRY(password_data->entry_password),
+ FALSE);
+ gtk_box_pack_start(GTK_BOX(vbox_entries),
+ password_data->entry_password,
+ TRUE,
+ TRUE,
+ 12);
+
+ if (data->dialog_title)
+ gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title);
+
+ g_signal_connect (G_OBJECT (dialog), "response",
+ G_CALLBACK (zenity_password_dialog_response),
+ password_data);
+ gtk_widget_show_all(GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
+ zenity_util_show_dialog (dialog);
+
+ if (data->timeout_delay > 0) {
+ g_timeout_add (data->timeout_delay * 1000,
+ (GSourceFunc) zenity_util_timeout_handle,
+ NULL);
+ }
+ gtk_main();
+}
+
+static void
+zenity_password_dialog_response (GtkWidget *widget, int response, gpointer data)
+{
+ ZenityPasswordData *password_data = (ZenityPasswordData *) data;
+ switch (response) {
+ case GTK_RESPONSE_OK:
+ zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
+ g_print ("%s\n", gtk_entry_get_text (GTK_ENTRY(password_data->entry_password)));
+ break;
+
+ case GTK_RESPONSE_CANCEL:
+ zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL);
+ break;
+
+ default:
+ zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC);
+ break;
+ }
+
+ gtk_main_quit ();
+}