Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > media > contrib-backports > by-pkgid > 480400831775432e21887c0bb26fd401 > files > 514

python-enthought-enable-3.4.0-1mdv2010.2.i586.rpm


from numpy import array

from enthought.enable.example_support import DemoFrame, demo_main

from enthought.enable.api import Container, Window
from enthought.enable.text_grid import TextGrid

class MyFrame(DemoFrame):
    def _create_window(self):
        
        strings = array([["apple", "banana", "cherry", "durian"],
                         ["eggfruit", "fig", "grape", "honeydew"]])
        grid = TextGrid(string_array=strings)
        container = Container(bounds=[500,100])
        container.add(grid)
        return Window(self, -1, component=container)

if __name__ == "__main__":
    demo_main(MyFrame, size=[500,100])