Changeset 415
- Timestamp:
- 09/26/07 18:22:06 (1 year ago)
- Files:
-
- pygtkimageview/src/gtkimageview.defs (modified) (8 diffs)
- pygtkimageview/src/gtkimageview.override (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pygtkimageview/src/gtkimageview.defs
r407 r415 5 5 (c-name "GtkIImageTool") 6 6 (gtype-id "GTK_TYPE_IIMAGE_TOOL") 7 (vtable "GtkIImageToolClass") 7 8 ) 8 9 … … 26 27 (c-name "GtkImageToolDragger") 27 28 (gtype-id "GTK_TYPE_IMAGE_TOOL_DRAGGER") 29 (implements "GtkIImageTool") 28 30 ) 29 31 … … 33 35 (c-name "GtkImageToolSelector") 34 36 (gtype-id "GTK_TYPE_IMAGE_TOOL_SELECTOR") 37 (implements "GtkIImageTool") 35 38 ) 36 39 … … 174 177 ) 175 178 176 (define- methodbutton_press179 (define-virtual button_press 177 180 (of-object "GtkIImageTool") 178 181 (c-name "gtk_iimage_tool_button_press") … … 183 186 ) 184 187 185 (define- methodbutton_release188 (define-virtual button_release 186 189 (of-object "GtkIImageTool") 187 190 (c-name "gtk_iimage_tool_button_release") … … 192 195 ) 193 196 194 (define- methodmotion_notify197 (define-virtual motion_notify 195 198 (of-object "GtkIImageTool") 196 199 (c-name "gtk_iimage_tool_motion_notify") … … 201 204 ) 202 205 203 (define- methodpixbuf_changed206 (define-virtual pixbuf_changed 204 207 (of-object "GtkIImageTool") 205 208 (c-name "gtk_iimage_tool_pixbuf_changed") … … 211 214 ) 212 215 213 (define- methodpaint_image216 (define-virtual paint_image 214 217 (of-object "GtkIImageTool") 215 218 (c-name "gtk_iimage_tool_paint_image") 216 219 (return-type "none") 217 220 (parameters 218 '(" DrawSettings*" "ds")221 '("GdkPixbufDrawOpts*" "opts") 219 222 '("GdkDrawable*" "drawable") 220 223 ) 221 224 ) 222 225 223 (define- methodcursor_at_point226 (define-virtual cursor_at_point 224 227 (of-object "GtkIImageTool") 225 228 (c-name "gtk_iimage_tool_cursor_at_point") pygtkimageview/src/gtkimageview.override
r407 r415 3 3 headers 4 4 #include <Python.h> 5 #include <gtkimageview/gdkpixbufdrawcache.h> 5 6 #include <gtkimageview/gtkanimview.h> 6 7 #include <gtkimageview/gtkimageview.h> … … 90 91 import gtk.Window as PyGtkWindow_Type 91 92 import gtk.Table as PyGtkTable_Type 93 import gtk.gdk.Drawable as PyGdkDrawable_Type 92 94 import gtk.gdk.Pixbuf as PyGdkPixbuf_Type 93 95 import gtk.gdk.PixbufAnimation as PyGdkPixbufAnimation_Type … … 180 182 181 183 184 185 186
