forked from AuroraMiddleware/gtk
f28aa1ba02
GdkEvent has been a "I-can't-believe-this-is-not-OOP" type for ages, using a union of sub-types. This has always been problematic when it comes to implementing accessor functions: either you get generic API that takes a GdkEvent and uses a massive switch() to determine which event types have the data you're looking for; or you create namespaced accessors, but break language bindings horribly, as boxed types cannot have derived types. The recent conversion of GskRenderNode (which had similar issues) to GTypeInstance, and the fact that GdkEvent is now a completely opaque type, provide us with the chance of moving GdkEvent to GTypeInstance, and have sub-types for GdkEvent. The change from boxed type to GTypeInstance is pretty small, all things considered, but ends up cascading to a larger commit, as we still have backends and code in GTK trying to access GdkEvent structures directly. Additionally, the naming of the public getter functions requires renaming all the data structures to conform to the namespace/type-name pattern.
135 lines
3.4 KiB
Plaintext
135 lines
3.4 KiB
Plaintext
# see glib-genmarshal(1) for a detailed description of the file format,
|
|
# possible parameter types are:
|
|
# VOID indicates no return type, or no extra
|
|
# parameters. if VOID is used as the parameter
|
|
# list, no additional parameters may be present.
|
|
# BOOLEAN for boolean types (gboolean)
|
|
# CHAR for signed char types (gchar)
|
|
# UCHAR for unsigned char types (guchar)
|
|
# INT for signed integer types (gint)
|
|
# UINT for unsigned integer types (guint)
|
|
# LONG for signed long integer types (glong)
|
|
# ULONG for unsigned long integer types (gulong)
|
|
# ENUM for enumeration types (gint)
|
|
# FLAGS for flag enumeration types (guint)
|
|
# FLOAT for single-precision float types (gfloat)
|
|
# DOUBLE for double-precision float types (gdouble)
|
|
# STRING for string types (gchar*)
|
|
# BOXED for boxed (anonymous but reference counted) types (GBoxed*)
|
|
# POINTER for anonymous pointer types (gpointer)
|
|
# OBJECT for GObject or derived types (GObject*)
|
|
# NONE deprecated alias for VOID
|
|
# BOOL deprecated alias for BOOLEAN
|
|
|
|
BOOLEAN:BOXED
|
|
BOOLEAN:BOXED,BOXED
|
|
BOOLEAN:DOUBLE,DOUBLE
|
|
BOOLEAN:ENUM
|
|
BOOLEAN:ENUM,BOOLEAN
|
|
BOOLEAN:ENUM,BOXED,BOXED,BOXED
|
|
BOOLEAN:ENUM,DOUBLE
|
|
BOOLEAN:ENUM,INT
|
|
BOOLEAN:ENUM,INT,BOOLEAN,BOOLEAN
|
|
BOOLEAN:FLAGS
|
|
BOOLEAN:OBJECT
|
|
BOOLEAN:OBJECT,UINT,FLAGS
|
|
BOOLEAN:OBJECT,INT,INT
|
|
BOOLEAN:OBJECT,STRING,STRING,BOXED
|
|
BOOLEAN:OBJECT,BOXED
|
|
BOOLEAN:OBJECT,OBJECT,BOXED
|
|
BOOLEAN:OBJECT,OBJECT,OBJECT
|
|
BOOLEAN:OBJECT,STRING,STRING
|
|
BOOLEAN:OBJECT,ENUM
|
|
BOOLEAN:INT
|
|
BOOLEAN:INT,INT
|
|
BOOLEAN:INT,INT,INT
|
|
BOOLEAN:INT,INT,BOOLEAN,OBJECT
|
|
BOOLEAN:UINT
|
|
BOOLEAN:UINT,UINT,FLAGS
|
|
BOOLEAN:VOID
|
|
BOOLEAN:BOOLEAN
|
|
BOOLEAN:BOOLEAN,BOOLEAN,BOOLEAN
|
|
BOOLEAN:STRING
|
|
BOOLEAN:POINTER
|
|
ENUM:ENUM
|
|
ENUM:VOID
|
|
INT:POINTER
|
|
INT:DOUBLE,DOUBLE
|
|
OBJECT:OBJECT
|
|
OBJECT:VOID
|
|
STRING:DOUBLE
|
|
STRING:STRING
|
|
VOID:BOOLEAN,BOOLEAN,BOOLEAN
|
|
VOID:BOXED
|
|
VOID:BOXED,BOXED
|
|
VOID:BOXED,BOXED,POINTER
|
|
VOID:BOXED,ENUM
|
|
VOID:BOXED,OBJECT
|
|
VOID:BOXED,STRING,INT
|
|
VOID:BOXED,UINT
|
|
VOID:BOXED,UINT,FLAGS
|
|
VOID:DOUBLE,DOUBLE
|
|
VOID:DOUBLE,DOUBLE,ENUM,ENUM
|
|
VOID:DOUBLE,DOUBLE,UINT,BOXED
|
|
VOID:ENUM,BOOLEAN
|
|
VOID:ENUM,DOUBLE
|
|
VOID:ENUM,ENUM
|
|
VOID:ENUM,FLOAT
|
|
VOID:ENUM,FLOAT,BOOLEAN
|
|
VOID:ENUM,INT
|
|
VOID:ENUM,INT,BOOLEAN
|
|
VOID:ENUM,INT,BOOLEAN,BOOLEAN
|
|
VOID:ENUM,INT,INT
|
|
VOID:ENUM,OBJECT
|
|
VOID:ENUM,STRING
|
|
VOID:INT,BOOLEAN
|
|
VOID:INT,DOUBLE,DOUBLE
|
|
VOID:INT,INT
|
|
VOID:INT,INT,BOXED
|
|
VOID:INT,INT,INT
|
|
VOID:OBJECT,BOOLEAN
|
|
VOID:OBJECT,BOXED
|
|
VOID:OBJECT,BOXED,BOXED
|
|
VOID:OBJECT,BOXED,BOOLEAN,BOOLEAN
|
|
VOID:OBJECT,ENUM
|
|
VOID:OBJECT,FLAGS
|
|
VOID:OBJECT,INT
|
|
VOID:OBJECT,INT,OBJECT
|
|
VOID:OBJECT,INT,INT
|
|
VOID:OBJECT,OBJECT
|
|
VOID:OBJECT,POINTER
|
|
VOID:OBJECT,POINTER,INT
|
|
VOID:OBJECT,STRING
|
|
VOID:OBJECT,STRING,STRING
|
|
VOID:OBJECT,UINT
|
|
VOID:OBJECT,UINT,FLAGS
|
|
VOID:OBJECT,STRING
|
|
VOID:OBJECT,OBJECT,STRING
|
|
VOID:OBJECT,OBJECT,OBJECT
|
|
VOID:OBJECT,OBJECT,BOXED,STRING
|
|
VOID:OBJECT,OBJECT,POINTER,POINTER
|
|
VOID:POINTER,INT
|
|
VOID:POINTER,BOOLEAN
|
|
VOID:POINTER,POINTER,BOOLEAN
|
|
VOID:POINTER,POINTER,BOOLEAN,BOOLEAN
|
|
VOID:POINTER,POINTER,POINTER
|
|
VOID:POINTER,UINT
|
|
VOID:STRING,BOXED
|
|
VOID:STRING,STRING
|
|
VOID:STRING,STRING,STRING
|
|
VOID:STRING,INT,POINTER
|
|
VOID:STRING,UINT,FLAGS
|
|
VOID:STRING,UINT,FLAGS,UINT
|
|
VOID:UINT,FLAGS,BOXED
|
|
VOID:UINT,STRING
|
|
VOID:UINT,BOXED,UINT,FLAGS,FLAGS
|
|
VOID:UINT,OBJECT,UINT,FLAGS,FLAGS
|
|
VOID:UINT,STRING,UINT
|
|
VOID:UINT,UINT
|
|
VOID:UINT,UINT,FLAGS
|
|
OBJECT:OBJECT,INT,INT
|
|
VOID:OBJECT,STRING,POINTER,POINTER
|
|
INT:INT
|
|
VOID:POINTER,STRING,INT
|
|
INT:OBJECT,OBJECT,POINTER
|