<%inherit file="/base.tmpl"/> <%block name="info"> ${formatter.format_xref(node.parent, type="guide", group=page_kind)} ${node.name} <%block name="synopsis"> function callback(${formatter.to_underscores(node.parent.name).lower()}, \ % for arg in formatter.get_parameters(node): ${arg.argname}:${formatter.format_type(arg.type)}, \ % endfor ):${formatter.format_type(node.retval.type)}; <%block name="details"> <code>${formatter.to_underscores(node.parent.name).lower()}</code>

instance of ${formatter.format_xref(node.parent)} that is emitting the signal

% for arg in formatter.get_parameters(node): <code>${arg.argname}</code> ${formatter.format(node, arg.doc)} % endfor % if node.retval and \ node.retval.type.ctype != 'void' and \ node.retval.type.ctype is not None: <code>Returns</code> ${formatter.format(node, node.retval.doc)} % endif