summaryrefslogtreecommitdiff
path: root/girepository/gitypes.h
Commit message (Collapse)AuthorAgeFilesLines
* Add support for gunichar in typelibColin Walters2010-11-121-3/+6
| | | | | | | Some API such as gtk_text_iter_get_char returns an individual "gunichar"; we should support this. https://bugzilla.gnome.org/show_bug.cgi?id=633197
* girepository: Fix compatibility typedefsColin Walters2010-09-011-4/+5
|
* [GIRepository] Rename GTypelib to GITypelibJohan Dahlin2010-08-311-0/+1
| | | | | Keep a typedef for backwards compatibility, until the major bindings has moved over.
* [GIRepository] Rename GArgument to GIArgumentJohan Dahlin2010-08-311-1/+6
| | | | | Keep a typedef for backwards compatibility, until the major bindings has moved over.
* Don't include machine-dependent integral types in the typelibColin Walters2010-07-091-29/+21
| | | | | | | | | | | | | | | | | | | | Previously we had both e.g. GI_TYPE_TAG_LONG and GI_TYPE_TAG_INT64, but in fact the typelib is already machine-specific, so it makes sense to just encode this as a fixed type. The .gir remains abstract. We also remove size_t from the typelib; one would never want to treat it differently than an integer. time_t is removed as well; while bindings like gjs had special handling to turn it into e.g. a JS Date object, I don't think we should encourage people to use these POSIX types in their API. Use GTimeVal or the like instead. Because the typelib is now really machine-specific, we need to remove the -expected.tgirs from git. (We could potentially add a check which wasn't just a literal diff later) https://bugzilla.gnome.org/show_bug.cgi?id=623774
* Support the (transfer) annotation for properties.Tomeu Vizoso2010-06-081-7/+23
| | | | | | | | | | | | * girepository/*: Add g_property_info_get_ownership_transfer() and write the transfer attribute of properties into the typelib. * giscanner/*: Parse the (transfer) annotation and write it into the .gir. * tools/generate.c: Read the transfer annotation for properties and write to the .tgir. https://bugzilla.gnome.org/show_bug.cgi?id=620484
* [gitypes] Remove a comment and move G_END_DECLSJohan Dahlin2010-06-061-4/+2
|
* [gifunction.h] Move GIFunctionInfoFlags to gitypes.hJohan Dahlin2010-06-061-0/+21
|
* [girepository] Move the enumsJohan Dahlin2010-06-051-0/+118
| | | | Move the est of the enums over to gitypes.h
* [girepository] Move GIArgInfo out of ginfo.chJohan Dahlin2010-06-051-0/+35
|
* [gitypes.h] Do not include gibaseinfo.hJohan Dahlin2010-06-051-2/+0
| | | | To avoid cyclic dependencies
* [girepository] Move GICallableInfo out of ginfo.chJohan Dahlin2010-06-051-0/+16
|
* [girepository] Fix the remaning headers as wellJohan Dahlin2010-06-011-1/+1
|
* [girepository] Fix include pathJohan Dahlin2010-06-011-1/+1
| | | | | | We're installing the headers without the girepository/ prefix, so remove that in all internal headers to not break the out of tree scanning.
* [gifunctioninfo] Move out to another fileJohan Dahlin2010-05-311-0/+25
| | | | Move out GIFunctionInfo to gifunctioninfo.[ch]
* [girepository] Split out GIBaseInfoJohan Dahlin2010-05-311-0/+225
Split out GIBaseInfo to a separate source file. Move out definitions to gibaseinfo.h/gitypelib.h/gitypes.h and girepository-private.h Install gibaseinfo.h/gitypelib.h and gitypes.h as well, but require users to include girepository.h