<%inherit file="/base.tmpl"/> <%block name="info"> ${formatter.format_xref(node.parent, type="guide", group=page_kind)} ${node.name} <%block name="synopsis"> def callback(${formatter.to_underscores(node.parent.name).lower()}, \ % for arg in formatter.get_parameters(node): ${arg.argname}, \ % endfor user_param1, ...) <%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 <code>user_param1</code>

first user parameter (if any) specified with the connect() method

<code>...</code>

additional user parameters (if any)

% 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