PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ pgui_action_handle_dumper_edit()

static void pgui_action_handle_dumper_edit ( GtkCellRendererText *  renderer,
gchar *  path,
gchar *  new_text,
gpointer  column 
)
static

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

2335 {
2336  GtkTreeIter iter;
2337  gpointer gptr;
2338  gint columnindex;
2339  SHPDUMPERCONFIG *dumper_table_config;
2340 
2341  /* Empty doesn't fly */
2342  if (strlen(new_text) == 0)
2343  return;
2344 
2345  /* Update the model with the current edit change */
2346  columnindex = *(gint *)column;
2347  gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(export_table_list_store), &iter, path);
2348  gtk_list_store_set(export_table_list_store, &iter, columnindex, new_text, -1);
2349 
2350  /* Grab the SHPDUMPERCONFIG from the EXPORT_POINTER_COLUMN for the list store */
2351  gtk_tree_model_get(GTK_TREE_MODEL(export_table_list_store), &iter, EXPORT_POINTER_COLUMN, &gptr, -1);
2352  dumper_table_config = (SHPDUMPERCONFIG *)gptr;
2353 
2354  /* Update the configuration from the current UI data */
2355  update_dumper_table_config_from_listview_iter(&iter, dumper_table_config);
2356 
2357  /* Now refresh the listview UI row with the new configuration */
2358  gtk_list_store_set(export_table_list_store, &iter,
2359  EXPORT_SCHEMA_COLUMN, dumper_table_config->schema,
2360  EXPORT_TABLE_COLUMN, dumper_table_config->table,
2361  EXPORT_GEOMETRY_COLUMN, dumper_table_config->geo_col_name,
2362  EXPORT_FILENAME_COLUMN, dumper_table_config->shp_file,
2363  -1);
2364 
2365  return;
2366 }
static void update_dumper_table_config_from_listview_iter(GtkTreeIter *iter, SHPDUMPERCONFIG *dumper_table_config)
@ EXPORT_TABLE_COLUMN
@ EXPORT_SCHEMA_COLUMN
@ EXPORT_GEOMETRY_COLUMN
@ EXPORT_POINTER_COLUMN
@ EXPORT_FILENAME_COLUMN
GtkListStore * export_table_list_store
Definition: shp2pgsql-gui.c:80

References EXPORT_FILENAME_COLUMN, EXPORT_GEOMETRY_COLUMN, EXPORT_POINTER_COLUMN, EXPORT_SCHEMA_COLUMN, EXPORT_TABLE_COLUMN, export_table_list_store, shp_dumper_config::geo_col_name, shp_dumper_config::schema, shp_dumper_config::shp_file, shp_dumper_config::table, and update_dumper_table_config_from_listview_iter().

Referenced by pgui_create_export_table_table().

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