1335 GtkTreeSelection *chooser_selection;
1336 GtkTreeModel *model;
1337 GList *selected_rows_list, *selected_row;
1339 GtkTreePath *tree_path;
1344 pgui_seterr(
_(
"Unable to connect to the database - please check your connection settings"));
1363 chooser_selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(
chooser_tree));
1365 selected_rows_list = gtk_tree_selection_get_selected_rows(chooser_selection, &model);
1366 selected_row = g_list_first(selected_rows_list);
1367 while (selected_row)
1370 tree_path = (GtkTreePath *)g_list_nth_data(selected_row, 0);
1371 gtk_tree_model_get_iter(model, &iter, tree_path);
1378 selected_row = g_list_next(selected_row);
1382 g_list_foreach(selected_row, (GFunc)gtk_tree_path_free, NULL);
1383 g_list_free(selected_row);
static int connection_test(void)
static SHPDUMPERCONFIG * create_new_table_config(GtkTreeIter *iter)
static void pgui_seterr(const char *fmt,...)
static GtkWidget * dialog_tablechooser
static void update_table_chooser_from_database()
static void update_conn_ui_from_conn_config(void)
static GtkWidget * window_conn
static void pgui_raise_error_dialogue(void)
static void add_dumper_table_config_to_list(SHPDUMPERCONFIG *dumper_table_config, GtkListStore *chooser_liststore, GtkTreeIter *chooser_iter)
GtkListStore * chooser_filtered_table_list_store