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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
1 #include <sys/types.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
2 #include <sys/stat.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
3 #include <unistd.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
4 #include <string.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
5 #include <stdio.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
6
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
7 #include <gdk/gdkkeysyms.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
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
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
10
5
61e5a1727231 added image widget, that displays the image
meillo@marmaro.de
parents: 4
diff changeset
11 #include "main.h"
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
12 #include "callbacks.h"
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
13 #include "support.h"
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
14
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
15 #define GLADE_HOOKUP_OBJECT(component,widget,name) \
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
16 g_object_set_data_full(G_OBJECT(component), name, \
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
17 gtk_widget_ref(widget),(GDestroyNotify) gtk_widget_unref)
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
18
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
19 #define GLADE_HOOKUP_OBJECT_NO_REF(component,widget,name) \
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
20 g_object_set_data(G_OBJECT(component), name, widget)
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
21
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
22 GtkWidget*
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
23 create_cropper_window(void)
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
24 {
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
25 GtkWidget *cropper_window;
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
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
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
28 GtkWidget *label1;
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
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
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
31
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
32 cropper_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
33 gtk_widget_set_name(cropper_window, "cropper_window");
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
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
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
36
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
37 dialog_vbox1 = gtk_vbox_new(FALSE, 6);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
38 gtk_widget_set_name(dialog_vbox1, "dialog_vbox1");
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
39 gtk_widget_show(dialog_vbox1);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
40 gtk_container_add(GTK_CONTAINER(cropper_window), dialog_vbox1);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
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
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
104 gtk_container_set_border_width(GTK_CONTAINER(hbox1), 5);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
105
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
106 label1 = gtk_label_new("<b>Selection</b>");
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
107 gtk_label_set_use_markup(GTK_LABEL(label1), TRUE);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
108 gtk_misc_set_alignment(GTK_MISC(label1), 0, 0.5);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
109
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
110 gtk_table_set_row_spacings(GTK_TABLE(table2), 6);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
111 gtk_table_set_col_spacings(GTK_TABLE(table2), 6);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
112
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
113 gtk_table_attach(GTK_TABLE(table2), label3, 0, 1, 0, 1,(GtkAttachOptions)(GTK_FILL),
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
114 (GtkAttachOptions)(0), 0, 0);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
115 gtk_misc_set_alignment(GTK_MISC(label3), 0, 0.5);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
116
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
117 frame1 = gtk_frame_new(NULL);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
118 gtk_widget_set_name(frame1, "frame1");
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
119 gtk_widget_show(frame1);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
120 gtk_box_pack_start(GTK_BOX(vbox5), frame1, TRUE, TRUE, 0);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
121 gtk_frame_set_shadow_type(GTK_FRAME(frame1), GTK_SHADOW_NONE);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
122
11
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
123 vbox7 = gtk_vbox_new(FALSE, 6);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
124 gtk_widget_set_name(vbox7, "vbox7");
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
125 gtk_widget_show(vbox7);
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
126 gtk_container_add(GTK_CONTAINER(frame1), vbox7);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
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
c18ba4ea1514 just cosmetic changes
meillo@marmaro.de
parents: 10
diff changeset
136 g_signal_connect(G_OBJECT(ratio_none), "activate",
12
75a30c850ea0 more cosmetic changes
meillo@marmaro.de
parents: 11
diff changeset
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 */