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

◆ pgui_create_dumper_options_dialog()

static void pgui_create_dumper_options_dialog ( )
static

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

2751{
2752 GtkWidget *table_options;
2753 GtkWidget *align_options_center;
2754
2755 dialog_dumper_options = gtk_dialog_new_with_buttons(_("Export Options"), GTK_WINDOW(window_main), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, GTK_RESPONSE_OK, NULL);
2756
2757 gtk_window_set_modal (GTK_WINDOW(dialog_dumper_options), TRUE);
2758 gtk_window_set_keep_above (GTK_WINDOW(dialog_dumper_options), TRUE);
2759 gtk_window_set_default_size (GTK_WINDOW(dialog_dumper_options), 180, -1);
2760
2761 table_options = gtk_table_new(3, 3, TRUE);
2762 gtk_container_set_border_width (GTK_CONTAINER (table_options), 12);
2763 gtk_table_set_row_spacings(GTK_TABLE(table_options), 5);
2764 gtk_table_set_col_spacings(GTK_TABLE(table_options), 10);
2765
2766 pgui_create_options_dialog_add_label(table_options, _("Include gid column in the exported table"), 0.0, 0);
2767 checkbutton_dumper_options_includegid = gtk_check_button_new();
2768 align_options_center = gtk_alignment_new( 0.5, 0.5, 0.0, 1.0 );
2769 gtk_table_attach_defaults(GTK_TABLE(table_options), align_options_center, 0, 1, 0, 1 );
2770 gtk_container_add (GTK_CONTAINER (align_options_center), checkbutton_dumper_options_includegid);
2771
2772 pgui_create_options_dialog_add_label(table_options, _("Preserve case of column names"), 0.0, 1);
2773 checkbutton_dumper_options_keep_fieldname_case = gtk_check_button_new();
2774 align_options_center = gtk_alignment_new( 0.5, 0.5, 0.0, 1.0 );
2775 gtk_table_attach_defaults(GTK_TABLE(table_options), align_options_center, 0, 1, 1, 2 );
2776 gtk_container_add (GTK_CONTAINER (align_options_center), checkbutton_dumper_options_keep_fieldname_case);
2777
2778 pgui_create_options_dialog_add_label(table_options, _("Escape column names"), 0.0, 2);
2779 checkbutton_dumper_options_unescapedattrs = gtk_check_button_new();
2780 align_options_center = gtk_alignment_new( 0.5, 0.5, 0.0, 1.0 );
2781 gtk_table_attach_defaults(GTK_TABLE(table_options), align_options_center, 0, 1, 2, 3 );
2782 gtk_container_add (GTK_CONTAINER (align_options_center), checkbutton_dumper_options_unescapedattrs);
2783
2784 /* Catch the response from the dialog */
2785 g_signal_connect(dialog_dumper_options, "response", G_CALLBACK(pgui_action_dumper_options_close), dialog_dumper_options);
2786 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog_dumper_options)->vbox), table_options, FALSE, FALSE, 0);
2787
2788 /* Hook the delete event so we don't destroy the dialog (just hide) if cancelled */
2789 gtk_signal_connect(GTK_OBJECT(dialog_dumper_options), "delete_event", GTK_SIGNAL_FUNC(pgui_event_popup_delete), NULL);
2790}
#define TRUE
Definition dbfopen.c:73
#define FALSE
Definition dbfopen.c:72
static gint pgui_event_popup_delete(GtkWidget *widget, GdkEvent *event, gpointer data)
static GtkWidget * dialog_dumper_options
static void pgui_action_dumper_options_close(GtkWidget *widget, gint response, gpointer data)
static GtkWidget * checkbutton_dumper_options_keep_fieldname_case
static void pgui_create_options_dialog_add_label(GtkWidget *table, const char *str, gfloat alignment, int row)
static GtkWidget * window_main
static GtkWidget * checkbutton_dumper_options_unescapedattrs
static GtkWidget * checkbutton_dumper_options_includegid
#define _(String)
Definition shpcommon.h:24

References _, checkbutton_dumper_options_includegid, checkbutton_dumper_options_keep_fieldname_case, checkbutton_dumper_options_unescapedattrs, dialog_dumper_options, FALSE, pgui_action_dumper_options_close(), pgui_create_options_dialog_add_label(), pgui_event_popup_delete(), TRUE, and window_main.

Referenced by main().

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