| 1067 | |
| 1068 | |
| 1069 | class CamWindow(gtk.Window): |
| 1070 | |
| 1071 | |
| 1072 | def __init__(self, **args): |
| 1073 | gtk.Window.__init__(self, **args) |
| 1074 | |
| 1075 | self.connect('destroy', gtk.main_quit) |
| 1076 | |
| 1077 | self.set_title("Cellular Automata Machine, by Don Hopkins") |
| 1078 | |
| 1079 | self.da = CamDrawingArea() |
| 1080 | self.add(self.da) |
| 1081 | |
| 1082 | |
| 1083 | ######################################################################## |