[gtk/gbsneto/filechooser-column-view] filechooserwidget: Make rename popover work



commit fccfc35adeecd995e947b6f91a1c119b601f96d4
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Oct 16 21:40:00 2022 -0400

    filechooserwidget: Make rename popover work
    
    Make the rename popover operate on the file that
    the context menu was opened for, and pop up at
    the same position.

 gtk/gtkfilechooserwidget.c | 43 +++++++------------------------------------
 1 file changed, 7 insertions(+), 36 deletions(-)
---
diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
index 20dceaae61..bfdf489b8c 100644
--- a/gtk/gtkfilechooserwidget.c
+++ b/gtk/gtkfilechooserwidget.c
@@ -207,6 +207,8 @@ struct _GtkFileChooserWidget
 
   GtkWidget *browse_files_popover;
   guint browse_files_popover_item;
+  double browse_files_popover_x;
+  double browse_files_popover_y;
 
   GtkWidget *browse_new_folder_button;
   GtkSizeGroup *browse_path_bar_size_group;
@@ -1310,35 +1312,23 @@ rename_file_cb (GSimpleAction *action,
                 gpointer       data)
 {
   GtkFileChooserWidget *impl = data;
-  GtkBitsetIter iter;
   GdkRectangle rect;
-  GtkBitset *bitset;
   GFileInfo *info;
   GFile *file;
-  double x, y;
-  guint position;
   char *filename;
 
-  bitset = gtk_selection_model_get_selection (impl->selection_model);
-  if (!gtk_bitset_iter_init_first (&iter, bitset, &position))
-    return;
-
   /* insensitive until we change the name */
   gtk_widget_set_sensitive (impl->rename_file_rename_button, FALSE);
 
-  info = g_list_model_get_item (G_LIST_MODEL (impl->selection_model), position);
+  info = g_list_model_get_item (G_LIST_MODEL (impl->selection_model), impl->browse_files_popover_item);
   file = _gtk_file_info_get_file (info);
   g_clear_object (&info);
 
   impl->rename_file_source_file = g_object_ref (file);
   rect = (GdkRectangle) { 0, 0, 1, 1 };
 
-  gtk_widget_translate_coordinates (impl->browse_files_column_view,
-                                    GTK_WIDGET (impl),
-                                    rect.x, rect.y,
-                                    &x, &y);
-  rect.x = x;
-  rect.y = y;
+  rect.x = impl->browse_files_popover_x;
+  rect.y = impl->browse_files_popover_y;
 
   filename = g_file_get_basename (impl->rename_file_source_file);
   gtk_editable_set_text (GTK_EDITABLE (impl->rename_file_name_entry), filename);
@@ -1674,6 +1664,8 @@ popup_file_list_menu (GSimpleAction *action,
   g_variant_get (parameter, "(udd)", &position, &x, &y);
 
   impl->browse_files_popover_item = position;
+  impl->browse_files_popover_x = x;
+  impl->browse_files_popover_y = y;
 
   file_list_show_popover (impl, x, y);
 }
@@ -1862,27 +1854,6 @@ files_list_restrict_key_presses (GtkEventControllerKey *controller,
   return GDK_EVENT_PROPAGATE;
 }
 
-/* Callback used when a button is pressed on the file list.  We trap button 3 to
- * bring up a popup menu.
- */
-
-typedef struct {
-  GtkFileChooserWidget *impl;
-  double x;
-  double y;
-} PopoverData;
-
-static gboolean
-file_list_show_popover_in_idle (gpointer data)
-{
-  PopoverData *pd = data;
-
-  file_list_show_popover (pd->impl, pd->x, pd->y);
-  g_free (data);
-
-  return G_SOURCE_REMOVE;
-}
-
 static char *
 column_view_get_file_date (GtkListItem *item,
                            GFileInfo   *info)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]