Пример #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
    def onStart(self):
        print("Application starting up")

        app = MyApplication()

        activity = PythonActivity.setListener(app)
Пример #5
0
 def __init__(self):
     self._activity = PythonActivity.setListener(self)