summaryrefslogtreecommitdiff
path: root/src/zenity.ui
Commit message (Collapse)AuthorAgeFilesLines
* Set dialog 'heading', not 'title'Adam Williamson2023-04-201-11/+11
| | | | | | | | | | In the GTK 4 port, we made all Zenity dialogs use the libadwaita `AdwMessageDialog` class. This dialog does not have a title bar and does not show its title. The equivalent to title for this class is 'heading' - everywhere we were previously setting the title, we should set the 'heading' instead. Signed-off-by: Adam Williamson <awilliam@redhat.com>
* tree: Add searchabilityLogan Rathbone2023-02-021-0/+11
|
* tree: Initial port to GtkColumnViewLogan Rathbone2023-02-011-13/+3
| | | | | | There are likely bugs. Search functionality still needs to be implemented.
* text: Make resizableLogan Rathbone2023-01-241-0/+1
|
* Initial port to libadwaitaLogan Rathbone2023-01-231-615/+352
|
* Use g_auto* where possible.Logan Rathbone2021-12-291-5/+0
|
* .ui: use resource; cleanup before commencing meson conversion.Logan Rathbone2021-02-131-1/+3
|
* calendar: make it not crash and use GDateTime.Logan Rathbone2021-02-121-0/+4
|
* password: use Builder for consistency with rest of app.Logan Rathbone2021-02-121-0/+72
|
* Tweak layout of msg dialogs. Get font-setter to work with text-info.Logan Rathbone2021-02-121-635/+676
|
* Make zenity run with gtk4 (very unstable).Logan Rathbone2021-02-111-198/+13
|
* convert .ui to gtk4; make calendar, color, about build against gtk4.Logan Rathbone2021-02-101-709/+382
|
* Fix message dialog width and height on recent GtkAlan2017-04-041-4/+4
| | | | | | | | | | | | | The fix for Zenity bug 670496 "Zenity info/error windows grow in height with message length" (https://bugzilla.gnome.org/show_bug.cgi?id=670496) stopped working on recent Gtk, which doesn't seem to honor gtk_widget_set_size_request. This commit workarounds Gtk bug 657621 "Calculate the wrong height of labels wrapping on words" (https://bugzilla.gnome.org/show_bug.cgi?id=657621) by setting label's width-chars and max-width-chars to 60. This magic number was picked from GtkMessageDialog source (https://git.gnome.org/browse/gtk+/tree/gtk/ui/gtkmessagedialog.ui#n48).
* Bug 762347: Addition of entry text width optionArx Cruz2017-04-041-2/+2
| | | | | | This is a bug in the glade file, where the GtkEntry wasn't being filled to fill the width of the window. There is no need to add a --entry-text-width option
* Fixing glade file.Arx Cruz2015-10-021-2/+4
| | | | The entry dialog was with wrong box position
* Fix zenity --listArx Cruz2015-06-231-0/+1
| | | | For some reason, glade is removing some properties from the xml file
* Bug #751332 - zenity --forms does not center in the screenArx Cruz2015-06-231-1/+1
|
* Bug #672090 - Impossible to confirm --text-infoArx Cruz2015-05-291-12/+40
|
* Bug #749359 zenity --list produces incorrect outputArx Cruz2015-05-141-0/+1
|
* 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-221-67/+7
|
* 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
|
* Bug #700249 - Progress dialog does not wrapArx Cruz2014-10-221-22/+25
|
* Added time-remaining support to progress barsScott Pakin2014-10-211-0/+12
| | | | | | Introduced a --time-remaining command-line option that uses the time and percent complete to extrapolate the time remaining until progress reaches 100%.
* Fixing deprecated classes in GtkBuilderArx Cruz2014-05-201-22/+23
|
* Removing some deprecated classes in zenity GtkBuilder fileArx Cruz2014-05-201-242/+254
|
* But #702535 - List box doesn't expand to fill windowArx Cruz2013-10-101-0/+1
|
* msg: Add an option to set a custom dialog iconFlorian Müllner2012-09-251-4/+4
| | | | | | | | 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
* Remove markup from translatable stringsPiotr Drąg2012-05-161-11/+4
| | | | Also manually unbreak the string freeze break.
* Revert "Initial support for list/tree on --forms option Added zenity ↵Arx Cruz2011-10-131-24/+25
| | | | | | --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.
* Initial support for list/tree on --forms option Added zenity --add-list and ↵Arx Cruz2011-10-131-25/+24
| | | | --list-values on --forms option. This is an initial support. Next steps add support to multiple selections and multiple columns
* Fix for bug #611297 Now Zenity have --ok-label and --cancel-label in all ↵Arx Cruz2011-07-261-8/+8
| | | | dialogs. This patch doesn't break old zenity scripts.
* Enable html support in --text-info option. This fix bug #598655, thanks for ↵Arx Cruz2011-07-191-1/+1
| | | | | | | | | | | 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
* This change add a new functionality to text-info:Arx Cruz2011-06-281-3/+34
| | | | | | | | | * 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.
* Bug 651948 - zenity list does not return default value when timeout is overArx Cruz2011-06-161-439/+563
|
* Do not use deprecated separator GtkDialog propertyJavier Jardón2011-02-151-11/+0
|
* Adding missed files and code for --forms option.Arx Cruz2011-01-171-10/+92
|
* Bug 561131 – zenity windows don't appear with the focusLucas Rocha2009-08-061-10/+10
|
* Clean some things in the GtkBuilder port (GnomeBug:578393)Javier Jardón2009-08-061-939/+12
| | | | | | | | * Makefile.am * README * configure.in * po/POTFILES.skip * src/zenity.ui
* Bug 578393 – convert from libglade to GtkBuilderFelix Riemann2009-07-201-0/+1854