PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ pgui_create_options_dialog_add_label()

static void pgui_create_options_dialog_add_label ( GtkWidget *  table,
const char *  str,
gfloat  alignment,
int  row 
)
static

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

Referenced by pgui_create_dumper_options_dialog(), and pgui_create_loader_options_dialog().

2663 {
2664  GtkWidget *align = gtk_alignment_new(alignment, 0.5, 0.0, 1.0);
2665  GtkWidget *label = gtk_label_new(str);
2666  gtk_table_attach_defaults(GTK_TABLE(table), align, 1, 3, row, row + 1);
2667  gtk_container_add(GTK_CONTAINER (align), label);
2668 }
Here is the caller graph for this function: