PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ pgui_action_handle_loader_edit()

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

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

2180 {
2181  GtkTreeIter iter;
2182  gpointer gptr;
2183  gint columnindex;
2184  SHPLOADERCONFIG *loader_file_config;
2185 #define MAXLEN 16
2186  char srid[MAXLEN+1];
2187 
2188  /* Empty doesn't fly */
2189  if (strlen(new_text) == 0)
2190  return;
2191 
2192  /* Update the model with the current edit change */
2193  columnindex = *(gint *)column;
2194  gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(import_file_list_store), &iter, path);
2195  gtk_list_store_set(import_file_list_store, &iter, columnindex, new_text, -1);
2196 
2197  /* Grab the SHPLOADERCONFIG from the IMPORT_POINTER_COLUMN for the list store */
2198  gtk_tree_model_get(GTK_TREE_MODEL(import_file_list_store), &iter, IMPORT_POINTER_COLUMN, &gptr, -1);
2199  loader_file_config = (SHPLOADERCONFIG *)gptr;
2200 
2201  /* Update the configuration from the current UI data */
2202  update_loader_file_config_from_listview_iter(&iter, loader_file_config);
2203 
2204  /* Now refresh the listview UI row with the new configuration */
2205  if ( MAXLEN+1 <= snprintf(srid, MAXLEN+1, "%d", loader_file_config->sr_id) )
2206  {
2207  pgui_logf("Invalid SRID requiring more than %d digits: %d", MAXLEN, loader_file_config->sr_id);
2209  srid[MAXLEN] = '\0';
2210  }
2211 
2212  gtk_list_store_set(import_file_list_store, &iter,
2213  IMPORT_SCHEMA_COLUMN, loader_file_config->schema,
2214  IMPORT_TABLE_COLUMN, loader_file_config->table,
2215  IMPORT_GEOMETRY_COLUMN, loader_file_config->geo_col,
2216  IMPORT_SRID_COLUMN, srid,
2217  -1);
2218 
2219  return;
2220 }
static void static void static void pgui_logf(const char *fmt,...) __attribute__((format(printf
static void pgui_raise_error_dialogue(void)
static void update_loader_file_config_from_listview_iter(GtkTreeIter *iter, SHPLOADERCONFIG *loader_file_config)
@ IMPORT_TABLE_COLUMN
@ IMPORT_POINTER_COLUMN
@ IMPORT_GEOMETRY_COLUMN
@ IMPORT_SCHEMA_COLUMN
@ IMPORT_SRID_COLUMN
GtkListStore * import_file_list_store
Definition: shp2pgsql-gui.c:58
#define MAXLEN

References shp_loader_config::geo_col, import_file_list_store, IMPORT_GEOMETRY_COLUMN, IMPORT_POINTER_COLUMN, IMPORT_SCHEMA_COLUMN, IMPORT_SRID_COLUMN, IMPORT_TABLE_COLUMN, MAXLEN, pgui_logf(), pgui_raise_error_dialogue(), shp_loader_config::schema, shp_loader_config::sr_id, shp_loader_config::table, and update_loader_file_config_from_listview_iter().

Referenced by pgui_create_export_table_table(), pgui_create_import_file_table(), and pgui_create_tablechooser_dialog().

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