コード例 #1
0
ファイル: dialog.py プロジェクト: enthought/traitsgui
    def _on_exit(self):
        """ Called when the exit action is invoked. """

        parent = self.control

        information(parent, 'Going...')
        warning(parent, 'Going......')
        error(parent, 'Gone!')

        if confirm(parent, 'Should I exit?') == YES:
            self.close()

        return
コード例 #2
0
    def _on_exit(self):
        """ Called when the exit action is invoked. """

        parent = self.control

        information(parent, 'Going...')
        warning(parent, 'Going......')
        error(parent, 'Gone!')

        if confirm(parent, 'Should I exit?') == YES:
            self.close()

        return
コード例 #3
0
 def _on_reset(self,info):
     info.object.reset()
     pyface.information(parent=info.ui.control, message='Project cleaned')