コード例 #1
0
    def create(self):
        # Connect this app to the PythonActivity
        self._listener = TogaApp(self)

        # Set the Python activity listener to be this app.
        self.native = PythonActivity.setListener(self._listener)

        self.startup()
コード例 #2
0
ファイル: app.py プロジェクト: pybee/toga
    def create(self):
        # Connect this app to the PythonActivity
        self._listener = TogaApp(self)

        # Set the Python activity listener to be this app.
        self.native = PythonActivity.setListener(self._listener)

        self.startup()
コード例 #3
0
    def _startup(self):
        # Connect this app to the PythonActivity
        self._listener = TogaApp(self)

        # Set the Python activity listener to be this app.
        self._impl = PythonActivity.setListener(self._listener)

        # Call user code to populate the main window
        self.startup()
コード例 #4
0
ファイル: app.py プロジェクト: BertRaeymaekers/notkanban
    def onStart(self):
        print("Application starting up")

        app = MyApplication()

        activity = PythonActivity.setListener(app)
コード例 #5
0
 def __init__(self):
     self._activity = PythonActivity.setListener(self)