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

◆ pgui_create_connection_window()

static void pgui_create_connection_window ( )
static

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

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