10 lines
214 B
Python
10 lines
214 B
Python
|
import gtk
|
||
|
import goocanvas
|
||
|
|
||
|
class CanvasView(goocanvas.CanvasView):
|
||
|
def __init__(self):
|
||
|
goocanvas.CanvasView.__init__(self)
|
||
|
|
||
|
self.set_bounds(0, 0, 1200, 900)
|
||
|
self.set_scale(gtk.gdk.screen_width() / 1200.0)
|