|
Revision 488, 2.2 kB
(checked in by jeffrey, 11 months ago)
|
fixed remaining tests failures
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
#ifndef _GTKIMAGEVIEWPERL_H_ |
|---|
| 20 |
#define _GTKIMAGEVIEWPERL_H_ |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
#include <gtkimageview/gtkimageview.h> |
|---|
| 24 |
#include <gtkimageview/gtkimagenav.h> |
|---|
| 25 |
#include <gtkimageview/gtkimagescrollwin.h> |
|---|
| 26 |
#include <gtkimageview/gtkiimagetool.h> |
|---|
| 27 |
#include <gtkimageview/gtkimagetooldragger.h> |
|---|
| 28 |
#include <gtkimageview/gtkimagetoolpainter.h> |
|---|
| 29 |
#include <gtkimageview/gtkimagetoolselector.h> |
|---|
| 30 |
#include <gtkimageview/gtkanimview.h> |
|---|
| 31 |
#include <gtkimageview/gdkpixbufdrawcache.h> |
|---|
| 32 |
#include <gtkimageview/gtkimageview-typebuiltins.h> |
|---|
| 33 |
#include <gtkimageview/cursors.h> |
|---|
| 34 |
#include <gtkimageview/gtkzooms.h> |
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
#include <gtk2perl.h> |
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
#include "gtkimageviewperl-autogen.h" |
|---|
| 41 |
#define GDK_TYPE_PIXBUF_DRAW_OPTS (gdk_pixbuf_draw_opts_get_type ()) |
|---|
| 42 |
GType gdk_pixbuf_draw_opts_get_type (void) G_GNUC_CONST; |
|---|
| 43 |
#define GDK_TYPE_PIXBUF_DRAW_CACHE (gdk_pixbuf_draw_cache_get_type ()) |
|---|
| 44 |
GType gdk_pixbuf_draw_cache_get_type (void) G_GNUC_CONST; |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
#ifndef gperl_sv_is_hash_ref |
|---|
| 48 |
#define gperl_sv_is_hash_ref(sv) \ |
|---|
| 49 |
((sv) && SvOK (sv) && SvROK (sv) && SvTYPE (SvRV (sv)) == SVt_PVHV) |
|---|
| 50 |
#endif |
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
GdkPixbufDrawOpts * SvGdkPixbufDrawOpts (SV * sv); |
|---|
| 54 |
SV * newSVGdkPixbufDrawOpts (GdkPixbufDrawOpts * opts); |
|---|
| 55 |
|
|---|
| 56 |
#endif |
|---|