pidgin/pidgin

Refresh all of the ui files

2021-03-22, Gary Kramlich
132c763c26e4
Refresh all of the ui files

* Resaved everything with Glade 3.38 which changes all of the properties from
using `_`'s to using `-`'s.
* Make sure everything has the license information, including the menu files
that Glade doesn't handle directly.
* Make sure that all of our ui files are requiring Gtk 3.22 as that is our
minimum and many of them were set to 3.20 which was making Glade angry.
* Change the margin-left to margin-start in xfer.ui

Glade is doing some weird stuff though that we'll need to watch in the future. Namely the format view isn't showing up as an internal client in `TalkatuEditor` for some reason and Glade removed the property from the Invisible `GtkTextTag`.

Testing Done:
Compiled and ran locally.

Reviewed at https://reviews.imfreedom.org/r/559/
DOC_MODULE = 'finch'
# Header files or dirs to ignore when scanning. Use base file/dir names
ignore_hfiles = [
'plugins',
]
# Extra options to supply to gtkdoc-scan.
scan_args = [
'--deprecated-guards=PURPLE_DISABLE_DEPRECATED|GNT_DISABLE_DEPRECATED|FINCH_DISABLE_DEPRECATED',
'--rebuild-types',
'--rebuild-sections',
'--ignore-headers=' + ' '.join(ignore_hfiles),
]
# Extra options to supply to gtkdoc-mkdb.
mkdb_args = [
'--ignore-files=' + ' '.join(ignore_hfiles),
]
# Extra options to supply to fixxrefs
fixxref_args = [
'--extra-dir=@0@'.format(libgnt_docpath),
'--extra-dir=../libpurple',
]
configure_file(
input : 'version.xml.in',
output : 'version.xml',
configuration : version_conf)
finch_doc = gnome.gtkdoc(DOC_MODULE,
main_xml : DOC_MODULE + '-docs.xml',
src_dir : libfinch_inc,
dependencies : libfinch_dep,
install : true,
scan_args : scan_args,
mkdb_args : mkdb_args,
fixxref_args : fixxref_args,
gobject_typesfile : DOC_MODULE + '.types')