summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-09-25Added combobox support on forms dialogArx Cruz
2013-08-31added attach option for transient windowWeitian Leung
2013-08-05Add a runtime check for X11 (bug #705335)Benjamin Berg
If GTK+ is compiled with multiple backends, then it is necessary to do a runtime check for the used backend.
2013-06-04Bug #653468. Fixed by Kurt Miller <kurt@intricatesoftware.com>.Arx Cruz
Fix the broken auto-close option in progress and list dialogs.
2013-05-23Bug 698683 - Double clicking an item or hitting enter after selecting an itemArx Cruz
returns it twice
2013-03-05But #674881 - Timeout option overriding normal exit codeArx Cruz
2013-02-25Allow to specify notification's hintsNuno Araujo
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
2012-11-22Replaced string 'could' to start with an Uppercase.Marc Ruiz - radykal -
BUG ID: 687180
2012-09-25Revert "Don't break the string freeze"Matthias Clasen
This reverts commit 156a99e304247504a486f0911596ab5765ad1add. I got the second string freeze approval after all, so lets add the new strings back.
2012-09-25Don't break the string freezeMatthias Clasen
I'm out of time waiting for a second string freeze break approval, so the strings will be untranslated for now.
2012-09-25msg: Add an option to set a custom dialog iconFlorian Müllner
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
2012-09-25util: Add an option to request dialogs being modalFlorian Müllner
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
2012-08-21Fix the ComboBoxText construction so the dropmenu works again.Frode Austvik
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
2012-08-21Port to new documentation infrastructureJavier Jardón
2012-08-12Fix various compiler warnings (two serious)Colin Walters
Missing sentinels can cause crashes. The others are just style.
2012-07-21Revert "Fixing string freeze"Piotr Drąg
This reverts commit 8777940f499a4a37fdb7c118de50f39cfa62f34b. The master branch is not yet affected by the string freeze.
2012-07-19Fixing string freezeArx Cruz
2012-07-19Added support to --imagelist on tree. Thanks to Joshua Nathaniel Pritikin ↵Arx Cruz
<jpritikin@pobox.com> now the first column can have an image.
2012-05-23Do not crash in --forms --add-list without column valuesAlexandre Rostovtsev
Be a bit more user friendly, and instead of crashing, add a default column name if the user forgot to use --column-values with a --forms list. https://bugzilla.gnome.org/show_bug.cgi?id=676406
2012-05-16Remove markup from translatable stringsPiotr Drąg
Also manually unbreak the string freeze break.
2012-05-08mask the result of g_io_channel_get_flags for the wanted flagJulian Taylor
2012-04-19Wrong unref objectArx Cruz
2012-04-19Fix for Bug 567663. Now the --pulsate option works properlyArx Cruz
2012-04-19Bug #673529 Fix segmentation fault in --list optionArx Cruz
2012-01-30Bug #668935 - the channel was being freed twice.Arx Cruz
2011-12-21Added support to lists on zenity --formsArx Cruz
2011-10-13Revert "Initial support for list/tree on --forms option Added zenity ↵Arx Cruz
--add-list and --list-values on --forms option. This is an initial support. Next steps add support to multiple selections and multiple columns" This reverts commit ed825cf92b9d786b9b13361db4a0e696af347a59.
2011-10-13Initial support for list/tree on --forms option Added zenity --add-list and ↵Arx Cruz
--list-values on --forms option. This is an initial support. Next steps add support to multiple selections and multiple columns
2011-07-26Fix for bug #611297 Now Zenity have --ok-label and --cancel-label in all ↵Arx Cruz
dialogs. This patch doesn't break old zenity scripts.
2011-07-26Bug #592195. This fix made the --list mode return as soon as receive an ok ↵Arx Cruz
or cancel response avoiding crash.
2011-07-19Enable html support in --text-info option. This fix bug #598655, thanks for ↵Arx Cruz
the work from Francis Meyvis francis.meyvis at gmail dot com. Two new options in --text-info: * --html - enable HTML support. * --url - load an url If you need to load a local html file, you can use --filename=patch/to/html. Examples: * zenity --text-info --html --filename=file.html * zenity --text-info --html --url=www.gnome.org Zenity will add http:// if isn't declared in --url
2011-07-08Fix for bug #540489 and #501001 both related to 100% use of cpu.Arx Cruz
2011-07-06Forgot change one option in gtk_labelArx Cruz
2011-07-06Patch for bug #621907Arx Cruz
This patch add the option --no-markup in the info, warning, error and question dialogs So if the user wants to use & \ ' and other symbols, now he can, and no error will be showed.
2011-06-28This change add a new functionality to text-info:Arx Cruz
* Added a cancel button returning 1 if clicked * Renamed the Close button to Ok, still returning 0 if clicked * Added --ok-label=TEXT option to change the Ok button label * Added --cancel-label=TEXT option to change the Cancel button label * Added --checkbox=TEXT option to show an "I Agree and accept the terms" checkbox If --checkbox is enabled, the Ok button will be disabled if the checkbox isn't checked.
2011-06-17Now if you use --timeout option, the return code will be properly handledArx Cruz
The default behavior will be done (ie. user click on ok button) The return code will be 5
2011-06-16Fix the msg forms (question, warning, error) to return 5 when timeoutArx Cruz
2011-06-16Bug 651948 - zenity list does not return default value when timeout is overArx Cruz
2011-06-07Fix bug 651723, don't look for libnotify.h if not requestedNirbheek Chauhan
2011-03-17Revert mistakely pushed string changeLuca Ferretti
2011-03-17Use proper case in forms dialog option valuesLuca Ferretti
2011-02-15text.c: Fix compilation warningJavier Jardón
2011-02-15Do not use deprecated separator GtkDialog propertyJavier Jardón
2011-01-25Reset errors after freeing themMatthias Clasen
This was causing segfaults: https://bugzilla.redhat.com/show_bug.cgi?id=670895
2011-01-17Adding missed files and code for --forms option.Arx Cruz
2011-01-04Add font and no wrap mode support in text dialogmuzuiget
2011-01-02Fix for bug 540560.Arx Cruz
Patch by Victor Ananjevsky <ananasik at gmail dot com>
2010-12-22util: fix build with new GTK+Cosimo Cecchi
2010-11-18Fix for bug 630885Arx Cruz
2010-11-18Fix for bug 412493Arx Cruz