123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790 |
- #include "config.h"
- #include "foo.h"
- /* A hidden type not exposed publicly, similar to GUPNP's XML wrapper
- object */
- typedef struct _RegressFooHidden RegressFooHidden;
- int regress_foo_init_argv (int argc, char **argv);
- int regress_foo_init_argv_address (int *argc, char ***argv);
- void regress_foo_private_function (RegressFooObject *regress_foo);
- void regress_foo_test_unsigned (unsigned int uint);
- void regress_foo_interface_do_regress_foo (RegressFooInterface *self, int x);
- void regress_foo_do_regress_foo (RegressFooInterface *self, int x);
- int regress_foo_enum_method (RegressFooEnumType regress_foo_enum);
- RegressFooHidden * regress_foo_hidden_copy (const RegressFooHidden *boxed);
- void regress_foo_hidden_free (RegressFooHidden *boxed);
- GType regress_foo_hidden_get_type (void);
- RegressFooBoxed *regress_foo_boxed_copy (const RegressFooBoxed *boxed);
- void regress_foo_boxed_free (RegressFooBoxed *boxed);
- void regress_foo_dbus_data_free (RegressFooDBusData *boxed);
- RegressFooDBusData *regress_foo_dbus_data_copy (const RegressFooDBusData *boxed);
- typedef struct
- {
- int i;
- } PrivateStruct;
- void regress_foo_private_function (RegressFooObject *regress_foo)
- {
- }
- GType
- regress_foo_interface_get_type (void)
- {
- static GType object_type = 0;
- if (!object_type)
- {
- object_type = g_type_register_static_simple (G_TYPE_INTERFACE,
- "RegressFooInterface",
- sizeof (RegressFooInterfaceIface),
- NULL, 0, NULL, 0);
- g_type_interface_add_prerequisite (object_type, G_TYPE_OBJECT);
- }
- return object_type;
- }
- void regress_foo_interface_do_regress_foo (RegressFooInterface *self, int x)
- {
- REGRESS_FOO_INTERFACE_GET_INTERFACE(self)->do_regress_foo (self, x);
- }
- void regress_foo_interface_static_method (int x)
- {
- }
- enum {
- PROP_0,
- PROP_STRING,
- PROP_HIDDEN
- };
- enum {
- SIGNAL,
- LAST_SIGNAL
- };
- static guint regress_foo_object_signals[LAST_SIGNAL] = { 0 };
- static void
- regress_foo_regress_foo_interface_init (gpointer g_iface,
- gpointer iface_data)
- {
- RegressFooInterfaceIface *iface = (RegressFooInterfaceIface *)g_iface;
- iface->do_regress_foo = regress_foo_do_regress_foo;
- }
- enum {
- SUBIFACE_DESTROY_EVENT,
- SUBIFACE_LAST_SIGNAL
- };
- static void
- regress_foo_sub_interface_class_init (gpointer g_class, gpointer class_data);
- static guint regress_foo_subiface_signals[SUBIFACE_LAST_SIGNAL] = { 0 };
- GType
- regress_foo_sub_interface_get_type (void)
- {
- static GType object_type = 0;
- if (!object_type)
- {
- object_type = g_type_register_static_simple (G_TYPE_INTERFACE,
- "RegressFooSubInterface",
- sizeof (RegressFooSubInterfaceIface),
- regress_foo_sub_interface_class_init, 0, NULL, 0);
- g_type_interface_add_prerequisite (object_type, REGRESS_FOO_TYPE_INTERFACE);
- }
- return object_type;
- }
- static void
- regress_foo_sub_interface_class_init (gpointer g_class, gpointer class_data)
- {
- regress_foo_subiface_signals[SUBIFACE_DESTROY_EVENT] =
- g_signal_new ("destroy-event", REGRESS_FOO_TYPE_SUBINTERFACE,
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (RegressFooSubInterfaceIface, destroy_event),
- NULL, NULL, NULL,
- G_TYPE_NONE,
- 0,
- G_TYPE_NONE);
- }
- void
- regress_foo_sub_interface_do_bar (RegressFooSubInterface *self)
- {
- REGRESS_FOO_SUBINTERFACE_GET_INTERFACE(self)->do_bar (self);
- }
- /**
- * regress_foo_sub_interface_do_baz:
- * @self:
- * @callback: (scope call):
- * @user_data:
- */
- void
- regress_foo_sub_interface_do_baz (RegressFooSubInterface *self, GCallback callback, gpointer user_data)
- {
- REGRESS_FOO_SUBINTERFACE_GET_INTERFACE(self)->do_baz (self, callback, user_data);
- }
- G_DEFINE_TYPE_EXTENDED (RegressFooObject, regress_foo_object, G_TYPE_OBJECT,
- 0, G_IMPLEMENT_INTERFACE (REGRESS_FOO_TYPE_INTERFACE,
- regress_foo_regress_foo_interface_init));
- static void
- regress_foo_object_set_property (GObject *object,
- guint prop_id,
- const GValue *value,
- GParamSpec *pspec)
- {
- switch (prop_id)
- {
- case PROP_STRING:
- break;
- case PROP_HIDDEN:
- break;
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
- }
- static void
- regress_foo_object_get_property (GObject *object,
- guint prop_id,
- GValue *value,
- GParamSpec *pspec)
- {
- switch (prop_id)
- {
- case PROP_STRING:
- break;
- case PROP_HIDDEN:
- break;
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
- }
- static void
- regress_foo_object_class_init (RegressFooObjectClass *klass)
- {
- GObjectClass *gobject_class;
- gobject_class = G_OBJECT_CLASS (klass);
- gobject_class->set_property = regress_foo_object_set_property;
- gobject_class->get_property = regress_foo_object_get_property;
- g_object_class_install_property (gobject_class,
- PROP_STRING,
- g_param_spec_string ("string",
- "String nick",
- "The String Property Blurb",
- NULL,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
- g_object_class_install_property (gobject_class,
- PROP_HIDDEN,
- g_param_spec_boxed ("hidden",
- "hidden property",
- "should not be exposed",
- regress_foo_hidden_get_type (),
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
- regress_foo_object_signals[SIGNAL] =
- g_signal_new ("signal",
- G_OBJECT_CLASS_TYPE (gobject_class),
- G_SIGNAL_RUN_LAST,
- 0,
- NULL, NULL,
- (GSignalCMarshaller)g_cclosure_marshal_STRING__OBJECT_POINTER,
- G_TYPE_STRING, 2, G_TYPE_OBJECT, G_TYPE_POINTER);
- }
- static void
- regress_foo_object_init (RegressFooObject *object)
- {
- }
- RegressFooObject *
- regress_foo_object_new (void)
- {
- return g_object_new (REGRESS_FOO_TYPE_OBJECT, NULL);
- }
- GObject *
- regress_foo_object_new_as_super (void)
- {
- return g_object_new (REGRESS_FOO_TYPE_OBJECT, NULL);
- }
- /**
- * regress_foo_object_external_type:
- * @object: a #RegressFooObject
- *
- * Returns: (transfer none): %NULL always
- */
- UtilityObject*
- regress_foo_object_external_type (RegressFooObject *object)
- {
- return NULL;
- }
- void
- regress_foo_object_take_all (RegressFooObject *object, int x, ...)
- {
- }
- void
- regress_foo_do_regress_foo (RegressFooInterface *self, int x)
- {
- }
- void
- regress_foo_object_is_it_time_yet (RegressFooObject *object, time_t time)
- {
- }
- /**
- * regress_foo_object_new_cookie: (skip)
- * @object:
- * @target:
- *
- * Not sure why this test is here...
- */
- RegressFooObjectCookie
- regress_foo_object_new_cookie (RegressFooObject *object, const char *target)
- {
- return NULL;
- }
- const char *
- regress_foo_object_get_name (RegressFooObject *object)
- {
- return "regress_foo";
- }
- char *
- regress_foo_object_dup_name (RegressFooObject *object)
- {
- return g_strdup ("regress_foo");
- }
- /**
- * regress_foo_object_read: (virtual read_fn)
- * @object: obj
- * @offset: offset
- * @length: length
- *
- * Read some stuff.
- */
- void
- regress_foo_object_read (RegressFooObject *object, int offset, int length)
- {
- }
- /**
- * regress_foo_object_skipped_method: (skip)
- * @object: obj
- *
- * This is only useful from C.
- */
- void
- regress_foo_object_skipped_method (RegressFooObject *object)
- {
- }
- G_DEFINE_ABSTRACT_TYPE (RegressFooSubobject, regress_foo_subobject, REGRESS_FOO_TYPE_OBJECT);
- static void
- regress_foo_subobject_class_init (RegressFooSubobjectClass *klass)
- {
- }
- static void
- regress_foo_subobject_init (RegressFooSubobject *object)
- {
- }
- /**
- * regress_foo_object_get_default:
- *
- * This function is intended to match clutter_stage_get_default which
- * uses a C sugar return type.
- *
- * Return value: (type RegressFooSubobject) (transfer none): The global #RegressFooSubobject
- */
- RegressFooObject *
- regress_foo_object_get_default ()
- {
- return NULL;
- }
- int regress_foo_init (void)
- {
- return REGRESS_FOO_SUCCESS_INT;
- }
- int regress_foo_init_argv (int argc, char **argv)
- {
- return REGRESS_FOO_SUCCESS_INT;
- }
- int regress_foo_init_argv_address (int *argc, char ***argv)
- {
- return REGRESS_FOO_SUCCESS_INT;
- }
- GType
- regress_foo_enum_type_get_type (void)
- {
- static GType etype = 0;
- if (G_UNLIKELY(etype == 0)) {
- static const GEnumValue values[] = {
- { REGRESS_FOO_ENUM_ALPHA, "REGRESS_FOO_ENUM_ALPHA", "alpha" },
- { REGRESS_FOO_ENUM_BETA, "REGRESS_FOO_ENUM_BETA", "beta" },
- { REGRESS_FOO_ENUM_DELTA, "REGRESS_FOO_ENUM_DELTA", "delta" },
- { 0, NULL, NULL }
- };
- etype = g_enum_register_static (g_intern_static_string ("RegressFooEnumType"), values);
- }
- return etype;
- }
- int regress_foo_enum_method (RegressFooEnumType regress_foo_enum)
- {
- return 0;
- }
- GType
- regress_foo_flags_type_get_type (void)
- {
- static GType etype = 0;
- if (G_UNLIKELY(etype == 0)) {
- static const GFlagsValue values[] = {
- { REGRESS_FOO_FLAGS_FIRST, "REGRESS_FOO_FLAGS_FIRST", "first" },
- { REGRESS_FOO_FLAGS_SECOND, "REGRESS_FOO_FLAGS_SECOND", "second" },
- { REGRESS_FOO_FLAGS_THIRD, "REGRESS_FOO_FLAGS_THIRD", "third" },
- { 0, NULL, NULL }
- };
- etype = g_flags_register_static (g_intern_static_string ("RegressFooFlagsType"), values);
- }
- return etype;
- }
- struct _RegressFooBoxed
- {
- int private;
- };
- RegressFooBoxed *
- regress_foo_boxed_copy (const RegressFooBoxed *boxed)
- {
- return (RegressFooBoxed *)g_memdup (boxed, sizeof (RegressFooBoxed));
- }
- void
- regress_foo_boxed_free (RegressFooBoxed *boxed)
- {
- g_slice_free (RegressFooBoxed, boxed);
- }
- GType
- regress_foo_boxed_get_type (void)
- {
- static GType our_type = 0;
-
- if (our_type == 0)
- our_type = g_boxed_type_register_static ("RegressFooBoxed",
- (GBoxedCopyFunc) regress_foo_boxed_copy,
- (GBoxedFreeFunc) regress_foo_boxed_free);
- return our_type;
- }
- RegressFooBoxed *
- regress_foo_boxed_new (void)
- {
- return g_slice_new0 (RegressFooBoxed);
- }
- void
- regress_foo_boxed_method (RegressFooBoxed *boxed)
- {
- }
- /* RegressFooDbus */
- struct _RegressFooDBusData
- {
- double private;
- };
- RegressFooDBusData *
- regress_foo_dbus_data_copy (const RegressFooDBusData *boxed)
- {
- return (RegressFooDBusData *)g_memdup (boxed, sizeof (RegressFooDBusData));
- }
- void
- regress_foo_dbus_data_free (RegressFooDBusData *boxed)
- {
- g_slice_free (RegressFooDBusData, boxed);
- }
- GType
- regress_foo_dbus_data_get_type (void)
- {
- static GType our_type = 0;
-
- if (our_type == 0)
- our_type = g_boxed_type_register_static ("RegressFooDBusData",
- (GBoxedCopyFunc) regress_foo_dbus_data_copy,
- (GBoxedFreeFunc) regress_foo_dbus_data_free);
- return our_type;
- }
- GType
- regress_foo_brect_get_type (void)
- {
- static GType our_type = 0;
-
- if (our_type == 0)
- our_type = g_boxed_type_register_static ("RegressFooBRect",
- (GBoxedCopyFunc) g_memdup, /* Won't work */
- (GBoxedFreeFunc) g_free);
- return our_type;
- }
- GType
- regress_foo_bunion_get_type (void)
- {
- static GType our_type = 0;
-
- if (our_type == 0)
- our_type = g_boxed_type_register_static ("RegressFooBUnion",
- (GBoxedCopyFunc) g_memdup, /* Won't work */
- (GBoxedFreeFunc) g_free);
- return our_type;
- }
- void regress_foo_test_unsigned (unsigned int uint)
- {
- }
- /**
- * regress_foo_test_string_array:
- * @array: (array zero-terminated=1):
- */
- void
- regress_foo_test_string_array (char **array)
- {
- }
- /**
- * regress_foo_test_string_array_with_g:
- * @array: (array zero-terminated=1):
- */
- void
- regress_foo_test_string_array_with_g (gchar **array)
- {
- }
- /**
- * regress_foo_test_array:
- *
- * Returns: (element-type utf8) (transfer container):
- */
- GArray *
- regress_foo_test_array (void)
- {
- return NULL;
- }
- /**
- * regress_foo_rectangle_new: (skip)
- *
- * This is a C convenience constructor; we have to (skip)
- * it because it's not a boxed type.
- */
- RegressFooRectangle *
- regress_foo_rectangle_new (int x, int y, int width, int height)
- {
- RegressFooRectangle *r = g_slice_new (RegressFooRectangle);
- r->x = x;
- r->y = y;
- r->width = width;
- r->height = height;
- return r;
- }
- /**
- * regress_foo_rectangle_add:
- * @r1: (inout): add to this rect
- * @r2: source rectangle
- */
- void
- regress_foo_rectangle_add(RegressFooRectangle *r1, const RegressFooRectangle *r2)
- {
- }
- /* RegressFooHidden */
- struct _RegressFooHidden
- {
- char *frob;
- };
- RegressFooHidden *
- regress_foo_hidden_copy (const RegressFooHidden *boxed)
- {
- return (RegressFooHidden *)g_memdup (boxed, sizeof (RegressFooHidden));
- }
- void
- regress_foo_hidden_free (RegressFooHidden *boxed)
- {
- g_slice_free (RegressFooHidden, boxed);
- }
- GType
- regress_foo_hidden_get_type (void)
- {
- static GType our_type = 0;
- if (our_type == 0)
- our_type = g_boxed_type_register_static ("RegressFooHidden",
- (GBoxedCopyFunc) regress_foo_hidden_copy,
- (GBoxedFreeFunc) regress_foo_hidden_free);
- return our_type;
- }
- GType
- regress_foo_error_get_type (void)
- {
- static GType etype = 0;
- if (G_UNLIKELY(etype == 0)) {
- static const GEnumValue values[] = {
- { REGRESS_FOO_ERROR_GOOD, "REGRESS_FOO_ERROR_GOOD", "good" },
- { REGRESS_FOO_ERROR_BAD, "REGRESS_FOO_ERROR_BAD", "bad" },
- { REGRESS_FOO_ERROR_UGLY, "REGRESS_FOO_ERROR_UGLY", "ugly" },
- { 0, NULL, NULL }
- };
- etype = g_enum_register_static (g_intern_static_string ("RegressFooError"), values);
- }
- return etype;
- }
- GQuark
- regress_foo_error_quark (void)
- {
- return g_quark_from_static_string ("regress_foo-error-quark");
- }
- void
- regress_foo_some_variant (guint x, va_list args)
- {
- }
- GType regress_foo_tile_handler_get_type(void);
- /* This setup of a totally hidden parent class matches
- * http://bugzilla.gnome.org/show_bug.cgi?id=561360
- */
- #define REGRESS_FOO_TYPE_TILE_HANDLER (regress_foo_tile_handler_get_type ())
- #define REGRESS_FOO_TILE_HANDLER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), REGRESS_FOO_TYPE_TILE_HANDLER, RegressFooTileHandler))
- #define REGRESS_FOO_IS_TILE_HANDLER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), REGRESS_FOO_TYPE_TILE_HANDLER))
- struct _RegressFooTileHandler
- {
- RegressFooObject parent_instance;
- };
- struct _RegressFooTileHandlerClass
- {
- RegressFooObjectClass parent_class;
- };
- typedef struct _RegressFooTileHandler RegressFooTileHandler;
- typedef struct _RegressFooTileHandlerClass RegressFooTileHandlerClass;
- G_DEFINE_TYPE(RegressFooTileHandler, regress_foo_tile_handler, REGRESS_FOO_TYPE_OBJECT);
- static void
- regress_foo_tile_handler_class_init (RegressFooTileHandlerClass *klass)
- {
- }
- static void
- regress_foo_tile_handler_init (RegressFooTileHandler *object)
- {
- }
- struct _RegressFooBuffer
- {
- RegressFooTileHandler parent_instance;
- };
- struct _RegressFooBufferClass
- {
- RegressFooTileHandlerClass parent_class;
- };
- G_DEFINE_TYPE(RegressFooBuffer, regress_foo_buffer, REGRESS_FOO_TYPE_TILE_HANDLER);
- static void
- regress_foo_buffer_class_init (RegressFooBufferClass *klass)
- {
- }
- static void
- regress_foo_buffer_init (RegressFooBuffer *object)
- {
- }
- void
- regress_foo_buffer_some_method (RegressFooBuffer *buffer)
- {
- }
- struct _RegressFooOtherObject
- {
- GObject parent_instance;
- };
- struct _RegressFooOtherObjectClass
- {
- GObjectClass parent_class;
- };
- G_DEFINE_TYPE(RegressFooOtherObject, regress_foo_other_object, G_TYPE_OBJECT);
- static void
- regress_foo_other_object_class_init (RegressFooOtherObjectClass *klass)
- {
- }
- static void
- regress_foo_other_object_init (RegressFooOtherObject *object)
- {
- }
- #define REGRESS_FOO_DEFINE_SHOULD_NOT_BE_EXPOSED "should not be exposed"
- /**
- * regress_foo_skip_me: (skip)
- * @fs: a #RegressFooSkippable
- *
- * Does something that's only interesting from C and should not be
- * exposed to language bindings.
- */
- void
- regress_foo_skip_me (RegressFooSkippable fs)
- {
- }
- /**
- * RegressFooForeignStruct: (foreign)
- *
- */
- RegressFooForeignStruct*
- regress_foo_foreign_struct_new (void)
- {
- return g_slice_new0 (RegressFooForeignStruct);
- }
- RegressFooForeignStruct*
- regress_foo_foreign_struct_copy (RegressFooForeignStruct *original)
- {
- RegressFooForeignStruct *copy;
- copy = regress_foo_foreign_struct_new ();
- copy->regress_foo = original->regress_foo;
- return copy;
- }
- /**
- * regress_foo_test_varargs_callback: (skip)
- *
- */
- void
- regress_foo_test_varargs_callback (gint i, RegressFooVarargsCallback callback)
- {
- }
- /**
- * regress_foo_test_varargs_callback2: (skip)
- *
- */
- void
- regress_foo_test_varargs_callback2 (RegressFooVarargsCallback callback)
- {
- }
- /**
- * regress_foo_test_varargs_callback3: (skip)
- *
- */
- void
- regress_foo_test_varargs_callback3 (RegressFooVarargsCallback callback,
- RegressFooVarargsCallback callback2)
- {
- }
- /**
- * regress_foo_object_append_new_stack_layer:
- *
- * This shouldn't be scanned as a constructor.
- *
- * Returns: (transfer none):
- */
- RegressFooOtherObject *
- regress_foo_object_append_new_stack_layer (RegressFooObject *obj, int x)
- {
- return NULL;
- }
- /**
- * regress_foo_not_a_constructor_new:
- *
- * This should be scanned as a top-level function, and shouldn't cause
- * a "Can't find matching type for constructor" warning.
- *
- * Returns: (transfer none):
- */
- RegressFooObject *
- regress_foo_not_a_constructor_new (void)
- {
- return NULL;
- }
|