ocarina/ocarina/components/box.py
Bryan Schumaker f4488dc909 Move ocarina.box
This has been moved to ocarina.components.box.  I don't think it has
been used recently, though.  Maybe it is safe to delete.
2010-11-23 20:12:49 -05:00

17 lines
234 B
Python

# 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()