Re: Documenting properties and signals with gtk-doc

2015-01-06 Thread Stefan Sauer
On 12/20/2014 01:39 PM, Wouter Verhelst wrote: Hi list, I've been pouring over the (fairly scarce) documentation https://developer.gnome.org/gtk-doc-manual/unstable/ if anything is unclear, let me know. ... and FYI there also is a gtk-doc mailing list and irc channel. Stefan and trying to

Re: Documenting properties and signals with gtk-doc

2014-12-20 Thread jcupitt
I believe (I think) signals and properties are found at build time by starting up your library and walking the classes you define. You need to add a bit more machinery to your Makefile.am to help it run g-ir-scanner for you. There's a page on the wiki about this:

Re: Documenting properties and signals with gtk-doc

2014-12-20 Thread jcupitt
Oh dear, I'm sorry, I've been fiddling with gobject-introspection too much recently. Of course you don't need introspection to generate gtk-doc output. I don't know why your signal documentation is not being generated. On 20 December 2014 at 13:10, jcup...@gmail.com wrote: I believe (I

Re: Documenting properties and signals with gtk-doc

2014-12-20 Thread Wouter Verhelst
On Sat, Dec 20, 2014 at 01:14:06PM +, jcup...@gmail.com wrote: Oh dear, I'm sorry, I've been fiddling with gobject-introspection too much recently. Of course you don't need introspection to generate gtk-doc output. Well, I do want introspection eventually, and I had already looked at that

Re: Documenting properties and signals with gtk-doc

2014-12-20 Thread Colomban Wendling
Hi, Le 20/12/2014 13:39, Wouter Verhelst a écrit : [...] I wrote a library to deal with joysticks in a GObject/GTK-like way. It works (including a GTK-based tester tool, although the UI could use some improvement), and I now want to do the API documentation and also make sure that

Re: Documenting properties and signals with gtk-doc

2014-12-20 Thread Wouter Verhelst
On Sat, Dec 20, 2014 at 03:04:17PM +0100, Colomban Wendling wrote: Hi, Le 20/12/2014 13:39, Wouter Verhelst a écrit : [...] I wrote a library to deal with joysticks in a GObject/GTK-like way. It works (including a GTK-based tester tool, although the UI could use some improvement),