ocarina/ocarina/components/box.py

17 lines
234 B
Python
Raw Normal View History

# Bryan Schumaker (8/20/2010)
import ocarina
gtk = ocarina.gtk
class VBox(gtk.VBox):
def __init__(self):
gtk.VBox.__init__(self)
self.show()
class HBox(gtk.HBox):
def __init__(self):
gtk.HBox.__init__(self)
self.show()