[file-roller/wip/gtk4: 37/54] delete dialog: use the check button functions
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [file-roller/wip/gtk4: 37/54] delete dialog: use the check button functions
- Date: Sun, 2 Oct 2022 17:56:50 +0000 (UTC)
commit 79754c96b8c67ec4731f17a751336ba9366a3529
Author: Paolo Bacchilega <paobac src gnome org>
Date: Sat Oct 1 22:17:33 2022 +0200
delete dialog: use the check button functions
src/dlg-delete.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/src/dlg-delete.c b/src/dlg-delete.c
index 4fd4f29f..dbdf0f7d 100644
--- a/src/dlg-delete.c
+++ b/src/dlg-delete.c
@@ -63,8 +63,8 @@ response_cb (GtkDialog *widget,
switch (response_id) {
case GTK_RESPONSE_OK:
- selected_files = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON
(data->d_selected_files_radio));
- pattern_files = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (data->d_files_radio));
+ selected_files = gtk_check_button_get_active (GTK_CHECK_BUTTON
(data->d_selected_files_radio));
+ pattern_files = gtk_check_button_get_active (GTK_CHECK_BUTTON (data->d_files_radio));
/* create the file list. */
@@ -99,8 +99,8 @@ static void
entry_changed_cb (GtkEditable *widget,
DialogData *data)
{
- if (! gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (data->d_files_radio)))
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (data->d_files_radio), TRUE);
+ if (! gtk_check_button_get_active (GTK_CHECK_BUTTON (data->d_files_radio)))
+ gtk_check_button_set_active (GTK_CHECK_BUTTON (data->d_files_radio), TRUE);
}
@@ -124,7 +124,9 @@ dlg_delete__common (FrWindow *window,
"transient-for", GTK_WINDOW (window),
"modal", TRUE,
"use-header-bar", _gtk_settings_get_dialogs_use_header (),
+ "title", _("Delete"),
NULL);
+ gtk_window_set_default_size (GTK_WINDOW (data->dialog), 500, -1);
gtk_dialog_add_buttons (GTK_DIALOG (data->dialog),
_GTK_LABEL_CANCEL, GTK_RESPONSE_CANCEL,
@@ -146,10 +148,10 @@ dlg_delete__common (FrWindow *window,
/* Set widgets data. */
if (data->selected_files != NULL)
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (data->d_selected_files_radio), TRUE);
+ gtk_check_button_set_active (GTK_CHECK_BUTTON (data->d_selected_files_radio), TRUE);
else {
gtk_widget_set_sensitive (data->d_selected_files_radio, FALSE);
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (data->d_all_files_radio), TRUE);
+ gtk_check_button_set_active (GTK_CHECK_BUTTON (data->d_all_files_radio), TRUE);
}
/* Set the signals handlers. */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]