Example #1
0
    def confirmation_alert(self, msg, title=None, confirmation_cb=None):
        alert = ConfirmationAlert()
        alert.props.title = title
        alert.props.msg = msg
        alert.pydebug_cb = confirmation_cb
        alert.connect('response', self._alert_response_cb)
        self._activity.add_alert(alert)

        return alert