Mercurial > cropper
annotate main.c @ 3:6aaba3a61563
added ratio control code
author | meillo@marmaro.de |
---|---|
date | Wed, 05 Dec 2007 00:08:39 +0100 |
parents | e359bea4c8ac |
children | 2f11ab3e6047 |
rev | line source |
---|---|
0 | 1 #include <gtk/gtk.h> |
2 | |
2
e359bea4c8ac
added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents:
1
diff
changeset
|
3 #include "main.h" |
0 | 4 #include "interface.h" |
5 #include "support.h" | |
6 | |
2
e359bea4c8ac
added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents:
1
diff
changeset
|
7 |
1 | 8 int main (int argc, char *argv[]) { |
0 | 9 |
10 gtk_set_locale (); | |
11 gtk_init (&argc, &argv); | |
12 | |
13 add_pixmap_directory ("/usr/share/pixmaps"); | |
14 | |
15 cropper_window = create_cropper_window (); | |
16 gtk_widget_show (cropper_window); | |
17 | |
18 gtk_main (); | |
19 return 0; | |
20 } | |
21 |