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

◆ pgui_create_connection_window()

static void pgui_create_connection_window ( )
static

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

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