home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.2)
-
- from wxPython.wx import *
- from Grid import Grid
-
- class TabTrans(wxPanel):
-
- def __init__(self, parent):
- wxPanel.__init__(self, parent, -1, wxPoint(0, 65), wxSize(786, 347), style = 0)
- self.Grid = Grid(self)
- sizer = wxBoxSizer(wxHORIZONTAL)
- sizer.Add(self.Grid, 1, wxEXPAND | wxALL, 3)
- self.SetSizer(sizer)
-
-
- def Destroy(self, evt = wxCloseEvent()):
- self.Grid.Destroy()
- wxPanel.Destroy(self)
-
-
-