summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * src/tree.c: Do not use deprecated gtk_tree_view_set_rules_hint()Javier Jardón2015-03-221-2/+0
| |
| * src/notification.c: Remove non-used variableJavier Jardón2015-03-221-4/+0
| |
| * Use GtkScale instead deprecated GtkHScaleJavier Jardón2015-03-221-1/+1
| |
| * src/zenity.ui: Use GtkBox instead deprecated Gtk[H|V]BoxJavier Jardón2015-03-221-13/+18
| |
| * forms: Use GtkGrid instead deprecated GtkTable/GtkAlignmentJavier Jardón2015-03-222-152/+20
| |
| * src/password.c: Do not use deprecated GtkAlignment widgetJavier Jardón2015-03-221-8/+2
| |
| * password: Use gtk_box instead gtk_[v|h]boxJavier Jardón2015-03-221-4/+4
| |
| * src/text.c: gtk_widget_override_font instead gtk_widget_modify_fontJavier Jardón2015-03-221-1/+1
| |
| * src/color.c: Port to GtkColorChooserDialogJavier Jardón2015-03-221-19/+10
| |
| * Rework zenity_util_set_window_icon* to not use stock imagesJavier Jardón2015-03-223-43/+38
| |
| * Do not use a stock answer for yes/no buttonsJavier Jardón2015-03-221-2/+2
| |
| * Do not use stock dialogJavier Jardón2015-03-221-2/+2
| |
| * Do not use an icon for Cancel/OK buttonsJavier Jardón2015-03-2211-42/+4
| | | | | | | | | | 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-221-4/+4
| |
| * src/zenity.ui: Do not use deprecated stock buttonsJavier Jardón2015-03-221-34/+23
| |
| * src/zenity.ui: Changes when open with Glade 3.18.3Javier Jardón2015-03-221-28/+37
| |
* | ADD gchar **extra_label TO struct ZenityDataGama Anderson2015-04-2114-16/+161
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-211-0/+2
| |
* | Bug #734196Andreas Mohr2015-04-211-0/+26
|/ | | | --info destroys X11 primary selection content, and does not document that either
* Allow user to interact with --text-info --html WebViewKernc2014-10-223-1/+20
| | | | | | | | | 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-223-31/+49
|
* Better sollution for wrap textArx Cruz2014-10-221-7/+12
| | | | | | | 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-221-1/+1
| | | | text-info is now seting the text to UTF-8 properly
* Allow --text-info to load resources also from relative file:// URIsKernc2014-10-221-1/+10
|
* Bug #685051 Adding --mid-search option to --listArx Cruz2014-10-213-0/+30
| | | | | | | | | | | | | | 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-213-3/+3
|
* Fixing remain g_timeout_addArx Cruz2014-10-213-9/+9
| | | | Finish switch g_timeout_add for g_timeout_add_seconds
* Allow --text-info to load resources from absolute file:// URIsKernc2014-10-211-2/+2
|
* Added time-remaining support to progress barsScott Pakin2014-10-214-0/+67
| | | | | | 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-211-2/+0
| | | | | | | | 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-291-0/+4
| | | | | This fix a problem when user calls --hint=urgency without specify a :NOTIFY_URGENCY
* Bug #670496 and #673643Arx Cruz2014-05-291-1/+9
| | | | | 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-201-4/+4
|
* Add the --ellipsize option to info, error, warning and question dialogsArx Cruz2014-05-203-2/+48
| | | | | | 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-201-22/+23
|
* Removing some deprecated classes in zenity GtkBuilder fileArx Cruz2014-05-201-242/+254
|
* Remove deprecated methods.Arx Cruz2014-05-161-20/+0
| | | | | | | 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-311-3/+1
|
* Fixing bug #712616Vinicius Silva2013-11-251-1/+9
|
* Bug #600533 zenity --text-info should have an auto scroll optionArx Cruz2013-11-233-5/+28
| | | | | | | | 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-233-1/+14
|
* But #702535 - List box doesn't expand to fill windowArx Cruz2013-10-101-0/+1
|
* Added combobox support on forms dialogArx Cruz2013-09-253-1/+108
|
* added attach option for transient windowWeitian Leung2013-08-3115-26/+37
|
* Add a runtime check for X11 (bug #705335)Benjamin Berg2013-08-051-2/+5
| | | | | 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-042-10/+8
| | | | 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-231-6/+0
| | | | returns it twice
* But #674881 - Timeout option overriding normal exit codeArx Cruz2013-03-059-109/+169
|
* Allow to specify notification's hintsNuno Araujo2013-02-253-0/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-221-1/+1
| | | | BUG ID: 687180