[progress] coding style fixes
This commit is contained in:
parent
533edc7044
commit
54b171ff82
@ -113,17 +113,16 @@ zenity_progress_handle_stdin (GIOChannel *channel,
|
|||||||
/* Now try to convert the thing to a number */
|
/* Now try to convert the thing to a number */
|
||||||
percentage = atoi (string->str);
|
percentage = atoi (string->str);
|
||||||
if (percentage >= 100) {
|
if (percentage >= 100) {
|
||||||
GObject *button;
|
GObject *button;
|
||||||
button = gtk_builder_get_object(builder, "zenity_progress_ok_button");
|
button = gtk_builder_get_object(builder, "zenity_progress_ok_button");
|
||||||
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 1.0);
|
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 1.0);
|
||||||
gtk_widget_set_sensitive(GTK_WIDGET (button), TRUE);
|
gtk_widget_set_sensitive(GTK_WIDGET (button), TRUE);
|
||||||
gtk_widget_grab_focus(GTK_WIDGET (button));
|
gtk_widget_grab_focus(GTK_WIDGET (button));
|
||||||
if (progress_data->autoclose) {
|
if (progress_data->autoclose) {
|
||||||
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
|
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
|
||||||
gtk_main_quit();
|
gtk_main_quit();
|
||||||
|
}
|
||||||
}
|
} else
|
||||||
} else
|
|
||||||
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), percentage / 100.0);
|
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), percentage / 100.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,12 +135,13 @@ zenity_progress_handle_stdin (GIOChannel *channel,
|
|||||||
GtkWidget *button;
|
GtkWidget *button;
|
||||||
|
|
||||||
button = GTK_WIDGET (gtk_builder_get_object (builder,
|
button = GTK_WIDGET (gtk_builder_get_object (builder,
|
||||||
"zenity_progress_ok_button"));
|
"zenity_progress_ok_button"));
|
||||||
gtk_widget_set_sensitive (button, TRUE);
|
gtk_widget_set_sensitive (button, TRUE);
|
||||||
gtk_widget_grab_focus (button);
|
gtk_widget_grab_focus (button);
|
||||||
|
|
||||||
button = GTK_WIDGET (gtk_builder_get_object (builder,
|
button = GTK_WIDGET (gtk_builder_get_object (builder,
|
||||||
"zenity_progress_cancel_button"));
|
"zenity_progress_cancel_button"));
|
||||||
|
|
||||||
gtk_widget_set_sensitive (button, FALSE);
|
gtk_widget_set_sensitive (button, FALSE);
|
||||||
|
|
||||||
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 1.0);
|
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 1.0);
|
||||||
@ -191,7 +191,7 @@ zenity_progress (ZenityData *data, ZenityProgressData *progress_data)
|
|||||||
gtk_builder_connect_signals (builder, NULL);
|
gtk_builder_connect_signals (builder, NULL);
|
||||||
|
|
||||||
dialog = GTK_WIDGET (gtk_builder_get_object (builder,
|
dialog = GTK_WIDGET (gtk_builder_get_object (builder,
|
||||||
"zenity_progress_dialog"));
|
"zenity_progress_dialog"));
|
||||||
|
|
||||||
g_signal_connect (G_OBJECT (dialog), "response",
|
g_signal_connect (G_OBJECT (dialog), "response",
|
||||||
G_CALLBACK (zenity_progress_dialog_response), data);
|
G_CALLBACK (zenity_progress_dialog_response), data);
|
||||||
@ -238,8 +238,8 @@ zenity_progress_dialog_response (GtkWidget *widget, int response, gpointer data)
|
|||||||
case GTK_RESPONSE_CANCEL:
|
case GTK_RESPONSE_CANCEL:
|
||||||
/* We do not want to kill the parent process, in order to give the user
|
/* We do not want to kill the parent process, in order to give the user
|
||||||
the ability to choose the action to be taken. See bug #310824.
|
the ability to choose the action to be taken. See bug #310824.
|
||||||
But we want to give people the option to choose this behavior.
|
But we want to give people the option to choose this behavior.
|
||||||
-- Monday 27, March 2006
|
-- Monday 27, March 2006
|
||||||
*/
|
*/
|
||||||
if (autokill) {
|
if (autokill) {
|
||||||
kill (getppid (), 1);
|
kill (getppid (), 1);
|
||||||
|
Reference in New Issue
Block a user