home *** CD-ROM | disk | FTP | other *** search
/ com!online 2005 April / com_0405_1.iso / opensource / BTpp-0.5.4-bin.exe / $INSTDIR / BT++.exe / TabTrans / TabTrans.pyo (.txt) < prev   
Encoding:
Python Compiled Bytecode  |  2003-04-19  |  1.0 KB  |  22 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.2)
  3.  
  4. from wxPython.wx import *
  5. from Grid import Grid
  6.  
  7. class TabTrans(wxPanel):
  8.     
  9.     def __init__(self, parent):
  10.         wxPanel.__init__(self, parent, -1, wxPoint(0, 65), wxSize(786, 347), style = 0)
  11.         self.Grid = Grid(self)
  12.         sizer = wxBoxSizer(wxHORIZONTAL)
  13.         sizer.Add(self.Grid, 1, wxEXPAND | wxALL, 3)
  14.         self.SetSizer(sizer)
  15.  
  16.     
  17.     def Destroy(self, evt = wxCloseEvent()):
  18.         self.Grid.Destroy()
  19.         wxPanel.Destroy(self)
  20.  
  21.  
  22.