PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ pgui_create_connection_window()

static void pgui_create_connection_window ( )
static

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

3193 {
3194  /* Default text width */
3195  static int text_width = 12;
3196 
3197  /* Vbox container */
3198  GtkWidget *vbox;
3199 
3200  /* Reusable label handle */
3201  GtkWidget *label;
3202 
3203  /* PgSQL section */
3204  GtkWidget *frame_pg, *table_pg;
3205 
3206  /* OK button */
3207  GtkWidget *button_okay;
3208 
3209  /* Create the main top level window with a 10px border */
3210  window_conn = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3211  gtk_container_set_border_width(GTK_CONTAINER(window_conn), 10);
3212  gtk_window_set_title(GTK_WINDOW(window_conn), _("PostGIS connection"));
3213  gtk_window_set_position(GTK_WINDOW(window_conn), GTK_WIN_POS_CENTER);
3214  gtk_window_set_modal(GTK_WINDOW(window_conn), TRUE);
3215 
3216  /* Use a vbox as the base container */
3217  vbox = gtk_vbox_new(FALSE, 15);
3218 
3219  /*
3220  ** PostGIS info in a table
3221  */
3222  frame_pg = gtk_frame_new(_("PostGIS Connection"));
3223  table_pg = gtk_table_new(5, 3, TRUE);
3224  gtk_container_set_border_width (GTK_CONTAINER (table_pg), 8);
3225  gtk_table_set_col_spacings(GTK_TABLE(table_pg), 7);
3226  gtk_table_set_row_spacings(GTK_TABLE(table_pg), 3);
3227 
3228  /* User name row */
3229  label = gtk_label_new(_("Username:"));
3230  entry_pg_user = gtk_entry_new();
3231  gtk_table_attach_defaults(GTK_TABLE(table_pg), label, 0, 1, 0, 1 );
3232  gtk_table_attach_defaults(GTK_TABLE(table_pg), entry_pg_user, 1, 3, 0, 1 );
3233 
3234  /* Password row */
3235  label = gtk_label_new(_("Password:"));
3236  entry_pg_pass = gtk_entry_new();
3237  gtk_entry_set_visibility( GTK_ENTRY(entry_pg_pass), FALSE);
3238  gtk_table_attach_defaults(GTK_TABLE(table_pg), label, 0, 1, 1, 2 );
3239  gtk_table_attach_defaults(GTK_TABLE(table_pg), entry_pg_pass, 1, 3, 1, 2 );
3240 
3241  /* Host and port row */
3242  label = gtk_label_new(_("Server Host:"));
3243  entry_pg_host = gtk_entry_new();
3244  gtk_entry_set_width_chars(GTK_ENTRY(entry_pg_host), text_width);
3245  gtk_table_attach_defaults(GTK_TABLE(table_pg), label, 0, 1, 2, 3 );
3246  gtk_table_attach_defaults(GTK_TABLE(table_pg), entry_pg_host, 1, 2, 2, 3 );
3247 
3248  entry_pg_port = gtk_entry_new();
3249  gtk_entry_set_width_chars(GTK_ENTRY(entry_pg_port), 8);
3250  gtk_table_attach_defaults(GTK_TABLE(table_pg), entry_pg_port, 2, 3, 2, 3 );
3251 
3252  /* Database row */
3253  label = gtk_label_new(_("Database:"));
3254  entry_pg_db = gtk_entry_new();
3255  gtk_table_attach_defaults(GTK_TABLE(table_pg), label, 0, 1, 3, 4 );
3256  gtk_table_attach_defaults(GTK_TABLE(table_pg), entry_pg_db, 1, 3, 3, 4 );
3257 
3258  /* Add table into containing frame */
3259  gtk_container_add(GTK_CONTAINER(frame_pg), table_pg);
3260 
3261  /* Add frame into containing vbox */
3262  gtk_container_add(GTK_CONTAINER(window_conn), vbox);
3263 
3264  /* Add the vbox into the window */
3265  gtk_container_add(GTK_CONTAINER(vbox), frame_pg);
3266 
3267  /* Create a simple "OK" button for the dialog */
3268  button_okay = gtk_button_new_with_label(_("OK"));
3269  gtk_container_add(GTK_CONTAINER(vbox), button_okay);
3270  g_signal_connect(G_OBJECT(button_okay), "clicked", G_CALLBACK(pgui_action_connection_okay), NULL);
3271 
3272  /* Hook the delete event so we don't destroy the dialog (only hide it) if cancelled */
3273  gtk_signal_connect(GTK_OBJECT(window_conn), "delete_event", GTK_SIGNAL_FUNC(pgui_event_popup_delete), NULL);
3274 
3275  return;
3276 }
#define TRUE
Definition: dbfopen.c:169
#define FALSE
Definition: dbfopen.c:168
static GtkWidget * entry_pg_port
static gint pgui_event_popup_delete(GtkWidget *widget, GdkEvent *event, gpointer data)
static GtkWidget * entry_pg_host
static GtkWidget * entry_pg_user
static GtkWidget * entry_pg_db
static GtkWidget * entry_pg_pass
static GtkWidget * window_conn
Definition: shp2pgsql-gui.c:98
static void pgui_action_connection_okay(GtkWidget *widget, gpointer data)
#define _(String)
Definition: shpcommon.h:24

References _, entry_pg_db, entry_pg_host, entry_pg_pass, entry_pg_port, entry_pg_user, FALSE, pgui_action_connection_okay(), pgui_event_popup_delete(), TRUE, and window_conn.

Referenced by main().

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