summaryrefslogtreecommitdiff
path: root/src/password.c
Commit message (Collapse)AuthorAge
* password: Replace N_() with regular _()Piotr Drąg2017-12-04
| | | | | | These two strings show up in English when they should be translated. https://bugzilla.gnome.org/show_bug.cgi?id=783078
* Fix styleArx Cruz2017-04-07
| | | | | Fixing style in all zenity code, removing useless spaces, empty lines, all code in 80 columns, etc.
* Fixing GLib-CRITICAL messagesArx Cruz2015-10-02
|
* Merge branch 'jjardon/no_deprecated'Arx Cruz2015-04-21
|\ | | | | | | | | Conflicts: src/msg.c
| * src/password.c: Do not use deprecated GtkAlignment widgetJavier Jardón2015-03-22
| |
| * password: Use gtk_box instead gtk_[v|h]boxJavier Jardón2015-03-22
| |
| * Do not use stock dialogJavier Jardón2015-03-22
| |
| * Do not use an icon for Cancel/OK buttonsJavier Jardón2015-03-22
| | | | | | | | | | GTK+ documentation recommends to not use an icons, but use "_OK"/"_Cancel" labels instead
* | ADD gchar **extra_label TO struct ZenityDataGama Anderson2015-04-21
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this is done to keep the name of the extra buttons ADD general option "extra-button" with string array as argument This will upon consecutive calls save the name of buttons in an array of strings To all MODES, except notification.c and about.c ADD 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++; } } This add the extra buttons to the dialog. The response is the number of the button To all MODES response, except notification.c and about.c ADD default: if (response < g_strv_length(zen_data->extra_label)) printf("%s\n",zen_data->extra_label[response]); This will print the button name to stdout when they are pressed ADD question option "switch" This will suppress the standard "ok" and "cancel" button in question. This just wort in combination with --extra-button, otherwise error is raised. https://bugzilla.gnome.org/show_bug.cgi?id=118016
* Fixing g_timeout_add callsArx Cruz2014-10-21
|
* Fixing remain g_timeout_addArx Cruz2014-10-21
| | | | Finish switch g_timeout_add for g_timeout_add_seconds
* Fixing bug #712616Vinicius Silva2013-11-25
|
* added attach option for transient windowWeitian Leung2013-08-31
|
* util: Add an option to request dialogs being modalFlorian Müllner2012-09-25
| | | | | | | | | As WMs cannot open windows themselves, Mutter uses zenity to open "Force Quit" dialogs for unresponsive windows; as those are strongly tied to the corresponding window, it makes sense to make them modal (in particular when attaching them to their parent). https://bugzilla.gnome.org/show_bug.cgi?id=684322
* Fix for bug #611297 Now Zenity have --ok-label and --cancel-label in all ↵Arx Cruz2011-07-26
| | | | dialogs. This patch doesn't break old zenity scripts.
* Now if you use --timeout option, the return code will be properly handledArx Cruz2011-06-17
| | | | | The default behavior will be done (ie. user click on ok button) The return code will be 5
* Bug 651948 - zenity list does not return default value when timeout is overArx Cruz2011-06-16
|
* Fix for bug 630885Arx Cruz2010-11-18
|
* Add default activation on entry.Luis Medinas2010-09-29
| | | | | Fixes bgo#630884 - Zenity --password dialog doesn't have a default action
* Change GTK_DIALOG(dialog)->vbox to gtk_dialog_get_content_area() in order to ↵Arx Cruz2010-07-12
| | | | compile with GTK 3.0
* Just changing the copyright.Arx Cruz2010-07-12
|
* Add new password dialogArx Cruz2010-07-12
bgstack15