annotate callbacks.h @ 2:e359bea4c8ac

added code for ratio swap; new names for ratio operations; added main.h; some more
author meillo@marmaro.de
date Tue, 04 Dec 2007 23:20:51 +0100
parents 80535e4deaa4
children 6aaba3a61563
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 <gtk/gtk.h>
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
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 gdouble ratio;
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
4
2
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
5 void on_ratio_none_activate(GtkMenuItem* menuitem, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
6 void on_ratio_square_activate(GtkMenuItem* menuitem, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
7 void on_ratio_4x3_activate(GtkMenuItem* menuitem, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
8 void on_ratio_3x2_activate(GtkMenuItem* menuitem, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
9 void on_ratio_custom_activate(GtkMenuItem* menuitem, gpointer user_data);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
10
2
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
11 void on_ratio_w_spinbutton_value_changed(GtkSpinButton* spinbutton, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
12 void on_ratio_w_spinbutton_change_value(GtkSpinButton* spinbutton, GtkScrollType scroll, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
13 void on_ratio_h_spinbutton_change_value(GtkSpinButton* spinbutton, GtkScrollType scroll, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
14 void on_ratio_h_spinbutton_value_changed(GtkSpinButton* spinbutton, gpointer user_data);
e359bea4c8ac added code for ratio swap; new names for ratio operations; added main.h; some more
meillo@marmaro.de
parents: 1
diff changeset
15 void on_ratio_swap_button_clicked(GtkButton* button, gpointer user_data);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
16
1
80535e4deaa4 nicer code formating
meillo@marmaro.de
parents: 0
diff changeset
17 void on_cropper_window_destroy(GtkObject* object, gpointer user_data);
80535e4deaa4 nicer code formating
meillo@marmaro.de
parents: 0
diff changeset
18 gboolean on_cropper_window_delete_event(GtkWidget* widget, GdkEvent *event, gpointer user_data);
0
ca9155129253 initial commit
meillo@marmaro.de
parents:
diff changeset
19