PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ 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 2335 of file shp2pgsql-gui.c.

2339{
2340 GtkTreeIter iter;
2341 gpointer gptr;
2342 gint columnindex;
2343 SHPDUMPERCONFIG *dumper_table_config;
2344
2345 /* Empty doesn't fly */
2346 if (strlen(new_text) == 0)
2347 return;
2348
2349 /* Update the model with the current edit change */
2350 columnindex = *(gint *)column;
2351 gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(export_table_list_store), &iter, path);
2352 gtk_list_store_set(export_table_list_store, &iter, columnindex, new_text, -1);
2353
2354 /* Grab the SHPDUMPERCONFIG from the EXPORT_POINTER_COLUMN for the list store */
2355 gtk_tree_model_get(GTK_TREE_MODEL(export_table_list_store), &iter, EXPORT_POINTER_COLUMN, &gptr, -1);
2356 dumper_table_config = (SHPDUMPERCONFIG *)gptr;
2357
2358 /* Update the configuration from the current UI data */
2359 update_dumper_table_config_from_listview_iter(&iter, dumper_table_config);
2360
2361 /* Now refresh the listview UI row with the new configuration */
2362 gtk_list_store_set(export_table_list_store, &iter,
2363 EXPORT_SCHEMA_COLUMN, dumper_table_config->schema,
2364 EXPORT_TABLE_COLUMN, dumper_table_config->table,
2365 EXPORT_GEOMETRY_COLUMN, dumper_table_config->geo_col_name,
2366 EXPORT_FILENAME_COLUMN, dumper_table_config->shp_file,
2367 -1);
2368
2369 return;
2370}
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

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: