PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ pgui_action_handle_file_remove()

static void pgui_action_handle_file_remove ( GtkCellRendererToggle *  renderer,
gchar *  path,
gpointer  user_data 
)
static

Definition at line 2252 of file shp2pgsql-gui.c.

2255 {
2256  GtkTreeIter iter;
2257  SHPLOADERCONFIG *loader_file_config;
2258  gpointer gptr;
2259 
2260  /* Grab the SHPLOADERCONFIG from the IMPORT_POINTER_COLUMN for the list store */
2261  gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(import_file_list_store), &iter, path);
2262  gtk_tree_model_get(GTK_TREE_MODEL(import_file_list_store), &iter, IMPORT_POINTER_COLUMN, &gptr, -1);
2263  loader_file_config = (SHPLOADERCONFIG *)gptr;
2264 
2265  /* Free the configuration from memory */
2266  free_loader_config(loader_file_config);
2267 
2268  /* Remove the row from the list */
2269  gtk_list_store_remove(import_file_list_store, &iter);
2270 
2271  /* Update the filename field width */
2273 }
static void update_filename_field_width(void)
@ IMPORT_POINTER_COLUMN
static void free_loader_config(SHPLOADERCONFIG *config)
GtkListStore * import_file_list_store
Definition: shp2pgsql-gui.c:58

References free_loader_config(), import_file_list_store, IMPORT_POINTER_COLUMN, and update_filename_field_width().

Referenced by pgui_create_import_file_table().

Here is the call graph for this function:
Here is the caller graph for this function: