[Tn5250py-commits] tn5250py/src/lib5250py frmConnect.py,1.1,1.2 tn5250.py,1.4,1.5
Status: Inactive
Brought to you by:
pbielen
|
From: <pb...@us...> - 2003-07-02 07:13:58
|
Update of /cvsroot/tn5250py/tn5250py/src/lib5250py
In directory sc8-pr-cvs1:/tmp/cvs-serv8590/src/lib5250py
Modified Files:
frmConnect.py tn5250.py
Log Message:
Removed UniCode version of wxPython and used normal version instead.
This to be able to make it some more platform independent.
Linux doesn't has an unicode wxPython version.
Index: frmConnect.py
===================================================================
RCS file: /cvsroot/tn5250py/tn5250py/src/lib5250py/frmConnect.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** frmConnect.py 1 Jul 2003 15:05:30 -0000 1.1
--- frmConnect.py 2 Jul 2003 07:13:55 -0000 1.2
***************
*** 21,25 ****
wxFrame.__init__(self, id=wxID_WXFRAME1, name='', parent=prnt,
pos=wxPoint(350, 272), size=wxSize(370, 310),
! style=wxDEFAULT_FRAME_STYLE, title=u'TN5250PY - Verbindingen')
self._init_utils()
self.SetClientSize(wxSize(362, 276))
--- 21,25 ----
wxFrame.__init__(self, id=wxID_WXFRAME1, name='', parent=prnt,
pos=wxPoint(350, 272), size=wxSize(370, 310),
! style=wxDEFAULT_FRAME_STYLE, title='TN5250PY - Verbindingen')
self._init_utils()
self.SetClientSize(wxSize(362, 276))
***************
*** 29,53 ****
self.grid1.SetDefaultRowSize(15)
! self.button1 = wxButton(id=wxID_WXFRAME1BUTTON1, label=u'Toevoegen',
name='button1', parent=self, pos=wxPoint(25, 210), size=wxSize(90,
23), style=0)
! self.button2 = wxButton(id=wxID_WXFRAME1BUTTON2, label=u'Verwijderen',
name='button2', parent=self, pos=wxPoint(140, 210),
size=wxSize(90, 23), style=0)
! self.button3 = wxButton(id=wxID_WXFRAME1BUTTON3, label=u'Eigenschappen',
name='button3', parent=self, pos=wxPoint(255, 210),
size=wxSize(90, 23), style=0)
! self.button4 = wxButton(id=wxID_WXFRAME1BUTTON4, label=u'Verbinden',
name='button4', parent=self, pos=wxPoint(25, 245), size=wxSize(90,
23), style=0)
! self.button5 = wxButton(id=wxID_WXFRAME1BUTTON5, label=u'Opslaan',
name='button5', parent=self, pos=wxPoint(140, 245),
size=wxSize(90, 23), style=0)
! self.button6 = wxButton(id=wxID_WXFRAME1BUTTON6, label=u'Annuleren',
name='button6', parent=self, pos=wxPoint(255, 245),
size=wxSize(90, 23), style=0)
--- 29,53 ----
self.grid1.SetDefaultRowSize(15)
! self.button1 = wxButton(id=wxID_WXFRAME1BUTTON1, label='Toevoegen',
name='button1', parent=self, pos=wxPoint(25, 210), size=wxSize(90,
23), style=0)
! self.button2 = wxButton(id=wxID_WXFRAME1BUTTON2, label='Verwijderen',
name='button2', parent=self, pos=wxPoint(140, 210),
size=wxSize(90, 23), style=0)
! self.button3 = wxButton(id=wxID_WXFRAME1BUTTON3, label='Eigenschappen',
name='button3', parent=self, pos=wxPoint(255, 210),
size=wxSize(90, 23), style=0)
! self.button4 = wxButton(id=wxID_WXFRAME1BUTTON4, label='Verbinden',
name='button4', parent=self, pos=wxPoint(25, 245), size=wxSize(90,
23), style=0)
! self.button5 = wxButton(id=wxID_WXFRAME1BUTTON5, label='Opslaan',
name='button5', parent=self, pos=wxPoint(140, 245),
size=wxSize(90, 23), style=0)
! self.button6 = wxButton(id=wxID_WXFRAME1BUTTON6, label='Annuleren',
name='button6', parent=self, pos=wxPoint(255, 245),
size=wxSize(90, 23), style=0)
Index: tn5250.py
===================================================================
RCS file: /cvsroot/tn5250py/tn5250py/src/lib5250py/tn5250.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** tn5250.py 1 Jul 2003 14:57:30 -0000 1.4
--- tn5250.py 2 Jul 2003 07:13:55 -0000 1.5
***************
*** 6,10 ****
import frmConnect
! modules ={u'frmConnect': [1, 'Main frame of Application', u'frmConnect.py']}
class BoaApp(wxApp):
--- 6,10 ----
import frmConnect
! modules ={'frmConnect': [1, 'Main frame of Application', 'frmConnect.py']}
class BoaApp(wxApp):
|