summaryrefslogtreecommitdiff
path: root/gir
Commit message (Collapse)AuthorAgeFilesLines
* Regenerated GLib annotation cachePavel Holejsovsky2011-08-313-167/+491
| | | | Regenerated from glib fe4fc3e8b5a5ad8d4113c4df1fe8e0e9f295035e
* Revert "xlib: fix the type of XID"Giovanni Campagna2011-08-261-14/+18
| | | | | | | This reverts commit 3553cd0a4631f1b57fb608e3f3f78a1a0cfd602a. Turns out it was wrong, XID is 64 bit on a 64 bit system. Plus the scanner doesn't like multiple level typedefs.
* xlib: fix the type of XIDGiovanni Campagna2011-08-261-18/+14
| | | | | | | | XIDs are CARD32, which corresponds to guint32 on all platform, not gulong (which is 64 bit on x86_64). Fix that, and use alias indirection to more accurately reflect the typedefs. https://bugzilla.gnome.org/show_bug.cgi?id=643620
* Update annotations from glib git 2cd3c200687751c9cc26774f650b7651bffcc598Jasper St. Pierre2011-08-242-21/+24
|
* Update annotations from glib git d51e0615f9a6c1aa1898c46f2cf3135ca5ccd463Colin Walters2011-08-223-133/+83
|
* Regenerate Gio/GLib/GObject annotationsMartin Pitt2011-08-183-401/+6099
| | | | Ran misc/update-glib-annotations.py against current glib master.
* Fix declarations in xlib-2.0.girPavel Holejsovsky2011-07-291-14/+40
| | | | | | | FIx declarations of the subset of XLib types in xlib-2.0.gir so that they match reality from X11 headers. https://bugzilla.gnome.org/show_bug.cgi?id=655486
* Update annotations for glib gitColin Walters2011-07-223-139/+2712
|
* glib-2.0.c: Update from git 4476e22a14af93d375d3a9d8cd2ab8deedf669adColin Walters2011-06-171-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=647796
* Resync annotations from GLib commit 9d53e2bc4e806f8b0e142a1ed73c5f25e0dd2347Colin Walters2011-06-101-4/+4
|
* Update glib-2.0 from glib gitColin Walters2011-06-091-124/+29598
| | | | Using commit 4db88bd6e2957893b9f232527cc46bda799f2027
* Update gio-2.0.c and gobject-2.0.c from glibColin Walters2011-06-092-410/+1977
| | | | Using commit 4db88bd6e2957893b9f232527cc46bda799f2027
* gio-2.0.c: copy in two annotations from glibDan Winship2011-05-051-2/+2
|
* glib-2.0.c: Added annotation for g_variant_new_variant to mark it as constructorSebastian Pölsterl2011-04-151-0/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=647796
* fix #647621 - g_spawn_async_with_pipes annotation correctionsAlan Knowles2011-04-151-1/+2
|
* glib-2.0.c: add annotations for g_base64_encode and g_base64_decodeJoe Shaw2011-03-311-0/+15
|
* Regenerate gio-2.0.c from glib/masterMartin Pitt2011-03-301-8/+8
|
* gio-2.0.c: Update from GLib git as of 92977a221760ebColin Walters2011-03-301-62/+259
|
* Don't dist gir/cairo-1.0.gir, it's generatedColin Walters2011-03-251-2/+2
| | | | | | | We should not be disting it, because it contains values derived from configure. Extract it out of STATIC_GIRSOURCES, and also move it to a Makefile rule rather than AC_SUBST as it should be so it gets cleaned properly.
* Update gobject/gio syntaxJohan Dahlin2011-02-012-148/+419
| | | | | Now fetches all sections correctly, with updated glib code base and an updated annotation tool.
* Sort gio/gobject annotationsJohan Dahlin2011-02-012-25133/+25200
|
* Depend on cairo-gobject if availableTomeu Vizoso2011-01-201-0/+2
| | | | | | And set library-name and package accordingly in the cairo .gir https://bugzilla.gnome.org/show_bug.cgi?id=639831
* Regenerate gio-2.0.c from glib/masterPavel Holejsovsky2011-01-201-64/+140
|
* Regenerate gio-2.0.cPavel Holejsovsky2011-01-051-15/+59
|
* Regenerate gio-2.0.c and gobject-2.0.c from current glib HEADPavel Holejsovsky2010-12-292-302/+357
|
* Regenerate gir/gio-2.0.cPavel Holejsovsky2010-12-211-80/+85
|
* Regenerate gio-2.0.c and gobject-2.0.c from current glib.Pavel Holejsovsky2010-12-192-73/+129
|
* glib-2.0.c: annotate g_get_environ() and g_listenv()Dan Winship2010-12-171-0/+10
|
* Regenerate gio-2.0.c from current glib/gio HEAD.Pavel Holejsovsky2010-12-171-138/+138
|
* Regenerate gio-2.0.cPavel Holejsovsky2010-12-161-351/+131
|
* Regenerate gio-2.0.c from current glib/gio.Pavel Holejsovsky2010-12-151-331/+10141
|
* cairo: Fill out GIR with cairo-gobject boxed informationColin Walters2010-12-101-7/+21
| | | | | | | | | | We need these references to correctly handle when an API (say GTK3) uses the cairo-gobject boxed types in a signal (like "draw"). API consumers need to be using g-i for signal handling to make this all work. https://bugzilla.gnome.org/show_bug.cgi?id=636646
* cairo-1.0.gir: Un-foreign RectangleIntColin Walters2010-12-101-1/+16
| | | | | | | | | | | | | | | cairo.RectangleInt is a very tricky case; it's (as of now) boxed in cairo-gobject. We're trying to fix a few bugs here. First, we want to make (out caller-allocates) work. In order to do that, we need to explicitly specify the fields so that the typelib has the right size. Also, add the boxed type now so that we pick up the right thing from GObject signal parameters. See history in bug 623222 and bug 636393. https://bugzilla.gnome.org/show_bug.cgi?id=636617
* gir: Add Time to xlibs-2.0Emmanuele Bassi2010-12-091-0/+1
|
* Support glib-mkenums comment /*< flags >*/Andreas Rottmann2010-12-071-4/+0
| | | | | | | | | | | | | | | - Modify the lexer to consider all "trigraph" comments specially, and parse them for "flags" as well as "private" and "public" (which were previously hardcoded). This change allows for future support of multiple annotations inside a single trigraph comment. - Change the parser to consider the additional field "flags" set by the lexer when constructing enums. - Add a test case for the "flags" trigraph comment to the scanner annotation tests. See <https://bugzilla.gnome.org/show_bug.cgi?id=631530>.
* Update gio annotations from GLib gitColin Walters2010-11-171-8878/+1153
|
* glib-2.0.c: annotate the arrays in g_spawn_sync/_asyncDan Winship2010-11-171-2/+4
|
* Switch to nonrecursive make for core (i.e. not tests/)Colin Walters2010-11-091-242/+0
| | | | | This is cleaner and faster, and prepares us better for an incoming import of CMPH.
* gir: Explicitly specify path to girepository so libtool can find itColin Walters2010-09-301-1/+1
| | | | | This was broken with the last commit to remove a lot of the special hacks to link to girepository in the dumper.
* glib-2.0.c: Fix invalid annotation syntaxColin Walters2010-09-291-4/+4
|
* Re-generateJohan Dahlin2010-09-251-8/+8
|
* Re-generate against HEAD of GioJohan Dahlin2010-09-241-149/+155
|
* Import GObject sourcesJohan Dahlin2010-09-241-5/+10418
|
* [gio] Improve source commentsJohan Dahlin2010-09-241-211/+29335
| | | | | | Imports gtk-doc comment from gio. In the future comments should go into the gio sources instead of here, wer're we will use the annotation-tool to update the extracted sources.
* Fix a couple of broken annotationsJohan Dahlin2010-09-242-4/+4
|
* gio-2.0.c: Add missing annotationsSimón Pena2010-09-151-0/+68
| | | | | | | Add 'transfer mode' annotations for GAction, GActionGroup, GAppInfo, GApplication and GAsyncInitable https://bugzilla.gnome.org/show_bug.cgi?id=629790
* [gio] Fix a broken doc stringJohan Dahlin2010-09-141-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=629708
* Annotate g_variant_builder_endTomeu Vizoso2010-09-131-0/+5
|
* Add annotation for g_variant_get_stringTomeu Vizoso2010-09-111-0/+6
|
* gio-2.0.c: Add more annotations for GVolume and GVolumeMonitorOwen W. Taylor2010-09-091-0/+43
| | | | Add annotations fixing warnings in in GVolume and GVolumeMonitor