Home | History | Annotate | Download | only in webkit

Lines Matching defs:table

159 table_add_entry(GtkWidget*  table,
177 gtk_table_attach(GTK_TABLE(table), label,
180 gtk_table_attach_defaults(GTK_TABLE(table), entry,
206 GtkWidget* table;
272 /* The table that holds the entries */
285 table = gtk_table_new(hasRealm ? 3 : 2, 2, FALSE);
286 gtk_table_set_col_spacings(GTK_TABLE(table), 12);
287 gtk_table_set_row_spacings(GTK_TABLE(table), 6);
288 gtk_container_add(GTK_CONTAINER(entryContainer), table);
298 gtk_table_attach_defaults(GTK_TABLE(table), serverMessageDescriptionLabel,
300 gtk_table_attach_defaults(GTK_TABLE(table), serverMessageLabel,
304 authData->loginEntry = table_add_entry(table, hasRealm ? 1 : 0, _("Username:"),
306 authData->passwordEntry = table_add_entry(table, hasRealm ? 2 : 1, _("Password:"),