Remove ancient/unused flowcanvas and libglademm from repository.
[ardour.git] / libs / gtkmm2 / gdk / src / gdk_extra.defs
1 ;; h2defs.py doesn't seem to list this method. Don't know why. murrayc.
2
3 (define-method render_threshold_alpha
4   (of-object "GdkPixbuf")
5   (c-name "gdk_pixbuf_render_threshold_alpha")
6   (return-type "none")
7   (parameters
8     '("GdkBitmap*" "bitmap")
9     '("int" "src_x")
10     '("int" "src_y")
11     '("int" "dest_x")
12     '("int" "dest_y")
13     '("int" "width")
14     '("int" "height")
15     '("int" "alpha_threshold")
16   )
17 )
18
19 ;; Stuff from gtk headers that really belongs in Gdk:
20
21 (define-function gtk_drag_finish
22   (c-name "gtk_drag_finish")
23   (return-type "none")
24   (parameters
25     '("GdkDragContext*" "context")
26     '("gboolean" "success")
27     '("gboolean" "del")
28     '("guint32" "time")
29   )
30 )
31
32 (define-function gtk_drag_get_source_widget
33   (c-name "gtk_drag_get_source_widget")
34   (return-type "GtkWidget*")
35   (parameters
36     '("GdkDragContext*" "context")
37   )
38 )
39
40 (define-function gtk_drag_set_icon_widget
41   (c-name "gtk_drag_set_icon_widget")
42   (return-type "none")
43   (parameters
44     '("GdkDragContext*" "context")
45     '("GtkWidget*" "widget")
46     '("gint" "hot_x")
47     '("gint" "hot_y")
48   )
49 )
50
51 (define-function gtk_drag_set_icon_pixmap
52   (c-name "gtk_drag_set_icon_pixmap")
53   (return-type "none")
54   (parameters
55     '("GdkDragContext*" "context")
56     '("GdkColormap*" "colormap")
57     '("GdkPixmap*" "pixmap")
58     '("GdkBitmap*" "mask")
59     '("gint" "hot_x")
60     '("gint" "hot_y")
61   )
62 )
63
64 (define-function gtk_drag_set_icon_pixbuf
65   (c-name "gtk_drag_set_icon_pixbuf")
66   (return-type "none")
67   (parameters
68     '("GdkDragContext*" "context")
69     '("GdkPixbuf*" "pixbuf")
70     '("gint" "hot_x")
71     '("gint" "hot_y")
72   )
73 )
74
75 (define-function gtk_drag_set_icon_stock
76   (c-name "gtk_drag_set_icon_stock")
77   (return-type "none")
78   (parameters
79     '("GdkDragContext*" "context")
80     '("const-gchar*" "stock_id")
81     '("gint" "hot_x")
82     '("gint" "hot_y")
83   )
84 )
85
86 (define-function gtk_drag_set_icon_name
87   (c-name "gtk_drag_set_icon_name")
88   (return-type "none")
89   (parameters
90     '("GdkDragContext*" "context")
91     '("const-gchar*" "icon_name")
92     '("gint" "hot_x")
93     '("gint" "hot_y")
94   )
95 )
96
97 (define-function gtk_drag_set_icon_default
98   (c-name "gtk_drag_set_icon_default")
99   (return-type "none")
100   (parameters
101     '("GdkDragContext*" "context")
102   )
103 )