File: notes.txt

package info (click to toggle)
python-enable 4.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,280 kB
  • ctags: 13,899
  • sloc: cpp: 48,447; python: 28,502; ansic: 9,004; makefile: 315; sh: 44
file content (31 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

- The pyglet backend should provide its own equivalent for wx.SimpleApp,
  i.e. opens a frame and runs the main loop.  The pyglet backend's Window
  should work like any other backend's Window class, and expect a main loop
  to be running.

- Small error in Pyglet Programming guide windowing.txt:
        window.Window(fullscreen=True, screens[1])
  should be:
        window.Window(fullscreen=True, screen=screens[1])

- Another error in Pyglet Programming guide mouse.txt: the mouse capture
  method should be named set_exclusive_mouse(), instead of
  set_mouse_exclusive()

- Integration with WX/qt?  (e.g. TraitsPygletWindow)

- Use pyglet.clock to implement EnableTimer on it

- Need to figure out how to handle double clicks since we don't natively
  get those from Pyglet

- Extend Enable to support horizontal scrolling

- We should support on_text_motion and on_text_motion_select, but only text
  widgets and components would care.  Right now Enable doesn't have any
  concept of distinguishing different kinds of components.  It would be a
  good thing to add.