2010-07-10 19:13:40 +00:00
|
|
|
/*
|
|
|
|
* password.c
|
|
|
|
*
|
2010-07-12 14:20:02 +00:00
|
|
|
* Copyright (C) 2010 Arx Cruz
|
2010-07-10 19:13:40 +00:00
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
zen_data = data;
|
|
|
|
|
|
|
|
dialog = gtk_dialog_new ();
|
|
|
|
|
2015-02-28 19:06:09 +00:00
|
|
|
if (data->extra_label) {
|
|
|
|
gint i=0;
|
|
|
|
while(data->extra_label[i]!=NULL){
|
|
|
|
gtk_dialog_add_button (GTK_DIALOG (dialog), data->extra_label[i], i);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-10 19:13:40 +00:00
|
|
|
gtk_dialog_add_button(GTK_DIALOG(dialog),
|
2015-03-22 04:57:05 +00:00
|
|
|
data->cancel_label != NULL ? data->cancel_label : _("_Cancel"),
|
2010-07-10 19:13:40 +00:00
|
|
|
GTK_RESPONSE_CANCEL);
|
|
|
|
gtk_dialog_add_button(GTK_DIALOG(dialog),
|
2015-03-22 04:57:05 +00:00
|
|
|
data->ok_label != NULL ? data->ok_label : _("_OK"),
|
2010-07-10 19:13:40 +00:00
|
|
|
GTK_RESPONSE_OK);
|
|
|
|
|
2015-03-22 05:00:48 +00:00
|
|
|
image = gtk_image_new_from_icon_name("dialog-password",
|
|
|
|
GTK_ICON_SIZE_DIALOG);
|
2010-07-10 19:13:40 +00:00
|
|
|
gtk_dialog_set_default_response(GTK_DIALOG(dialog),
|
|
|
|
GTK_RESPONSE_OK);
|
2015-03-22 07:19:56 +00:00
|
|
|
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5);
|
2010-07-10 19:13:40 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(hbox),
|
|
|
|
image,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
|
|
|
12);
|
2013-11-26 00:27:10 +00:00
|
|
|
|
|
|
|
/* Checks if username has been passed as a parameter */
|
|
|
|
gchar *title_text = N_("Type your password");
|
|
|
|
|
|
|
|
if(password_data->username)
|
|
|
|
title_text = N_("Type your username and password");
|
|
|
|
|
|
|
|
label = gtk_label_new(title_text);
|
|
|
|
|
2010-07-10 19:13:40 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(hbox),
|
|
|
|
label,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
|
|
|
12);
|
2010-07-12 15:57:47 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))),
|
2010-07-10 19:13:40 +00:00
|
|
|
hbox,
|
|
|
|
FALSE,
|
|
|
|
TRUE,
|
|
|
|
5);
|
|
|
|
|
2015-03-22 07:19:56 +00:00
|
|
|
vbox_labels = gtk_box_new(GTK_ORIENTATION_VERTICAL, 5);
|
|
|
|
vbox_entries = gtk_box_new(GTK_ORIENTATION_VERTICAL, 5);
|
2010-07-10 19:13:40 +00:00
|
|
|
|
2015-03-22 07:19:56 +00:00
|
|
|
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5);
|
2010-07-12 15:57:47 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))),
|
2010-07-10 19:13:40 +00:00
|
|
|
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) {
|
|
|
|
label = gtk_label_new(_("Username:"));
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox_labels),
|
2015-03-22 07:25:59 +00:00
|
|
|
label,
|
2010-07-10 19:13:40 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
label = gtk_label_new(_("Password:"));
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox_labels),
|
2015-03-22 07:25:59 +00:00
|
|
|
label,
|
2010-07-10 19:13:40 +00:00
|
|
|
TRUE,
|
|
|
|
FALSE,
|
|
|
|
12);
|
|
|
|
password_data->entry_password = gtk_entry_new();
|
|
|
|
gtk_entry_set_visibility(GTK_ENTRY(password_data->entry_password),
|
|
|
|
FALSE);
|
2010-09-29 11:26:52 +00:00
|
|
|
gtk_entry_set_activates_default (GTK_ENTRY(password_data->entry_password),
|
|
|
|
TRUE);
|
2010-07-10 19:13:40 +00:00
|
|
|
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);
|
|
|
|
|
2012-09-18 16:33:07 +00:00
|
|
|
if (data->modal)
|
|
|
|
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
|
|
|
|
|
2010-07-10 19:13:40 +00:00
|
|
|
g_signal_connect (G_OBJECT (dialog), "response",
|
|
|
|
G_CALLBACK (zenity_password_dialog_response),
|
|
|
|
password_data);
|
2010-07-12 15:57:47 +00:00
|
|
|
gtk_widget_show_all(GTK_WIDGET(gtk_dialog_get_content_area(GTK_DIALOG(dialog))));
|
2013-08-23 01:15:07 +00:00
|
|
|
zenity_util_show_dialog (dialog, data->attach);
|
2010-07-10 19:13:40 +00:00
|
|
|
|
|
|
|
if (data->timeout_delay > 0) {
|
2014-10-21 14:32:14 +00:00
|
|
|
g_timeout_add_seconds (data->timeout_delay,
|
2014-10-21 14:05:31 +00:00
|
|
|
(GSourceFunc) zenity_util_timeout_handle,
|
|
|
|
dialog);
|
2010-07-10 19:13:40 +00:00
|
|
|
}
|
|
|
|
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:
|
2011-06-17 13:47:07 +00:00
|
|
|
zenity_util_exit_code_with_data(ZENITY_OK, zen_data);
|
2010-11-18 16:54:36 +00:00
|
|
|
if (password_data->username)
|
|
|
|
g_print("%s|%s\n", gtk_entry_get_text (GTK_ENTRY(password_data->entry_username)), gtk_entry_get_text (GTK_ENTRY(password_data->entry_password)));
|
|
|
|
else
|
|
|
|
g_print ("%s\n", gtk_entry_get_text (GTK_ENTRY(password_data->entry_password)));
|
2010-07-10 19:13:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_RESPONSE_CANCEL:
|
|
|
|
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2015-02-28 19:06:09 +00:00
|
|
|
if (response < g_strv_length(zen_data->extra_label))
|
|
|
|
printf("%s\n",zen_data->extra_label[response]);
|
2010-07-10 19:13:40 +00:00
|
|
|
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_main_quit ();
|
|
|
|
}
|