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

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

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

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: