Example #1
0
  def __init__(self):
    App.__init__(self, name="Lens. Widgets", inspector=True)

    self.namespaces = ['./sample-data/app']

    self.on('close', self._close_app_cb)
    self.on('get-hostname', self._get_hostname_cb)
    self.on('update-hostname', self._update_hostname_cb)
    self.on('toggle-window-fullscreen', self._fullscreen_cb)
    self.on('toggle-window-maximize', self._maximize_cb)
Example #2
0
  def __init__(self):
    App.__init__(self, name="Lens. Widgets", inspector=True)

    self.namespaces = ['./sample-data/app']

    self.on('close', self._close_app_cb)
    self.on('get-hostname', self._get_hostname_cb)
    self.on('update-hostname', self._update_hostname_cb)
    self.on('toggle-window-fullscreen', self._fullscreen_cb)
    self.on('toggle-window-maximize', self._maximize_cb)
Example #3
0
    def __init__(self):
        App.__init__(self, name="Lens. 3D", inspector=True)

        self.namespaces = ['./sample-data/app-3d']

        self.on('close', self._close_app_cb)