summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
| * password: Use gtk_box instead gtk_[v|h]boxJavier Jardón2015-03-22
| |
| * src/text.c: gtk_widget_override_font instead gtk_widget_modify_fontJavier Jardón2015-03-22
| |
| * src/color.c: Port to GtkColorChooserDialogJavier Jardón2015-03-22
| |
| * Rework zenity_util_set_window_icon* to not use stock imagesJavier Jardón2015-03-22
| |
| * Do not use a stock answer for yes/no buttonsJavier 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
| * src/zenity.ui: Do not use deprecated stock imagesJavier Jardón2015-03-22
| |
| * src/zenity.ui: Do not use deprecated stock buttonsJavier Jardón2015-03-22
| |
| * src/zenity.ui: Changes when open with Glade 3.18.3Javier Jardón2015-03-22
| |
* | 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
* | allow build if GDK_WINDOWING_X11 not setJason Penney2015-04-21
| |
* | Bug #734196Andreas Mohr2015-04-21
|/ | | | --info destroys X11 primary selection content, and does not document that either
* Allow user to interact with --text-info --html WebViewKernc2014-10-22
| | | | | | | | | This commit changes the default --text-view behavior (when --html is also in effect) so that the clicked links are opened in the default browser (closes #732626). Additionally, a new option is introduced, --prevent-interaction, which disables above behavior.
* Bug #700249 - Progress dialog does not wrapArx Cruz2014-10-22
|
* Better sollution for wrap textArx Cruz2014-10-22
| | | | | | | This fix is a better sollution for info, error, warning and question dialog. Now the dialog wraps the text properly, and don't allocate a lot of height
* Bug #734049 - zenity --text-info chokes on some UTF-8 stringArx Cruz2014-10-22
| | | | text-info is now seting the text to UTF-8 properly
* Allow --text-info to load resources also from relative file:// URIsKernc2014-10-22
|
* Bug #685051 Adding --mid-search option to --listArx Cruz2014-10-21
| | | | | | | | | | | | | | This will enable users to find a row with a text matching the middle of the row. Consider the following list: Little piggy one Little piggy two Little piggy three As a user I would expect that entering 'th' would focus the last row, because it's the first one that contains 'th'
* 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
* Allow --text-info to load resources from absolute file:// URIsKernc2014-10-21
|
* Added time-remaining support to progress barsScott Pakin2014-10-21
| | | | | | Introduced a --time-remaining command-line option that uses the time and percent complete to extrapolate the time remaining until progress reaches 100%.
* Don't quit zenity when the input stream is closedEmilio Pozuelo Monfort2014-10-21
| | | | | | | | When using --listen for a notification, zenity quits when the stream ends. This makes it impossible to read commands from a pipe as in `echo icon:info | zenity --notification --listen'. https://bugzilla.gnome.org/show_bug.cgi?id=525596
* Bug 733870 - Segmentation fault on zenity --notificationArx Cruz2014-08-29
| | | | | This fix a problem when user calls --hint=urgency without specify a :NOTIFY_URGENCY
* Bug #670496 and #673643Arx Cruz2014-05-29
| | | | | This fix the size of GtkLabel width when you have a big text in the dialog.
* Improve grammar in new translatable stringsPiotr Drąg2014-05-20
|
* Add the --ellipsize option to info, error, warning and question dialogsArx Cruz2014-05-20
| | | | | | This option will help people who need to add huge texts in their dialogs and the window size get's very huge due amount of size that GtkLabel requests
* Fixing deprecated classes in GtkBuilderArx Cruz2014-05-20
|
* Removing some deprecated classes in zenity GtkBuilder fileArx Cruz2014-05-20
|
* Remove deprecated methods.Arx Cruz2014-05-16
| | | | | | | This remove deprecated methods in about dialog. Also remove the help button in the about dialog, since wasn't being used (due the deprecated methods) and keep it just make the UI ugly.
* Updated FSF's addressDaniel Mustieles2014-01-31
|
* Fixing bug #712616Vinicius Silva2013-11-25
|
* Bug #600533 zenity --text-info should have an auto scroll optionArx Cruz2013-11-23
| | | | | | | | This is a request to add a auto-scroll option. For now it's only works when text-info is getting the text from stdin. Example usage: cat file.txt | zenity --text-info --auto-scroll
* Bug #534935 Need hability to specify default answer in --question dialogBerislav Kovacki2013-11-23
|
* But #702535 - List box doesn't expand to fill windowArx Cruz2013-10-10
|
* Added combobox support on forms dialogArx Cruz2013-09-25
|
* added attach option for transient windowWeitian Leung2013-08-31
|
* Add a runtime check for X11 (bug #705335)Benjamin Berg2013-08-05
| | | | | If GTK+ is compiled with multiple backends, then it is necessary to do a runtime check for the used backend.
* Bug #653468. Fixed by Kurt Miller <kurt@intricatesoftware.com>.Arx Cruz2013-06-04
| | | | Fix the broken auto-close option in progress and list dialogs.
* Bug 698683 - Double clicking an item or hitting enter after selecting an itemArx Cruz2013-05-23
| | | | returns it twice
* But #674881 - Timeout option overriding normal exit codeArx Cruz2013-03-05
|
* Allow to specify notification's hintsNuno Araujo2013-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Desktop Notifications Specification [1] specifies that hints can be used to provide extra data to a notification server. A new command line option --hint allows to add a hint to the notification to display. This option can be used multiple times, one for each hint to add. --hint option format is name:value. The new 'hints' command allow to specify hints in 'listen' mode. Same format that in the command line option is used. Several hints can be passed by separating them by '\n'. Hints of value type '(iiibiiay)' are not supported. This value type is used to pass a raw data image as a hint value. This new change is useful for implementing the NotificationSource [2] GNOME Goal. A application using zenity and having a desktop file, can now specify that it is a notification emitter and it's notifications can be filtered in the new Notifications GNOME control panel pane. [1] http://people.gnome.org/~mccann/docs/notification-spec/notification-spec-latest.html#hints [2] https://live.gnome.org/GnomeGoals/NotificationSource https://bugzilla.gnome.org/show_bug.cgi?id=693751
* Replaced string 'could' to start with an Uppercase.Marc Ruiz - radykal -2012-11-22
| | | | BUG ID: 687180
* Revert "Don't break the string freeze"Matthias Clasen2012-09-25
| | | | | | | This reverts commit 156a99e304247504a486f0911596ab5765ad1add. I got the second string freeze approval after all, so lets add the new strings back.
* Don't break the string freezeMatthias Clasen2012-09-25
| | | | | I'm out of time waiting for a second string freeze break approval, so the strings will be untranslated for now.
* msg: Add an option to set a custom dialog iconFlorian Müllner2012-09-25
| | | | | | | | The predefined dialog icons work well in many cases, but sometimes it makes sense to use a more specific icon, so add an option to specify an icon-name to use instead. https://bugzilla.gnome.org/show_bug.cgi?id=684329
* 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 the ComboBoxText construction so the dropmenu works again.Frode Austvik2012-08-21
| | | | | | | This fixes lp#998445 by changing the code to construct a new ComboBoxText instead of a ComboBox, which it was (probably accidentally) changed to do in commit 4421de67. Closes: lp#998445
* Port to new documentation infrastructureJavier Jardón2012-08-21
|
bgstack15