libgimp: add blurbs to all object properties for the docs

and some minor doc fixes.
This commit is contained in:
Michael Natterer
2017-06-06 21:19:17 +02:00
parent 4f4d6b27cf
commit f9ee38ea33
32 changed files with 253 additions and 96 deletions

View File

@ -97,13 +97,17 @@ gimp_controller_class_init (GimpControllerClass *klass)
klass->event = NULL;
g_object_class_install_property (object_class, PROP_NAME,
g_param_spec_string ("name", NULL, NULL,
g_param_spec_string ("name",
"Name",
"The controller's name",
"Unnamed Controller",
GIMP_PARAM_READWRITE |
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_STATE,
g_param_spec_string ("state", NULL, NULL,
g_param_spec_string ("state",
"State",
"The controller's state, as human-readable string",
"Unknown",
GIMP_PARAM_READWRITE |
G_PARAM_CONSTRUCT));