Ryan Lortie
b402c3f014
gobject docs: add symbols from GMainLoop boxing
2011-09-05 18:05:05 -04:00
Ryan Lortie
b407086b38
Back out some changes to docs Makefiles
...
Commit ab0e9dbfa7
introduced some changes
to the documentation Makefiles designed to clean-up the process of
deciding which headers get scanned for the docs.
Unfortunately, the gtk-doc Makefile doesn't use HFILE_GLOB for actually
generating the docs -- only for knowing when it needs to redo the
generation. Because of this, we need to use IGNORE_HFILES or otherwise
we get hundreds of symbols in the *-unused.txt files.
Revert the changes that that commit made to the docs Makefiles (but
leave the generation of the *-public-headers.txt files in place).
2011-09-05 18:01:39 -04:00
Alexandre Franke
c32c9526ad
Fix missing semi-colon after struct definition
2011-09-05 13:22:37 +02:00
Matthias Clasen
b57f2e9327
Clean up gobject docs
2011-08-30 00:09:51 -04:00
Matthias Clasen
c938250c33
Add a 'since 2.30' index to gobject docs
2011-08-29 21:43:50 -04:00
Marc-André Lureau
d2ca14c270
Add G_VALUE_INIT
...
The implementation of GValue is not public or documented. When
allocated on the stack, initializing a GValue is usually done as
documented with:
GValue value = { 0, };
There is lot code around (including WebKit) that added all the missing
fields, resulting in this ugly and non-obvious:
GValue value = { 0, { { 0 } } };
However, this doesn't play nice with -Wmissing-field-initializers for
example. Thus, G_VALUE_INIT.
http://bugzilla.gnome.org/show_bug.cgi?id=654793
http://bugzilla.gnome.org/show_bug.cgi?id=577231
2011-08-13 18:16:44 -04:00
Christian Persch
316efa1b5d
Add boxed GType for GMatchInfo
2011-06-24 01:03:50 +02:00
Patrick Welche
3393711f42
build: fix gtk-doc when srcdir != builddir
...
https://bugzilla.gnome.org/show_bug.cgi?id=653250
2011-06-23 12:52:13 -04:00
Patrick Welche
de0519581a
Fix build due to trivial typos in ab0e9dbf
.
...
https://bugzilla.gnome.org/show_bug.cgi?id=652750
2011-06-16 13:09:42 -04:00
Colin Walters
ab0e9dbfa7
Generate $module-public-headers.txt file, feed it to gtk-doc
...
Rather than having the gtk-doc build machinery have a list of header
files to exclude, change the GLib build to dump a list of public
header files generated from the maintained Makefile.am files for
each of glib/, gobject/, gio/.
Also, for glib, always install glib-unix.h, even on non-Unix
platforms, for the same reason we install gwin32.h even on Unix.
https://bugzilla.gnome.org/show_bug.cgi?id=651745
2011-06-07 14:18:36 -04:00
Colin Walters
3bd3067ffc
gobject: Use _ prefixing in private headers over G_GNUC_INTERNAL in public headers
...
This helps out gtk-doc and g-ir-scanner, and also makes much clearer
what's private versus public.
https://bugzilla.gnome.org/show_bug.cgi?id=651745
2011-06-03 12:40:01 -04:00
David Zeuthen
88ab35f3cb
Add a generic libffi based marshaller to libgobject
...
This code is from https://bugzilla.gnome.org/show_bug.cgi?id=567087
and was adapted by myself to also support the GVariant fundamental
type.
Signed-off-by: David Zeuthen <davidz@redhat.com>
2011-04-08 17:34:44 -04:00
Matthias Clasen
db83a96648
Documentation tweak
2010-11-29 01:20:58 -05:00
Dan Winship
e910205557
Add g_source_set_dummy_callback()
...
Use g_source_set_closure() and g_close_set_meta_marshal() to allow
setting a do-nothing callback on any source.
https://bugzilla.gnome.org/show_bug.cgi?id=634239
2010-11-26 15:07:28 -05:00
Matthias Clasen
3570c4a00e
Add indices for new symbols in 2.28
2010-11-24 16:00:32 -05:00
Javier Jardón
010913c8ab
docs: Update the URL of some documentation links
...
http://developer.gnome.org -> http://library.gnome.org
2010-11-14 02:09:05 +01:00
Ryan Lortie
1a1fc130ec
New function: g_clear_object()
...
By analogy to g_clear_error, takes a pass-by-reference GObject reference
and, if non-%NULL, unrefs it and sets it equal to %NULL.
Bug #620263 .
2010-11-08 18:21:51 -05:00
Ryan Lortie
15d87c2cc4
GObject: add g_signal_accumulator_first_wins
...
Deals with the case where we want exactly one signal handler to run.
2010-10-12 21:34:17 -04:00
Christian Dywan
53f398f52a
Mention g_object_run_dispose correctly in tutorial
...
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=630797
2010-10-08 15:25:31 +02:00
Stefan Kost
919f64acab
build: fix out of srcdir build
...
The gtk-doc makefile rules do cd srcdir && cp $(HTML_IMAGES) target/ and this
breaks for "srcdir" != ".".
2010-09-23 23:38:05 +03:00
Stefan Kost
de432280a0
docs: shorten var name in example
...
We use 'pspec' instead of 'maman_param_spec' elsewhere too.
2010-09-19 22:06:10 +03:00
Stefan Kost
aa8c8df44f
docs: fix iface type naming
2010-09-19 22:03:40 +03:00
Stefan Kost
58e5b01fbc
docs: fix docbook validity
...
'type' must be inside of 'link'.
2010-09-19 21:50:31 +03:00
Stefan Kost
409f7db894
docs: cleanup constructor example
...
Remove unused var and chain-up the sane way we do elsewhere.
2010-09-19 21:37:19 +03:00
Stefan Kost
a6ad0fbec2
docs: use passive voice.
2010-09-19 21:33:52 +03:00
Emmanuele Bassi
9cd43d7a4c
gobject: Add install_properties()
...
Since we added g_object_notify_by_pspec(), an efficient way to install
and notify properties relies on storing the GParamSpec pointers inside
a static arrays, like we do for signal identifiers.
Instead of multiple calls to g_object_class_install_property(), we
should have a single function to take the static array of GParamSpecs
and iterate it.
https://bugzilla.gnome.org/show_bug.cgi?id=626919
Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
2010-09-13 12:34:53 +01:00
Emmanuele Bassi
d31c1c863a
docs: Fix up GDateTime for the GObject reference
2010-08-25 16:24:46 +01:00
Christian Persch
dc1999316d
Add G_DEFINE_{BOXED,POINTER}_TYPE[_WITH_CODE]
...
Add convenience type definition macros for boxed and pointer types
similar to G_DEFINE_TYPE for object types. Bug #449565 .
2010-08-18 00:12:22 +02:00
Ryan Lortie
b3b7ea8e22
Replace -I with $(glib_INCLUDES) and friends
...
Stop using ad hoc -I in all of our Makefile.am. Use the new variables
instead.
2010-08-06 13:10:34 -04:00
Emmanuele Bassi
3be3ad61d1
binding: Add a closure-based variant of bind_property_full()
...
Since using the function pointer version muddles the memory management
requirements of language bindings, we should implement a GClosure-based
variant on top of g_object_bind_property_full().
https://bugzilla.gnome.org/show_bug.cgi?id=622278
2010-08-03 09:51:49 +01:00
Stefan Kost
463edcb045
docs: xi:include the annotation glossary to kill warnings and make them work
2010-07-14 11:57:36 +03:00
Ryan Lortie
adde752ec5
More docs fixes
...
Remove the g*alias.h from the ignore lists
Remove other old files from ignore lists
Clean up gobject docs
2010-07-12 17:46:17 -04:00
Matthias Clasen
3549e06f81
Ignore gatomicarray.h
...
Otherwise gtk-doc picks up declarations from that header and is
disappointed when they are not documented.
2010-06-23 09:25:30 -04:00
Matthias Clasen
9c6130cdde
silence gtk-doc
...
Add g_error_get_type to a private section in gobject-sections.txt
so gtk-doc doesn't complain about it.
2010-06-23 09:25:29 -04:00
Matthias Clasen
7d81e99c4b
Add an index for 2.26 api additions
2010-06-23 09:25:29 -04:00
Ryan Lortie
a4cd39e741
gobject docs: ignore some sgml files
2010-06-21 14:01:50 -04:00
Christian Persch
db68f8203a
Add g_value_take_variant
...
Turns out we do need g_value_take_variant(), so we can correctly
implement VARIANT:* marshalers.
Bug #621947 .
2010-06-19 19:07:36 +02:00
Christian Persch
30df71e382
Add VARIANT to glib-genmarshal docs
2010-06-18 00:10:54 +02:00
Christian Persch
4708b8ecc3
Add fundamental type and pspec for GVariant
...
Make G_TYPE_VARIANT a fundamental type instead of boxed, and add
g_variant_{set,get,dup}_variant.
Add GParamSpecVariant.
Bug #610863 .
2010-06-17 21:00:54 +02:00
Emmanuele Bassi
6d1d9cf1b5
gobject: Add GBinding
...
GBinding is a simple, opaque object that represents a binding between a
property on a GObject instance (source) and property on another GObject
instance (target).
https://bugzilla.gnome.org/show_bug.cgi?id=348080
2010-06-15 16:06:18 +01:00
Damien Lespiau
f3879a4bdc
Introduce g_object_notify_by_pspec()
...
g_object_notify_by_pspec() will emit the "notify" signal on the given
pspec, short-circuiting the hash table lookup needed by
g_object_notify(). The suggested and documented way of using
g_object_notify_by_pspec() is similar to the way of emitting signals
with their ID.
Emission tests (with no handler attached to the notify signal) show a
10-15% speedup over using g_object_notify().
https://bugzilla.gnome.org/show_bug.cgi?id=615425
2010-06-15 10:51:36 +01:00
Ryan Lortie
47e07f9f78
another occurrence of the last fix (@XSLTPROC@)
2010-05-24 22:37:43 -04:00
Matthias Clasen
8db946fdfb
Clean up man page handling
...
Remove all formatted man pages from git, and use the same
Makefile fragment in all doc dirs.
2010-05-21 22:28:42 -04:00
Javier Jardón
3b8d0a4ac2
Add G_TYPE_CLASS_GET_PRIVATE macro to docs
2010-05-20 01:59:17 +02:00
Matthias Clasen
6223341cac
Merge branch 'gdbus-merge'
...
Conflicts:
docs/reference/gio/gio-docs.xml
docs/reference/gio/gio-sections.txt
gio/tests/Makefile.am
2010-05-13 23:08:34 -04:00
Ryan Lortie
62c0454b34
documentation for glib-mkenums @valuenum@
2010-05-14 01:55:46 +02:00
David Zeuthen
3baff96b37
Make sure G_TYPE_ERROR shows up in the docs
...
This is related to bug 614541.
Signed-off-by: David Zeuthen <davidz@redhat.com>
2010-04-23 12:14:37 -04:00
Javier Jardón
bed462046a
[docs] Fix G_VALUE_COLLECT_INIT documentation
...
Add the documentation to the corresponding section
This macro was introduced in
commit 546fc0ca33
2010-04-20 02:12:02 +02:00
Matthias Clasen
cd9b8b563f
2.25.0
2010-04-19 17:30:42 -04:00
David King
9023ac0934
[docs] Remove unused sgml template from GObject documentation
...
https://bugzilla.gnome.org/show_bug.cgi?id=589351
Signed-off-by: Javier Jardón <jjardon@gnome.org>
2010-04-18 20:21:10 +02:00
Matthias Clasen
61a5692fa1
Man page tweaks
...
Add enough info to keep the docbook stylesheets from embedding
FIXMEs in the formatted output.
2010-04-16 20:43:53 -04:00
Javier Jardón
c3f1025c33
Remove g_type_class_get_private() public documentation
...
This is a internal function needed for the documented
G_TYPE_CLASS_GET_PRIVATE() macro
This was introduced by error in
commit 81e2aa941b
2010-03-29 18:23:48 +02:00
Matthias Clasen
81e2aa941b
Some more doc cleanups
2010-03-26 10:11:46 -04:00
Christian Dywan
35059f2c04
Correct typo of libray/ library in GObject tutorial
...
Fixes bug #613667
2010-03-23 11:59:43 +01:00
Ryan Lortie
6f33038397
gtk-doc fixups
2010-03-21 14:12:48 -05:00
Stefan Kost
fa32ee5610
docs: exchange "Subversion" with "source code repository"
...
Fixes the outdated reference.
2010-03-06 13:36:38 +02:00
Matthias Clasen
03fc92784d
Add indices for 2.24 additions
2010-02-21 19:48:22 -05:00
Matthias Clasen
80a160c7c6
Small doc fixes
2010-02-21 19:46:57 -05:00
Matthias Clasen
de6914a46a
Add a pointer to G_DEFINE_INTERFACE
2010-02-21 15:32:08 -05:00
Ryan Lortie
1e655eb02c
merge GVariant
2010-02-10 11:35:01 -05:00
Stefan Kost
7211f7f8eb
docs: switch to xi:inbclude for the content to save some more seconds
2010-01-07 11:34:01 +02:00
Stefan Kost
d01e2527ce
docs: use xi:include to use the generated indexes if available.
...
This works transparantly for people with new enough gtk-doc (>=1.11) and
significantly improves the build time.
2010-01-07 11:34:00 +02:00
Dan Winship
91d96350a7
Add G_DEFINE_INTERFACE
...
This is a macro similar to G_DEFINE_TYPE but it lets you define
interfaces rather than classes.
For discussion, see bug #320482
2009-12-01 10:44:42 +01:00
Alexander Larsson
7d51c96e5e
Add G_IMPLEMENT_INTERFACE_DYNAMIC
...
Convenience macro to easy interface addition for dynamic types.
https://bugzilla.gnome.org/show_bug.cgi?id=508157
2009-11-26 11:20:18 +01:00
Matthias Clasen
400959ddbd
2.21.3
2009-07-06 00:31:47 -04:00
Christian Persch
18e0bcf02f
Add @basename@ substitution to glib-mkenums
...
Move man page addition to the right place. Bug #587307 .
2009-07-03 21:20:11 +02:00
Matthias Clasen
a28215fa90
Release 2.21.0
2009-05-03 18:08:49 -04:00
Matthias Clasen
008ae16d75
Add new functions
2009-05-03 17:00:37 -04:00
Matthias Clasen
5a8a224ff0
2.20.0
...
svn path=/trunk/; revision=7976
2009-03-13 05:44:11 +00:00
Matthias Clasen
3f07ef2119
2.19.9
...
svn path=/trunk/; revision=7939
2009-03-02 05:49:44 +00:00
Matthias Clasen
64bc5d874f
Fix some typos
...
svn path=/trunk/; revision=7927
2009-03-01 06:59:31 +00:00
Stefan Kost
c34b273958
Add online urls for library.gnome.org. This allows other docs to do
...
* gio/gio-docs.xml:
* glib/glib-docs.sgml:
* gobject/gobject-docs.sgml:
Add online urls for library.gnome.org. This allows other docs to do
gtkdoc-rebase --online --html-dir=html
before publishing docs and have working xrefs.
svn path=/trunk/; revision=7853
2009-02-06 08:09:24 +00:00
Matthias Clasen
1643b117b9
Fix an example.
...
svn path=/trunk/; revision=7757
2009-01-02 02:26:39 +00:00
Matthias Clasen
7570db065a
Remove the questionable closing sentence and all references to private
...
* gobject/tut_gtype.xml: Remove the questionable closing sentence
and all references to private functions. Pointed out by Christian
Dywan.
svn path=/trunk/; revision=7711
2008-12-01 03:13:46 +00:00
Matthias Clasen
db830dd381
Fix some documentation typos
...
svn path=/trunk/; revision=7707
2008-11-28 23:53:13 +00:00
Matthias Clasen
08cae5cd63
Nicer indices
...
svn path=/trunk/; revision=7665
2008-11-21 07:28:50 +00:00
Behdad Esfahbod
d442b59022
Bug 559448 – GObject Reference Manual (typo)
...
2008-11-10 Behdad Esfahbod <behdad@gnome.org>
Bug 559448 – GObject Reference Manual (typo)
* gobject/tut_gobject.xml: Fix typo.
svn path=/trunk/; revision=7646
2008-11-10 14:37:21 +00:00
Matthias Clasen
82c68c6a14
2.19.0
...
svn path=/trunk/; revision=7611
2008-10-16 23:59:50 +00:00
Ryan Lortie
920f3bffb3
Bug 549771 – improved .gitignore for glib
...
2007-09-02 Ryan Lortie <desrt@desrt.ca>
Bug 549771 – improved .gitignore for glib
* docs/reference/.gitignore:
* docs/reference/gio/.gitignore:
* docs/reference/gobject/tmpl/.gitignore:
* gio/.gitignore:
* gio/tests/.gitignore:
* glib/.gitignore:
* glib/libcharset/.gitignore:
* glib/tests/.gitignore:
* gmodule/.gitignore:
* gobject/.gitignore:
* gobject/tests/.gitignore:
* po/.gitignore:
* tests/.gitignore: new files
* .gitignore: remove 'build' (since it's part of glib now), add more
useful things.
svn path=/trunk/; revision=7432
2008-09-02 18:40:39 +00:00
Matthias Clasen
7a9c75a099
Add g_object_get_type
...
svn path=/trunk/; revision=7429
2008-09-02 17:39:32 +00:00
Matthias Clasen
cc9841557d
Add a 2.18 index
...
svn path=/trunk/; revision=7296
2008-08-04 16:38:36 +00:00
Matthias Clasen
cb3b591aaa
Add new api
...
svn path=/trunk/; revision=7207
2008-07-19 02:15:31 +00:00
Matthias Clasen
adae2cf59b
Updates
...
svn path=/trunk/; revision=7201
2008-07-18 17:55:13 +00:00
Matthias Clasen
491be3601d
Mention Vala
...
svn path=/trunk/; revision=7165
2008-07-06 04:17:36 +00:00
Michael Natterer
25e2e9fa28
glib/Makefile.am don't comment out the include of Makefile.decl just
...
2008-06-24 Michael Natterer <mitch@imendio.com>
* glib/Makefile.am
* gobject/Makefile.am: don't comment out the include of
Makefile.decl just because there are no tests. It needs to be
included in each Makefile.am or make check will fail.
svn path=/trunk/; revision=7098
2008-06-24 20:29:24 +00:00
Stefan Kost
ba729be6c1
Unify the Makefiles. In glib only scan glib folders.
...
* glib/Makefile.am:
* gobject/Makefile.am:
Unify the Makefiles. In glib only scan glib folders.
svn path=/trunk/; revision=7094
2008-06-22 16:34:30 +00:00
Stefan Kost
ac94781e28
Move some content for gobject-unused.sgml and cleared empty entries. The
...
* docs/reference/gobject/tmpl/gobject-unused.sgml:
* gobject/gobject.h:
* gobject/gtype.c:
* gobject/gtype.h:
Move some content for gobject-unused.sgml and cleared empty entries.
The remaining 4 ones should be checked by some else. If they are not
needed. The file can be removed.
svn path=/trunk/; revision=7087
2008-06-22 10:10:59 +00:00
Stefan Kost
43c995df17
Migrating docs.
...
* docs/reference/gobject/tmpl/value_collection.sgml:
* gobject/gvaluecollector.h:
Migrating docs.
svn path=/trunk/; revision=7086
2008-06-22 09:53:11 +00:00
Stefan Kost
80326e2433
Migrating docs.
...
* docs/reference/gobject/tmpl/value_arrays.sgml:
* gobject/gvaluearray.c:
* gobject/gvaluearray.h:
Migrating docs.
svn path=/trunk/; revision=7085
2008-06-22 09:45:13 +00:00
Stefan Kost
356fe46531
Migrating docs.
...
* docs/reference/gobject/tmpl/signals.sgml:
* gobject/gclosure.c:
* gobject/gobject.c:
* gobject/gsignal.c:
* gobject/gsignal.h:
Migrating docs.
svn path=/trunk/; revision=7083
2008-06-22 09:29:52 +00:00
Stefan Kost
0f62f41d2c
Help poor little gtkdoc a bit and tell that it can ignore G_GNUC_INTERNAL.
...
* docs/reference/gobject/Makefile.am:
Help poor little gtkdoc a bit and tell that it can ignore
G_GNUC_INTERNAL. Also disable including the unit-test header as this
causes warnings and we don't need it here.
svn path=/trunk/; revision=7082
2008-06-21 22:38:08 +00:00
Stefan Kost
fca3fb5818
Migrating docs.
...
* docs/reference/gobject/tmpl/param_value_types.sgml:
* gobject/gboxed.c:
* gobject/gboxed.h:
* gobject/genums.c:
* gobject/genums.h:
* gobject/gobject.c:
* gobject/gobject.h:
* gobject/gparam.c:
* gobject/gparam.h:
* gobject/gparamspecs.c:
* gobject/gparamspecs.h:
* gobject/gvaluetypes.c:
* gobject/gvaluetypes.h:
Migrating docs.
svn path=/trunk/; revision=7081
2008-06-21 22:16:14 +00:00
Stefan Kost
fedbbf5d74
Migrating docs.
...
* docs/reference/gobject/tmpl/objects.sgml:
* gobject/gobject.c:
* gobject/gobject.h:
* gobject/gparam.h:
Migrating docs.
svn path=/trunk/; revision=7080
2008-06-21 20:07:57 +00:00
Stefan Kost
3f5419f6f1
Migrating docs.
...
* docs/reference/gobject/tmpl/gtypeplugin.sgml:
* gobject/gtypeplugin.c:
* gobject/gtypeplugin.h:
Migrating docs.
svn path=/trunk/; revision=7079
2008-06-21 18:20:43 +00:00
Stefan Kost
f22d19fc34
Add --sgml-mode to allow sgml in doc-fragments (which somehow works before
...
* docs/reference/gobject/Makefile.am:
Add --sgml-mode to allow sgml in doc-fragments (which somehow works
before already).
* gobject/gboxed.h:
* gobject/gclosure.c:
* gobject/gparam.c:
* gobject/gparam.h:
* gobject/gtype.h:
Convert character entities back. FIx some broken sgml.
svn path=/trunk/; revision=7078
2008-06-21 17:25:17 +00:00
Stefan Kost
f2da2e8e92
Migrating docs.
...
* docs/reference/gobject/tmpl/gtypemodule.sgml:
* gobject/gtypemodule.c:
* gobject/gtypemodule.h:
Migrating docs.
svn path=/trunk/; revision=7077
2008-06-21 16:35:50 +00:00
Stefan Kost
005be9980a
Migrating docs.
...
* docs/reference/gobject/tmpl/gtype.sgml:
* gobject/gtype.c:
* gobject/gtype.h:
* gobject/gvaluetypes.h:
Migrating docs.
svn path=/trunk/; revision=7075
2008-06-21 16:14:18 +00:00
Stefan Kost
fb07c65020
Migrating docs.
...
* docs/reference/gobject/tmpl/gparamspec.sgml:
* gobject/gparam.c:
* gobject/gparam.h:
Migrating docs.
svn path=/trunk/; revision=7073
2008-06-21 13:47:14 +00:00
Stefan Kost
0b9bf79ec2
Migrating docs.
...
* docs/reference/gobject/tmpl/generic_values.sgml:
* gobject/gboxed.h:
* gobject/gtype.h:
* gobject/gvalue.c:
* gobject/gvalue.h:
* gobject/gvaluetypes.c:
Migrating docs.
svn path=/trunk/; revision=7071
2008-06-21 12:45:49 +00:00
Stefan Kost
83dd545044
Migrating docs.
...
* docs/reference/gobject/tmpl/gclosure.sgml:
* gobject/gboxed.h:
* gobject/gclosure.c:
* gobject/gclosure.h:
* gobject/gobject.c:
* gobject/gsourceclosure.c:
* gobject/gsourceclosure.h:
Migrating docs.
svn path=/trunk/; revision=7069
2008-06-21 12:18:12 +00:00
Stefan Kost
e7bc23623e
Remove duplicated entries. They are documented and should be shown.
...
* docs/reference/gobject/gobject-sections.txt:
Remove duplicated entries. They are documented and should be shown.
svn path=/trunk/; revision=7067
2008-06-21 11:33:53 +00:00
Stefan Kost
672caa1a51
Migrating docs.
...
* docs/reference/gobject/tmpl/enumerations_flags.sgml:
* gobject/genums.c:
* gobject/genums.h:
Migrating docs.
svn path=/trunk/; revision=7066
2008-06-21 11:27:45 +00:00
Stefan Kost
86a0f779f6
Migrating docs.
...
* docs/reference/gobject/tmpl/gboxed.sgml:
* gobject/gboxed.c:
* gobject/gboxed.h:
* gobject/gvaluetypes.c:
Migrating docs.
svn path=/trunk/; revision=7065
2008-06-21 10:19:58 +00:00
Matthias Clasen
6427d30d1f
2.17.1
...
svn path=/trunk/; revision=7029
2008-06-12 17:21:49 +00:00
Matthias Clasen
40334783bc
Fix typos Noticed by Areg Beketovski
...
* glib/tmpl/macros_misc.sgml:
* gobject/tmpl/gclosure.sgml:
* gobject/tmpl/gtype.sgml: Fix typos
Noticed by Areg Beketovski
svn path=/trunk/; revision=7011
2008-06-11 18:25:44 +00:00
Matthias Clasen
f9f98f1c8b
Fix a typo
...
svn path=/trunk/; revision=7009
2008-06-11 17:56:49 +00:00
Matthias Clasen
777df550ab
more doc fixage
...
svn path=/trunk/; revision=7008
2008-06-11 17:47:53 +00:00
Matthias Clasen
5b12bf33a4
Improve docs
...
svn path=/trunk/; revision=7007
2008-06-11 17:03:11 +00:00
Matthias Clasen
74820f48db
Improve docs
...
svn path=/trunk/; revision=7006
2008-06-11 17:00:57 +00:00
Matthias Clasen
7372ce2981
Doc improvements
...
svn path=/trunk/; revision=7005
2008-06-11 16:35:53 +00:00
Matthias Clasen
107d1d330d
fix some docs
...
svn path=/trunk/; revision=7004
2008-06-11 16:27:22 +00:00
Matthias Clasen
bd216ba3c8
Bug 528717 – Misprint in the description of the parameter
...
'type_id' for the interface g_type_register_fundamental
* gobject/tmpl/gtype.sgml: Remove references to GTypeFundamentals
Pointed out by Areg Beketovski
svn path=/trunk/; revision=7000
2008-06-11 15:01:11 +00:00
Matthias Clasen
90f1812309
Fix docs
...
svn path=/trunk/; revision=6999
2008-06-11 14:58:42 +00:00
Matthias Clasen
e0072d4441
Additions
...
svn path=/trunk/; revision=6994
2008-06-10 17:54:24 +00:00
14:06:34 Tim Janik
a52a14e4a9
fixed documentation regarding type checking macros that do and do not
...
2008-06-10 14:06:34 Tim Janik <timj@imendio.com>
* gobject/tmpl/gtype.sgml: fixed documentation regarding type checking
macros that do and do not issue warnings.
svn path=/trunk/; revision=6986
2008-06-10 12:07:18 +00:00
Matthias Clasen
8b08deaaf5
Bug 535021 – g_param_spec_internal documentation should
...
describe purpose of nick and blurb
* gobject/tmpl/gparamspec.sgml: Explain nicks and blurbs
some more.
svn path=/trunk/; revision=6940
2008-05-27 14:18:14 +00:00
Matthias Clasen
9f64fa6fe9
Fix docs for g_cclosure_marshal_STRING__OBJECT_POINTER. ( #534177 , Areg
...
2008-05-25 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/gclosure.sgml: Fix docs for
g_cclosure_marshal_STRING__OBJECT_POINTER. (#534177 , Areg Beketovski)
svn path=/trunk/; revision=6929
2008-05-25 19:53:47 +00:00
Matthias Clasen
537075e94c
Bug 528648 – Extra >s in Object Construction section...
...
* gobject/tut_howto.xml: Fix a formatting glitch
svn path=/trunk/; revision=6900
2008-05-17 05:56:29 +00:00
Matthias Clasen
43964b2fc1
Add missing *.
...
* gobject/tut_howto.xml: Add missing *.
svn path=/trunk/; revision=6829
2008-04-08 01:54:28 +00:00
Matthias Clasen
3d4b7be047
Fix a typo
...
svn path=/trunk/; revision=6189
2007-12-23 02:57:57 +00:00
Matthias Clasen
48ba9ea756
2.15.0
...
svn path=/trunk/; revision=6180
2007-12-21 00:37:41 +00:00
21:06:47 Tim Janik
1e55738f31
initialize automake variables EXTRA_DIST and TEST_PROGS for unconditional
...
2007-11-21 21:06:47 Tim Janik <timj@imendio.com>
* Makefile.decl: initialize automake variables EXTRA_DIST and
TEST_PROGS for unconditional appending via += in other makefiles.
define recursive test targets: test, test-report, perf-report,
full-report, as described here:
http://mail.gnome.org/archives/gtk-devel-list/2007-November/msg00000.html
* Makefile.am:
* build/win32/vs8/Makefile.am, build/win32/dirent/Makefile.am:
* build/win32/Makefile.am, build/Makefile.am:
* docs/Makefile.am, docs/reference/Makefile.am:
* docs/reference/glib/Makefile.am, docs/reference/gobject/Makefile.am:
* gmodule/Makefile.am, tests/Makefile.am:
* tests/refcount/Makefile.am, tests/gobject/Makefile.am:
* glib/update-pcre/Makefile.am, glib/libcharset/Makefile.am:
* glib/tests/Makefile.am, glib/pcre/Makefile.am:
* glib/gnulib/Makefile.am, gobject/Makefile.am, m4macros/Makefile.am:
* gthread/Makefile.am, glib/Makefile.am:
include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
* glib/tests/Makefile.am: removed example testing rules.
* glib/tests/testing.c: conditionalized performance and slow tests.
* glib/gtestutils.h:
* glib/gtestutils.c: work around g_test_config_vars not changing its
exported value after value assignments, aparently due to symbol aliases.
* glib/gtester.c: fixed off-by-one error which produced junk in logs.
* configure.in: check for python >= 2.4 and provide $PYTHON for scripts.
svn path=/trunk/; revision=5914
2007-11-21 20:09:46 +00:00
Cody Russell
515f42c9ed
Documentation fixes. Recommend macro type names such as
...
2007-11-13 Cody Russell <bratsche@gnome.org>
* docs/reference/gobject/gobject-docs.sgml:
* docs/reference/gobject/tut_gsignal.xml:
* docs/reference/gobject/tut_gtype.xml:
* docs/reference/gobject/tut_intro.xml:
* docs/reference/gobject/tut_tools.xml:
* docs/reference/gobject/tut_howto.xml:
* docs/reference/gobject/tut_gobject.xml: Documentation fixes.
Recommend macro type names such as NAUTILUS_TYPE_WINDOW (not
NAUTILUS_WINDOW_TYPE). Fixed text which erroneously stated that
superclass initializers don't run when an object is
instantiated. Fixed numerous spelling mistakes. Minor grammar
edits. (#490637 , Adam Dingle)
svn path=/trunk/; revision=5857
2007-11-13 07:10:42 +00:00
Matthias Clasen
1c6dffc356
2.14.3
...
svn path=/trunk/; revision=5802
2007-11-07 05:42:02 +00:00
Mathias Hasselmann
9b79a12192
Use correct naming conventions when explaining maman_bar_get_type().
...
* docs/reference/gobject/tut_gtype.xml: Use correct naming conventions
when explaining maman_bar_get_type(). (#493688 ) Mention G_DEFINE_TYPE.
svn path=/trunk/; revision=5799
2007-11-05 16:21:36 +00:00
Matthias Clasen
10d275d751
Small doc update
...
svn path=/trunk/; revision=5788
2007-10-17 03:32:16 +00:00
Matthias Clasen
83684e4b03
2.14.2
...
svn path=/trunk/; revision=5786
2007-10-16 06:33:50 +00:00
Matthias Clasen
c1a9780043
Improve g_value_set_object docs
...
svn path=/trunk/; revision=5784
2007-10-16 05:35:23 +00:00
Matthias Clasen
30e729d9b2
Updates
...
svn path=/trunk/; revision=5765
2007-09-16 16:43:58 +00:00
Tristan Van Berkom
24e24fed8b
fixed a typo in docs.
...
svn path=/trunk/; revision=5682
2007-08-08 18:02:57 +00:00
Matthias Clasen
0b434a3cbd
2.14.0
...
svn path=/trunk/; revision=5674
2007-08-04 03:03:02 +00:00
Matthias Clasen
b09c2ff4cd
2.13.7
...
svn path=/trunk/; revision=5634
2007-07-12 17:53:42 +00:00
Tim Janik
39248d5123
fixed g_type_name() docs to forbid passing in invalid type IDs.
...
Thu Jul 12 18:28:47 2007 Tim Janik <timj@gtk.org>
* gobject/tmpl/gtype.sgml: fixed g_type_name() docs to forbid passing in
invalid type IDs.
svn path=/trunk/; revision=5632
2007-07-12 16:29:21 +00:00
Tim Janik
c58a67cbe7
minor docu build fixes.
...
Tue Jul 10 13:04:03 2007 Tim Janik <timj@imendio.com>
* minor docu build fixes.
svn path=/trunk/; revision=5620
2007-07-10 11:04:24 +00:00
Tim Janik
3a132f5dd5
GClosure docu fixes from Guillaume Cottenceau, #383155 .
...
Mon Jul 9 10:23:53 2007 Tim Janik <timj@imendio.com>
* gobject/tmpl/gclosure.sgml: GClosure docu fixes from Guillaume
Cottenceau, #383155 .
svn path=/trunk/; revision=5610
2007-07-09 08:25:14 +00:00
Tim Janik
90a9f513c3
typo fix, #451459 .
...
Wed Jun 27 11:43:01 2007 Tim Janik <timj@gtk.org>
* gobject/tmpl/gtype.sgml (initializers): typo fix, #451459 .
svn path=/trunk/; revision=5588
2007-06-27 09:43:53 +00:00
Matthias Clasen
fc0a52ca3a
2.13.5
...
svn path=/trunk/; revision=5577
2007-06-18 17:31:49 +00:00
Cody Russell
49f802b83e
Added GRegex boxed type. ( #445065 , Carlos Garnacho)
...
2007-06-15 Cody Russell <bratsche@gnome.org>
* docs/reference/gobject/tmpl/gboxed.sgml:
* docs/reference/gobject/gobject-sections.txt:
* glib/gregex.c:
* gobject/gboxed.[ch]:
* gobject/gobject.symbols: Added GRegex boxed type.
(#445065 , Carlos Garnacho)
svn path=/trunk/; revision=5566
2007-06-15 16:31:21 +00:00
Matthias Clasen
07d778754a
Fix a typo
...
svn path=/trunk/; revision=5517
2007-05-27 02:03:14 +00:00
Ryan Lortie
e3562e543a
Document ->constructed().
...
2007-04-02 Ryan Lortie <desrt@desrt.ca>
* gobject/tmpl/objects.sgml: Document ->constructed().
svn path=/trunk/; revision=5440
2007-04-03 10:44:14 +00:00
Matthias Clasen
1cb4af3e96
2.13.0
...
svn path=/trunk/; revision=5419
2007-03-16 22:11:15 +00:00
Stefan Kost
676506cf2d
Readd docs for G_PARAM_STATIC_NICK and add docs for new
...
* gobject/tmpl/gparamspec.sgml:
Readd docs for G_PARAM_STATIC_NICK and add docs for new
G_PARAM_STATIC_STRINGS (fixes #418021 ).
svn path=/trunk/; revision=5403
2007-03-14 19:09:49 +00:00
Stefan Kost
8ec7d6ca3f
Format XML to be more editable. Describe Interfaces better. Add a footnote
...
* gobject/tut_gobject.xml:
* gobject/tut_gsignal.xml:
* gobject/tut_gtype.xml:
* gobject/tut_howto.xml:
* gobject/tut_intro.xml:
* gobject/tut_tools.xml:
Format XML to be more editable. Describe Interfaces better. Add a
footnote at first occurance of 'maman_'.
svn path=/trunk/; revision=5334
2007-02-10 22:08:42 +00:00
Stefan Kost
b8fcf708d0
Unify spelling of GObject and GType. Improve some wording. Update the
...
* gobject/tut_gobject.xml:
* gobject/tut_gsignal.xml:
* gobject/tut_gtype.xml:
* gobject/tut_howto.xml:
* gobject/tut_tools.xml:
Unify spelling of GObject and GType. Improve some wording. Update the
usage of private data. Make tables use row-spans and add id's to them.
svn path=/trunk/; revision=5327
2007-02-07 22:15:34 +00:00
Soren Sandmann
674c4df418
New files implementing GSequence, a list implemented using a binary tree.
...
2007-02-03 Soren Sandmann <sandmann@daimi.au.dk>
* glib/gsequence.[ch]: New files implementing GSequence, a list
implemented using a binary tree.
* glib/glib.h, glib/glib.symbols: Update for GSequence.
* docs/reference: Add documentation for GSequence
* tests: Add sequence-test.c, a thorough test of all of
the GSequence API.
svn path=/trunk/; revision=5322
2007-02-03 23:24:50 +00:00
Matthias Clasen
20a05714cc
Fix a typo
...
svn path=/trunk/; revision=5319
2007-01-30 18:56:09 +00:00
Matthias Clasen
62534876c5
Updates
...
svn path=/trunk/; revision=5310
2007-01-24 04:13:33 +00:00
Matthias Clasen
daeff90d19
Additions
...
svn path=/trunk/; revision=5261
2007-01-15 03:05:27 +00:00
Behdad Esfahbod
a0c60a62d6
Add g_unichar_iszerowidth(). ( #347645 )
...
2007-01-03 Behdad Esfahbod <behdad@gnome.org>
* glib/glib.symbols:
* glib/gunicode.h:
* glib/guniprop.c: Add g_unichar_iszerowidth(). (#347645 )
svn path=/trunk/; revision=5202
2007-01-03 20:48:24 +00:00
Michael Natterer
feb07512f0
removed all .cvsignore files. SVN doesn't need them.
...
2007-01-03 Michael Natterer <mitch@imendio.com>
* removed all .cvsignore files. SVN doesn't need them.
svn path=/trunk/; revision=5198
2007-01-03 11:22:36 +00:00
Matthias Clasen
d7b7c44e40
Define G_DEFINE_DYNAMIC_TYPE and and _EXTENDED variant. ( #334437 )
...
2006-12-29 Matthias Clasen <mclasen@redhat.com>
* gtypemodule.h: Define G_DEFINE_DYNAMIC_TYPE and
and _EXTENDED variant. (#334437 )
2006-12-29 06:12:11 +00:00
Matthias Clasen
b1e4310d6f
Clarify a detail about g_object_set_data_full. ( #343750 , Christian
...
2006-12-28 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/objects.sgml: Clarify a detail about
g_object_set_data_full. (#343750 , Christian Neumair)
2006-12-29 05:10:50 +00:00
Tim Janik
0f27a7cd04
updates from new doc builds
2006-12-28 14:14:29 +00:00
Matthias Clasen
fdfc2fc6fc
Expand GObject::notify documentation. ( #381722 , Nickolay V. Shmyrev)
...
2006-12-17 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/objects.sgml: Expand GObject::notify
documentation. (#381722 , Nickolay V. Shmyrev)
* gobject/tmpl/gparamspec.sgml: Add canonical-parameter-name id.
2006-12-17 19:59:02 +00:00
Matthias Clasen
acd7325895
typo fix
2006-12-17 19:51:28 +00:00
Matthias Clasen
0c10536d2e
s/Gnome/GNOME/g ( #352156 , Guillaume Desmottes)
...
2006-12-14 Matthias Clasen <mclasen@redhat.com>
* gobject/*.xml: s/Gnome/GNOME/g (#352156 , Guillaume Desmottes)
2006-12-15 04:03:07 +00:00
Matthias Clasen
6300eef350
Add a hint about the requirement that enum and flags values must be
...
2006-10-08 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/enumerations_flags.sgml: Add a hint about
the requirement that enum and flags values must be static.
2006-10-08 19:35:52 +00:00
Johan Dahlin
c2441aea68
typo, new module name
2006-08-24 23:26:06 +00:00
Josh Parsons
3d4e51759a
copyediting API docs
2006-08-09 21:32:12 +00:00
Matthias Clasen
2107d8e3ed
2.11.4
2006-06-20 15:09:06 +00:00
Matthias Clasen
0c26468057
2.11.2
2006-06-05 17:34:53 +00:00
Tim Janik
01e5d78f6d
amend G_TYPE_CHAR according to #303622 .
...
Wed May 31 11:35:48 2006 Tim Janik <timj@gtk.org>
* gobject/tmpl/gtype.sgml (Note): amend G_TYPE_CHAR according to #303622 .
2006-05-31 09:41:30 +00:00
Matthias Clasen
ba7dd25959
2.11.1
2006-05-15 17:16:28 +00:00
Matthias Clasen
530b06b7e5
Updates
...
2006-05-10 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/gtype.sgml: Updates
2006-05-10 18:26:45 +00:00
Matthias Clasen
4b17ee97a5
2.11.0
2006-05-03 02:05:01 +00:00
Matthias Clasen
4d0f3cf076
document a little pitfall
2006-05-02 15:42:18 +00:00
Matthias Clasen
5dd378d2bd
Updates
2006-04-24 21:12:52 +00:00
Matthias Clasen
8506d70257
forgotten file
2006-04-24 20:50:12 +00:00
Matthias Clasen
f37cf04194
documentation additions
2006-04-21 16:54:15 +00:00
Matthias Clasen
8926039dde
Add some missing Since: 2.8 tags
2006-04-19 14:51:49 +00:00
Matthias Clasen
442ef9d902
Say that ref/unref are thread-safe now. ( #322883 , Christophe Fergeau)
...
2006-04-18 Matthias Clasen <mclasen@redhat.com>
* gobject/tut_gobject.xml: Say that ref/unref are thread-safe now.
(#322883 , Christophe Fergeau)
2006-04-18 18:36:44 +00:00
Matthias Clasen
f2e6861460
Document class_offset 0. and that class_closure may be NULL.
...
2006-04-05 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/signals.sgml: Document class_offset 0.
and that class_closure may be NULL.
2006-04-05 16:18:42 +00:00
Matthias Clasen
5486886c82
Document class_offset 0.
...
2006-04-05 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/signals.sgml: Document class_offset 0.
2006-04-05 16:07:15 +00:00
Matthias Clasen
286c730dce
Fix docs
2006-04-03 18:32:29 +00:00
Matthias Clasen
9b6f47f9b4
Update the floating docs wrt to GInitiallyUnowned.
...
2006-03-30 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/objects.sgml: Update the floating docs wrt
to GInitiallyUnowned.
2006-03-30 20:38:09 +00:00
Matthias Clasen
8763438c33
Additions
...
2006-03-30 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/param_value_types.sgml:
* gobject/tmpl/objects.sgml:
* gobject/tmpl/gtype.sgml: Additions
2006-03-30 20:30:21 +00:00
Matthias Clasen
2f4f39095f
2.10.0
2006-02-24 17:17:35 +00:00
Stefan Kost
ee57c76a43
add @since: for _add_private, _GET_PRIVATE fix example to use ->priv and
...
* gobject/tmpl/gtype.sgml:
add @since: for _add_private, _GET_PRIVATE
* gobject/tut_gobject.xml:
fix example to use ->priv and not ->private
* gobject/tut_howto.xml:
fix g_type_class_add_private example
2006-02-22 14:41:14 +00:00
Sven Herzberg
e70a6c4be9
tell how to create container classes which are as flexible as a GValue is
...
2006-01-29 Sven Herzberg <herzi@gnome-de.org>
* docs/reference/gobject/tmpl/param_value_types.sgml: tell how to
create container classes which are as flexible as a GValue is
2006-01-29 14:30:22 +00:00
Matthias Clasen
5cb432b56c
Mention g_trap_object_ref
...
2006-01-26 Matthias Clasen <mclasen@redhat.com>
* gobject/tut_tools.xml: Mention g_trap_object_ref
* glib/running.sgml: Add g_trap variables to the index.
Mention conditional breakpoints as an alternative.
2006-01-26 19:28:33 +00:00
Sven Herzberg
82395be214
explain that G_TYPE_INSTANCE_GET_CLASS() does behave different during
...
2005-12-20 Sven Herzberg <herzi@gnome-de.org>
* docs/reference/gobject/tmpl/gtype.sgml: explain that
G_TYPE_INSTANCE_GET_CLASS() does behave different during
initialization
2006-01-08 15:13:28 +00:00
Stefan Kost
fbaf1c4db6
fix internal link, little XXX cleanup
...
* gobject/tut_gtype.xml:
fix internal link, little XXX cleanup
2006-01-07 21:08:17 +00:00
Matthias Clasen
9090c67afc
2.9.2
2006-01-06 05:07:47 +00:00
Matthias Clasen
9d69eab963
additions
2005-12-24 07:49:51 +00:00
Matthias Clasen
ce4648d362
Document G_TYPE_HASH_TABLE.
...
2005-12-19 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/gboxed.sgml: Document G_TYPE_HASH_TABLE.
2005-12-19 21:31:49 +00:00
Tim Janik
2e6faeec59
corrected floating reference documentation.
...
Mon Dec 12 15:31:41 2005 Tim Janik <timj@imendio.com>
* gobject/tmpl/objects.sgml: corrected floating reference documentation.
2005-12-12 14:32:27 +00:00
Matthias Clasen
eff8046fcc
2.9.1
2005-12-09 18:05:25 +00:00
Matthias Clasen
dfbaeca45b
Document n_preallocs as ignored.
...
2005-12-07 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/gparamspec.sgml:
* gobject/tmpl/gtype.sgml: Document n_preallocs as
ignored.
2005-12-07 15:57:28 +00:00
Matthias Clasen
0b5560da8b
Add versioned deprecation information
2005-12-05 15:38:54 +00:00
Matthias Clasen
a59e49a545
Updates
...
2005-12-05 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/generic_values.sgml:
* glib/tmpl/trees-nary.sgml:
* glib/tmpl/linked_lists_double.sgml:
* glib/tmpl/linked_lists_single.sgml:
* glib/tmpl/memory_chunks.sgml:
* glib/tmpl/allocators.sgml:
* glib/tmpl/macros_misc.sgml: Updates
* glib/Makefile.am: Ignore gmirroringtable.h
2005-12-05 06:01:10 +00:00
Matthias Clasen
9adc9c942d
Document GObject API additions
2005-11-27 20:09:13 +00:00
Matthias Clasen
d9d75c48de
Document GObject api additions
2005-11-27 20:08:59 +00:00
Matthias Clasen
f59aac306d
Prepare for 2.9.0
2005-11-17 21:33:07 +00:00
Matthias Clasen
c0cffcf51b
Document g_value_set_instance(), ( #319885 , Milosz Derezynski)
...
2005-10-26 Matthias Clasen <mclasen@redhat.com>
* gobject/gobject-sections.txt:
* gobject/tmpl/generic_values.sgml: Document g_value_set_instance(),
(#319885 , Milosz Derezynski)
2005-10-27 02:54:30 +00:00
Matthias Clasen
6f3e44dc4f
Add new indices
2005-08-26 19:28:26 +00:00
Matthias Clasen
4bf14f1c4e
2.8.1
2005-08-23 04:35:33 +00:00
Matthias Clasen
d75bbbb124
Fix some formatting problems.
2005-08-15 18:45:27 +00:00
Matthias Clasen
6de0ca7807
2.8.0
2005-08-12 17:18:55 +00:00
Stepan Kasal
1200dbdc98
two stylistic fixes
2005-08-12 09:27:49 +00:00
Stepan Kasal
29e635059f
fix typos
2005-08-10 11:07:55 +00:00
Stepan Kasal
38610c0a36
manual emulation of refresh of manual pages
2005-08-10 10:49:46 +00:00
Stepan Kasal
0169468c8c
Fix typos: invokation -> invocation.
2005-08-10 10:46:55 +00:00
Matthias Clasen
bda683f786
Small fixes.
...
2005-08-05 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/gparamspec.sgml:
* glib/tmpl/types.sgml:
* glib/tmpl/option.sgml: Small fixes.
2005-08-06 03:40:07 +00:00
Matthias Clasen
776c3a8bd8
Small fixes
...
2005-08-05 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/generic_values.sgml: Small fixes
2005-08-05 20:40:52 +00:00
Matthias Clasen
138f260fbc
2.7.2
2005-07-08 15:48:32 +00:00
Matthias Clasen
ec872e77c7
Add the "new in 2.8" index.
...
2005-07-08 Matthias Clasen <mclasen@redhat.com>
* gobject/gobject-docs.sgml:
* glib/glib-docs.sgml: Add the "new in 2.8" index.
2005-07-08 15:04:29 +00:00
Matthias Clasen
f77e7d1272
Add an example
2005-07-05 05:54:42 +00:00
Matthias Clasen
399b0456ce
2.7.1
2005-06-30 21:01:58 +00:00
Mathieu Lacage
15c7e35b33
fix typo reported by Hong Gang XU.
...
2005-06-16 Mathieu Lacage <mathieu@gnome.org>
* gobject/tut_gtype.xml: fix typo reported by Hong Gang XU.
2005-06-16 07:46:37 +00:00
Mathieu Lacage
8db223409d
fix lots of typos, some of which were reported by Leonardo Boshell.
...
2005-05-25 Mathieu Lacage <mathieu@gnome.org>
* gobject/tut_*.xml: fix lots of typos,
some of which were reported by Leonardo Boshell.
2005-05-27 12:04:54 +00:00
Matthias Clasen
5ece1d7388
Mention 64bit integer types.
...
2005-05-13 Matthias Clasen <mclasen@redhat.com>
* gobject/glib-genmarshal.1:
* gobject/glib-genmarshal.xml: Mention 64bit integer
types.
2005-05-13 18:09:01 +00:00
Matthias Clasen
bc9e9efbaf
Add long descriptions.
...
2005-05-09 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/value_collection.sgml:
* gobject/tmpl/gboxed.sgml:
* gobject/tmpl/enumerations_flags.sgml:
* gobject/tmpl/objects.sgml: Add long descriptions.
2005-05-09 05:25:21 +00:00
Owen Taylor
2ae1a46b4c
Add g_object_add/remove_toggle_ref() functions to get notification when a
...
2005-05-05 Owen Taylor <otaylor@redhat.com>
* gobject.[ch] gobject.symbols: Add
g_object_add/remove_toggle_ref() functions to get notification
when a reference count is the last remaining reference; this
enables better memory management for language bindings.
(http://mail.gnome.org/archives/gtk-devel-list/2005-April/msg00095.html )
2005-05-05 Owen Taylor <otaylor@redhat.com>
* glib/gdataset.[ch] glib/gdatasetprivate.h: Add
g_datalist_set/unset_flags(), g_datalist_get_flags() functions
to squeeze some bits into a GDataSet... this is needed for
efficient implementation of toggle references in GObject.
* tests/gobject/references.c tests/gobject/Makefile.am:
Add a test case for weak and toggle references.
* glib/gfileutils.[ch]: Rename g_file_replace() back
to g_file_set_contents().
* glib/glib.symbols: Update.
2005-05-05 Owen Taylor <otaylor@redhat.com>
* glib/Makefile.am glib/glib-sections.txt gobject/gobject-sections.txt:
Update
* gobject/tmpl/objects.sgml: Document toggle-references.
2005-05-05 14:57:29 +00:00
Matthias Clasen
728ab5ff7e
Small additions.
...
2005-05-02 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/signals.sgml:
* gobject/tmpl/generic_values.sgml:
* gobject/tmpl/gtype.sgml:
* gobject/tmpl/value_arrays.sgml:
* gobject/tmpl/param_value_types.sgml:
* gobject/tmpl/gtypemodule.sgml:
* gobject/tmpl/enumerations_flags.sgml: Small additions.
2005-05-02 15:29:43 +00:00
Matthias Clasen
5374882914
Additions
2005-05-01 22:02:16 +00:00
Matthias Clasen
a82bcb3107
Add a boxed type for GDate. ( #301787 , Tim-Philipp Müller)
...
2005-04-29 Matthias Clasen <mclasen@redhat.com>
* gobject.symbols:
* gboxed.h (G_TYPE_DATE):
* gboxed.c: Add a boxed type for GDate. (#301787 , Tim-Philipp
Müller)
2005-04-29 18:33:41 +00:00
Stefan Kost
0979140060
all interface examples use 'interface' instead of 'class'
2005-04-23 09:50:36 +00:00
Stefan Kost
f57a5c33c3
add missing image
2005-04-22 18:34:41 +00:00
Stefan Kost
9ce3590d4e
merged in docs form the gobject tutorial
2005-04-22 10:27:37 +00:00
Matthias Clasen
4bd613efc4
Don't copy strings which are marked as static. Don't allow non-canonical
...
2005-03-20 Matthias Clasen <mclasen@redhat.com>
* gparam.c (g_param_spec_internal): Don't copy strings
which are marked as static. Don't allow non-canonical static
names.
* gparam.h (GParamFlags): Add G_PARAM_STATIC_{NAME,NICK,BLURB}
flags. (#160655 , Ben Maurer)
2005-03-21 04:55:26 +00:00
Matthias Clasen
e42c2fc58f
Apply patches by Stefan Kost to document naming restrictions. ( #167614 )
...
2005-03-07 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/gtype.sgml:
* gobject/tmpl/param_value_types.sgml:
* gobject/tmpl/gparamspec.sgml: Apply patches by
Stefan Kost to document naming restrictions. (#167614 )
2005-03-08 04:43:00 +00:00
Matthias Clasen
56396d4897
Fix an example. ( #164269 , Sebastian Bacher)
...
2005-01-16 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/enumerations_flags.sgml: Fix an
example. (#164269 , Sebastian Bacher)
2
2005-01-17 03:16:29 +00:00
Matthias Clasen
3d1e4844bb
2.6.1
2005-01-07 16:58:16 +00:00
Matthias Clasen
38c39a7cfd
Small addition. ( #145158 , Mariano Suárez-Alvarez)
...
2005-01-04 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/signals.sgml: Small addition. (#145158 ,
Mariano Suárez-Alvarez)
2005-01-04 18:40:02 +00:00
Matthias Clasen
5d679e08e7
Fix a typo. ( #161713 , Vincent Untz)
...
2004-12-20 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/signals.sgml: Fix a typo. (#161713 ,
Vincent Untz)
2004-12-20 14:20:25 +00:00
Matthias Clasen
32247a04c6
2.6.0
2004-12-16 05:48:25 +00:00
Matthias Clasen
80aded0d23
*** empty log message ***
2004-12-15 13:55:34 +00:00
Mathieu Lacage
f09a5d8ac2
fix typo
2004-11-05 08:45:17 +00:00
Mathieu Lacage
be092b4ac4
integrate patches by Sylvain Foret
2004-11-05 07:33:28 +00:00
Mathieu Lacage
b7d67f62ec
improve a bit the introduction
2004-11-04 15:14:23 +00:00
Mathieu Lacage
7d30332bab
forgot to add this file.
2004-11-04 14:55:05 +00:00
Mathieu Lacage
acba30a9eb
integrate patch from Stefan Kost
2004-11-04 14:52:33 +00:00
Matthias Clasen
933afd0277
Add a 2.6 index.
2004-10-26 16:13:20 +00:00
Matthias Clasen
5a6df6dd65
Documentation fixes.
2004-10-26 16:10:52 +00:00
Matthias Clasen
034fef999e
Typo fix.
2004-10-24 01:25:42 +00:00
Matthias Clasen
481fe81c06
Rename first parameter to check_data, since apparently the system headers
...
2004-10-23 Matthias Clasen <mclasen@redhat.com>
* gtype.h (GTypeInterfaceCheckFunc): Rename first parameter to
check_data, since apparently the system headers on AIX leak a
macro named func_data. (#155178 , Andrea Campi)
2004-10-24 01:22:30 +00:00
Matthias Clasen
2118d96318
Improve the docs for g_object_get_property(). ( #153424 , Stefan Kost)
...
2004-10-05 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/objects.sgml: Improve the docs for
g_object_get_property(). (#153424 , Stefan Kost)
2004-10-05 19:44:33 +00:00
Matthias Clasen
0523aca07c
Improve docs for g_signal_add_emission_hook. ( #154299 , Nickolay V.
...
2004-10-03 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/signals.sgml: Improve docs for
g_signal_add_emission_hook. (#154299 , Nickolay V. Shmyrev)
2004-10-04 02:36:14 +00:00
Matthias Clasen
7f014a1ff3
2.5.2
2004-08-25 05:02:57 +00:00
Soeren Sandmann
0192c59937
=== Released 2.5.0 ===
...
Sun Jul 18 19:40:30 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* === Released 2.5.0 ===
* Makefile.am (BUILT_EXTRA_DIST): move gtk-doc.make here.
2004-07-18 17:44:23 +00:00
Mathieu Lacage
7825b925de
fill in ulinks
2004-07-16 06:56:20 +00:00
Mathieu Lacage
80b6ffc717
apply patch by stefan Kost
2004-07-16 06:37:58 +00:00
Matthias Clasen
8414d97c5b
Add g_type_module_register_enum() and g_type_module_register_flags().
...
Tue Jul 6 00:54:38 2004 Matthias Clasen <maclas@gmx.de>
* gobject/gobject-sections.txt:
* gobject/tmpl/gtypemodule.sgml: Add g_type_module_register_enum()
and g_type_module_register_flags().
2004-07-06 04:56:36 +00:00
Mathieu Lacage
47d4ea5f83
integrate the last changes by Stefan
2004-06-10 20:21:59 +00:00
Mathieu Lacage
75a9e23f18
Fix a typo reported by Laurent Lemaitre. Tweak the GType section on instiable objects and update the change list.
2004-06-10 11:00:53 +00:00
Mathieu Lacage
33129dca91
add chain up section
2004-06-10 09:41:43 +00:00
Mathieu Lacage
9af6ab55db
commit first patches from stefan, work on the chaining up section
2004-06-09 20:22:04 +00:00
Matthias Clasen
73f130eab5
Fix the docs for G_DEFINE_TYPE() and friends. ( #143800 , Crispin Flowerday)
...
Sun Jun 6 23:20:42 2004 Matthias Clasen <maclas@gmx.de>
* gobject/tmpl/gtype.sgml: Fix the docs for G_DEFINE_TYPE()
and friends. (#143800 , Crispin Flowerday)
2004-06-07 03:22:17 +00:00
Matthias Clasen
16cc3960d4
Add multiple indices.
...
2004-05-05 Matthias Clasen <mclasen@redhat.com>
* gobject/gobject-docs.sgml:
* glib/glib-docs.sgml: Add multiple indices.
2004-05-05 17:32:12 +00:00
Owen Taylor
df592b6e53
SGML markup fix
2004-03-14 16:35:54 +00:00