Lines Matching refs:tmp
2207 GtkWidget *tmp; in find_replace_dialog_create() local
2307 tmp = gtk_label_new(CONV(_("Find what:"))); in find_replace_dialog_create()
2309 gtk_label_set_xalign(GTK_LABEL(tmp), 0.0); in find_replace_dialog_create()
2310 gtk_label_set_yalign(GTK_LABEL(tmp), 0.5); in find_replace_dialog_create()
2318 g_object_set_property(G_OBJECT(tmp), "xalign", &align_val); in find_replace_dialog_create()
2321 g_object_set_property(G_OBJECT(tmp), "yalign", &align_val); in find_replace_dialog_create()
2326 gtk_misc_set_alignment(GTK_MISC(tmp), (gfloat)0.0, (gfloat)0.5); in find_replace_dialog_create()
2329 gtk_grid_attach(GTK_GRID(table), tmp, 0, 0, 2, 1); in find_replace_dialog_create()
2331 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 0, 1, in find_replace_dialog_create()
2352 tmp = gtk_label_new(CONV(_("Replace with:"))); in find_replace_dialog_create()
2354 gtk_label_set_xalign(GTK_LABEL(tmp), 0.0); in find_replace_dialog_create()
2355 gtk_label_set_yalign(GTK_LABEL(tmp), 0.5); in find_replace_dialog_create()
2363 g_object_set_property(G_OBJECT(tmp), "xalign", &align_val); in find_replace_dialog_create()
2366 g_object_set_property(G_OBJECT(tmp), "yalign", &align_val); in find_replace_dialog_create()
2371 gtk_misc_set_alignment(GTK_MISC(tmp), (gfloat)0.0, (gfloat)0.5); in find_replace_dialog_create()
2374 gtk_grid_attach(GTK_GRID(table), tmp, 0, 1, 2, 1); in find_replace_dialog_create()
2376 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 1, 2, in find_replace_dialog_create()
2448 tmp = gtk_frame_new(CONV(_("Direction"))); in find_replace_dialog_create()
2451 gtk_grid_attach(GTK_GRID(table), tmp, 5, 2, 2, 4); in find_replace_dialog_create()
2453 gtk_table_attach(GTK_TABLE(table), tmp, 1023, 1024, 2, 4, in find_replace_dialog_create()
2458 gtk_grid_attach(GTK_GRID(table), tmp, 5, 2, 1, 3); in find_replace_dialog_create()
2460 gtk_table_attach(GTK_TABLE(table), tmp, 1023, 1024, 1, 3, in find_replace_dialog_create()
2470 gtk_container_add(GTK_CONTAINER(tmp), vbox); in find_replace_dialog_create()
2539 tmp = gtk_button_new_with_mnemonic(_("_Close")); in find_replace_dialog_create()
2541 tmp = gtk_button_new_from_stock(GTK_STOCK_CLOSE); in find_replace_dialog_create()
2543 gtk_widget_set_can_default(tmp, TRUE); in find_replace_dialog_create()
2544 gtk_box_pack_end(GTK_BOX(actionarea), tmp, FALSE, FALSE, 0); in find_replace_dialog_create()
2545 g_signal_connect_swapped(G_OBJECT(tmp), in find_replace_dialog_create()
2553 tmp = gtk_separator_new(GTK_ORIENTATION_VERTICAL); in find_replace_dialog_create()
2555 tmp = gtk_vseparator_new(); in find_replace_dialog_create()
2557 gtk_box_pack_end(GTK_BOX(hbox), tmp, FALSE, FALSE, 10); in find_replace_dialog_create()