Mercurial > cropper
annotate interface.c @ 14:da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
author | meillo@marmaro.de |
---|---|
date | Thu, 04 Mar 2010 18:31:28 +0100 |
parents | 13bc21684b8a |
children | 7dbf3879939a |
rev | line source |
---|---|
0 | 1 #include <sys/types.h> |
2 #include <sys/stat.h> | |
3 #include <unistd.h> | |
4 #include <string.h> | |
5 #include <stdio.h> | |
6 | |
7 #include <gdk/gdkkeysyms.h> | |
8 #include <gtk/gtk.h> | |
7
ec2d11d96fb0
image is now gdk-pixbuff; zoom implemented in a basic way
meillo@marmaro.de
parents:
5
diff
changeset
|
9 #include <gdk-pixbuf/gdk-pixbuf.h> |
0 | 10 |
5
61e5a1727231
added image widget, that displays the image
meillo@marmaro.de
parents:
4
diff
changeset
|
11 #include "main.h" |
0 | 12 #include "callbacks.h" |
13 #include "support.h" | |
14 | |
15 #define GLADE_HOOKUP_OBJECT(component,widget,name) \ | |
11 | 16 g_object_set_data_full(G_OBJECT(component), name, \ |
17 gtk_widget_ref(widget),(GDestroyNotify) gtk_widget_unref) | |
0 | 18 |
19 #define GLADE_HOOKUP_OBJECT_NO_REF(component,widget,name) \ | |
11 | 20 g_object_set_data(G_OBJECT(component), name, widget) |
0 | 21 |
22 GtkWidget* | |
11 | 23 create_cropper_window(void) |
0 | 24 { |
25 GtkWidget *cropper_window; | |
26 GtkWidget *dialog_vbox1; | |
14
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
27 GtkWidget *status; |
0 | 28 GtkWidget *label1; |
29 GtkWidget *label2; | |
4
2f11ab3e6047
added option handling; added output for convert; commented all ratio code cause it is not really important now
meillo@marmaro.de
parents:
2
diff
changeset
|
30 |
0 | 31 |
11 | 32 cropper_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
33 gtk_widget_set_name(cropper_window, "cropper_window"); | |
34 gtk_container_set_border_width(GTK_CONTAINER(cropper_window), 6); | |
14
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
35 gtk_window_set_title(GTK_WINDOW(cropper_window), "cropper-0.2"); |
0 | 36 |
11 | 37 dialog_vbox1 = gtk_vbox_new(FALSE, 6); |
38 gtk_widget_set_name(dialog_vbox1, "dialog_vbox1"); | |
39 gtk_widget_show(dialog_vbox1); | |
40 gtk_container_add(GTK_CONTAINER(cropper_window), dialog_vbox1); | |
0 | 41 |
14
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
42 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
43 status = gtk_hbox_new(FALSE, 0); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
44 gtk_widget_set_name(status, "status"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
45 gtk_widget_show(status); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
46 gtk_box_pack_end(GTK_BOX(dialog_vbox1), status, FALSE, FALSE, 0); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
47 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
48 label1 = gtk_label_new("zoom:"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
49 gtk_widget_set_name(label1, "label1"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
50 gtk_widget_show(label1); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
51 gtk_box_pack_start(GTK_BOX(status), label1, FALSE, FALSE, 0); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
52 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
53 label2 = gtk_label_new("1.0"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
54 gtk_widget_set_name(label2, "label2"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
55 gtk_widget_show(label2); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
56 gtk_box_pack_start(GTK_BOX(status), label2, FALSE, FALSE, 0); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
57 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
58 /* image_area */ |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
59 image_buffer = gdk_pixbuf_new_from_file(image_filename, NULL); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
60 image_area = gtk_image_new_from_pixbuf(image_buffer); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
61 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
62 gtk_widget_set_name(image_area, "image_area"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
63 gtk_widget_show(image_area); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
64 gtk_box_pack_start(GTK_BOX(dialog_vbox1), image_area, TRUE, TRUE, 0); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
65 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
66 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
67 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
68 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
69 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
70 g_signal_connect(G_OBJECT(cropper_window), "show", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
71 G_CALLBACK(on_cropper_window_create), NULL); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
72 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
73 g_signal_connect(G_OBJECT(cropper_window), "destroy", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
74 G_CALLBACK(on_cropper_window_destroy), NULL); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
75 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
76 g_signal_connect(cropper_window, "key-press-event", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
77 G_CALLBACK(on_key_press), NULL); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
78 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
79 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
80 /* Store pointers to all widgets, for use by lookup_widget(). */ |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
81 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
82 GLADE_HOOKUP_OBJECT_NO_REF(cropper_window, cropper_window, "cropper_window"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
83 GLADE_HOOKUP_OBJECT(cropper_window, dialog_vbox1, "dialog_vbox1"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
84 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
85 GLADE_HOOKUP_OBJECT(cropper_window, label1, "label1"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
86 GLADE_HOOKUP_OBJECT(cropper_window, label2, "label2"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
87 GLADE_HOOKUP_OBJECT(cropper_window, status, "status"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
88 GLADE_HOOKUP_OBJECT(cropper_window, image_area, "image_area"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
89 GLADE_HOOKUP_OBJECT(cropper_window,(GtkWidget*) image_buffer, "image_buffer"); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
90 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
91 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
92 return cropper_window; |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
93 } |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
94 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
95 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
96 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
97 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
98 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
99 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
100 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
101 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
102 |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
103 /* |
11 | 104 gtk_container_set_border_width(GTK_CONTAINER(hbox1), 5); |
0 | 105 |
11 | 106 label1 = gtk_label_new("<b>Selection</b>"); |
107 gtk_label_set_use_markup(GTK_LABEL(label1), TRUE); | |
108 gtk_misc_set_alignment(GTK_MISC(label1), 0, 0.5); | |
0 | 109 |
11 | 110 gtk_table_set_row_spacings(GTK_TABLE(table2), 6); |
111 gtk_table_set_col_spacings(GTK_TABLE(table2), 6); | |
0 | 112 |
11 | 113 gtk_table_attach(GTK_TABLE(table2), label3, 0, 1, 0, 1,(GtkAttachOptions)(GTK_FILL), |
114 (GtkAttachOptions)(0), 0, 0); | |
115 gtk_misc_set_alignment(GTK_MISC(label3), 0, 0.5); | |
0 | 116 |
11 | 117 frame1 = gtk_frame_new(NULL); |
118 gtk_widget_set_name(frame1, "frame1"); | |
119 gtk_widget_show(frame1); | |
120 gtk_box_pack_start(GTK_BOX(vbox5), frame1, TRUE, TRUE, 0); | |
121 gtk_frame_set_shadow_type(GTK_FRAME(frame1), GTK_SHADOW_NONE); | |
0 | 122 |
11 | 123 vbox7 = gtk_vbox_new(FALSE, 6); |
124 gtk_widget_set_name(vbox7, "vbox7"); | |
125 gtk_widget_show(vbox7); | |
126 gtk_container_add(GTK_CONTAINER(frame1), vbox7); | |
0 | 127 |
14
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
128 g_signal_connect(G_OBJECT(lookup_widget(cropper_window, "crop_x_spinbutton")), "value_changed", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
129 G_CALLBACK(selection_x_value_changed_cb), data); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
130 g_signal_connect(G_OBJECT(lookup_widget(cropper_window, "crop_image")), "selection_changed", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
131 G_CALLBACK(selection_changed_cb), data); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
132 g_signal_connect(G_OBJECT(lookup_widget(cropper_window, "ratio_swap_button")), "clicked", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
133 G_CALLBACK(ratio_swap_button_cb), NULL); |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
134 g_signal_connect(G_OBJECT(lookup_widget(cropper_window, "ratio_optionmenu")), "changed", |
da18f2d4f92f
removed all buttons and stuff from the window; cleaned up
meillo@marmaro.de
parents:
13
diff
changeset
|
135 G_CALLBACK(ratio_optionmenu_changed_cb), NULL); |
11 | 136 g_signal_connect(G_OBJECT(ratio_none), "activate", |
12 | 137 G_CALLBACK(on_ratio_none_activate), NULL); |
4
2f11ab3e6047
added option handling; added output for convert; commented all ratio code cause it is not really important now
meillo@marmaro.de
parents:
2
diff
changeset
|
138 */ |