Update of /cvsroot/btplusplus/BT++/src/TabHistory
In directory sc8-pr-cvs1:/tmp/cvs-serv18792/src/TabHistory
Added Files:
TabHistory.py __init__.py
Log Message:
Started adding TabHistory, nothing there yet.
--- NEW FILE: TabHistory.py ---
from wxPython.wx import *
from TabTrans.Grid import Grid
from TabTrans.GridTable import GridTable
###########################################################################################################
###########################################################################################################
class TabHistory(wxPanel):
###########################################################################################################
def __init__(self, parent):
wxPanel.__init__(self, parent, -1, wxPoint(0,65), wxSize(786,347))
#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)
--- NEW FILE: __init__.py ---
|