/[libvob]/libvob/vob/putil/demo.py
ViewVC logotype

Diff of /libvob/vob/putil/demo.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.16 by humppake, Tue Aug 12 13:50:02 2003 UTC revision 1.17 by tjl, Sat Aug 16 12:49:30 2003 UTC
# Line 299  class Main(Runnable): Line 299  class Main(Runnable):
299          b,s = (Bindings(), Show())          b,s = (Bindings(), Show())
300          global w          global w
301          w = gfxapi.createWindow()          w = gfxapi.createWindow()
302          w.setLocation(0,0,1024,768)  
303            geometry = java.lang.System.getProperty("vob.windowsize", "1024x768")
304            (width, height) = geometry.split("x")
305    
306            w.setLocation(0,0,int(width),int(height))
307          scr = vob.Screen(w, b, s)          scr = vob.Screen(w, b, s)
308          loadScenes()          loadScenes()
309          vob.AbstractUpdateManager.addWindow(scr)          vob.AbstractUpdateManager.addWindow(scr)

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26