Made wxEditor constructor args consistent with other window classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-01-03 19:30:51 +00:00
parent 46f9bb9475
commit f2a497dcf9
3 changed files with 9 additions and 7 deletions

View File

@@ -6,8 +6,8 @@ from wxPython.lib.editor import wxEditor, wxPyEditor
def runTest(frame, nb, log): def runTest(frame, nb, log):
win = wxPanel(nb, -1) win = wxPanel(nb, -1)
ed = wxEditor(win) ed = wxEditor(win, -1, style=wxSUNKEN_BORDER)
pyed = wxPyEditor(win) pyed = wxPyEditor(win, -1, style=wxSUNKEN_BORDER)
box = wxBoxSizer(wxVERTICAL) box = wxBoxSizer(wxVERTICAL)
box.Add(ed, 1, wxALL|wxGROW, 5) box.Add(ed, 1, wxALL|wxGROW, 5)
box.Add(pyed, 1, wxALL|wxGROW, 5) box.Add(pyed, 1, wxALL|wxGROW, 5)

View File

@@ -44,15 +44,16 @@ class Line:
class wxEditor(wxScrolledWindow): class wxEditor(wxScrolledWindow):
def __init__(self, parent, id=-1): def __init__(self, parent, id,
pos=wxDefaultPosition, size=wxDefaultSize, style=0):
############################################################### ###############################################################
""" """
Alles hat einen Anfang Alles hat einen Anfang
""" """
wxScrolledWindow.__init__(self, parent, id, wxScrolledWindow.__init__(self, parent, id,
wxDefaultPosition, wxSize(500,400), pos, size,
wxSUNKEN_BORDER|wxWANTS_CHARS) style|wxWANTS_CHARS)
# the syntax informations, if they don't exist, # the syntax informations, if they don't exist,
# all syntax stuff will be ignored # all syntax stuff will be ignored

View File

@@ -18,8 +18,9 @@ class wxPyEditor(wxEditor):
# ------------------------------------------------------------------ # ------------------------------------------------------------------
def __init__(self, parent, id=-1): def __init__(self, parent, id,
wxEditor.__init__(self, parent, id) pos=wxDefaultPosition, size=wxDefaultSize, style=0):
wxEditor.__init__(self, parent, id, pos, size, style)
self.SetFontTab([ self.SetFontTab([
wxNamedColour('black'), wxNamedColour('black'),
wxNamedColour('blue'), wxNamedColour('blue'),