Re: [Github-comments] [geany/geany] gtkdoc: include macros in geany-gtkdoc.h (#1796)

2018-03-12 Thread Sagar Chalise
sagarchalise commented on this pull request. > +class DoxyDefine(DoxyElement): +@staticmethod +def from_memberdef(xml): +name = xml.find("name").text +v = xml.find("initializer") +if (v is not None): +proc = DoxygenProcess() +text = proc.pr

Re: [Github-comments] [geany/geany] gtkdoc: include macros in geany-gtkdoc.h (#1796)

2018-03-09 Thread Colomban Wendling
b4n requested changes on this pull request. Is `GEANY_WORDCHARS` actually useful to anyone? I think it's pretty much useless in most situations, and wrong in many other (e.g. it's *not* a good universal way to recognize a "word", not even for programming languages). And it's fairly easy to copy

[Github-comments] [geany/geany] gtkdoc: include macros in geany-gtkdoc.h (#1796)

2018-03-08 Thread Thomas Martitz
Some important macros are missing from geany-gtkdoc.h, mainly GEANY_WORDCHARS. Extend the generation script to add those to geany-gtkdoc.h Note: g-ir-scanner ignores most of the macros, except those that are plain defines for string literals or numbers/characters, so only a few are usable for GIR