Mercurial > cropper
comparison interface.c @ 10:5e282003f0c1
minor changes; besser indenting
author | meillo@marmaro.de |
---|---|
date | Thu, 04 Mar 2010 13:54:17 +0100 |
parents | 7e1cf00de1df |
children | c18ba4ea1514 |
comparison
equal
deleted
inserted
replaced
9:7e1cf00de1df | 10:5e282003f0c1 |
---|---|
70 GtkWidget *ratio_custom; | 70 GtkWidget *ratio_custom; |
71 GtkWidget *vbox5; | 71 GtkWidget *vbox5; |
72 GtkWidget *frame1; | 72 GtkWidget *frame1; |
73 GtkWidget *vbox7; | 73 GtkWidget *vbox7; |
74 GtkWidget *nav_container; | 74 GtkWidget *nav_container; |
75 GtkWidget *image_area; | |
76 GtkWidget *hbox16; | 75 GtkWidget *hbox16; |
77 GtkWidget *hbox17; | 76 GtkWidget *hbox17; |
78 GtkWidget *crop_zoom_in_button; | 77 GtkWidget *crop_zoom_in_button; |
79 GtkWidget *image2; | 78 GtkWidget *image2; |
80 GtkWidget *crop_zoom_out_button; | 79 GtkWidget *crop_zoom_out_button; |
354 gtk_box_pack_start (GTK_BOX (vbox7), nav_container, TRUE, TRUE, 0); | 353 gtk_box_pack_start (GTK_BOX (vbox7), nav_container, TRUE, TRUE, 0); |
355 | 354 |
356 /* image_area */ | 355 /* image_area */ |
357 image_buffer = gdk_pixbuf_new_from_file(image_filename, NULL); | 356 image_buffer = gdk_pixbuf_new_from_file(image_filename, NULL); |
358 image_area = gtk_image_new_from_pixbuf(image_buffer); | 357 image_area = gtk_image_new_from_pixbuf(image_buffer); |
358 | |
359 gtk_widget_set_name(image_area, "image_area"); | 359 gtk_widget_set_name(image_area, "image_area"); |
360 gtk_widget_show(image_area); | 360 gtk_widget_show(image_area); |
361 gtk_box_pack_start(GTK_BOX(nav_container), image_area, TRUE, TRUE, 0); | 361 gtk_box_pack_start(GTK_BOX(nav_container), image_area, TRUE, TRUE, 0); |
362 | 362 |
363 hbox16 = gtk_hbox_new (FALSE, 6); | 363 hbox16 = gtk_hbox_new (FALSE, 6); |