| Commit message (Collapse) | Author | Age |
| |
|
| |
|
|\
| |
| |
| |
| | |
Conflicts:
src/msg.c
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
GTK+ documentation recommends to not use an icons, but use
"_OK"/"_Cancel" labels instead
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| | |
|
|/
|
|
| |
--info destroys X11 primary selection content, and does not document that either
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
text-info is now seting the text to UTF-8 properly
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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'
|
| |
|
|
|
|
| |
Finish switch g_timeout_add for g_timeout_add_seconds
|
| |
|
|
|
|
|
|
| |
Introduced a --time-remaining command-line option that uses the time
and percent complete to extrapolate the time remaining until progress
reaches 100%.
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
This fix a problem when user calls --hint=urgency without
specify a :NOTIFY_URGENCY
|
|
|
|
|
| |
This fix the size of GtkLabel width when you have a big
text in the dialog.
|
| |
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
If GTK+ is compiled with multiple backends, then it is necessary
to do a runtime check for the used backend.
|
|
|
|
| |
Fix the broken auto-close option in progress and list dialogs.
|