From edc2a0366a76fc2b1f45355fc2855d0ced5364e4 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 14 Nov 2001 04:04:31 +0000 Subject: [PATCH] Cleanup of library dialogs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/lib/dialogs.py | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/wxPython/wxPython/lib/dialogs.py b/wxPython/wxPython/lib/dialogs.py index e517f105b3..6c82207f05 100644 --- a/wxPython/wxPython/lib/dialogs.py +++ b/wxPython/wxPython/lib/dialogs.py @@ -6,11 +6,7 @@ import string class wxScrolledMessageDialog(wxDialog): - def __init__(self, parent, msg, caption, pos = None, size = None): - if not pos: - pos = wxDefaultPosition - if not size: - size = wxSize(500,300) + def __init__(self, parent, msg, caption, pos = wxDefaultPosition, size = (500,300)): wxDialog.__init__(self, parent, -1, caption, pos, size) text = wxTextCtrl(self, -1, msg, wxDefaultPosition, wxDefaultSize, @@ -24,11 +20,7 @@ class wxScrolledMessageDialog(wxDialog): class wxMultipleChoiceDialog(wxDialog): - def __init__(self, parent, msg, title, lst, pos = None, size = None): - if not pos: - pos = wxDefaultPosition - if not size: - size = wxSize(200,200) + def __init__(self, parent, msg, title, lst, pos = wxDefaultPosition, size = (200,200)): wxDialog.__init__(self, parent, -1, title, pos, size) dc = wxClientDC(self) height = 0 @@ -48,10 +40,6 @@ class wxMultipleChoiceDialog(wxDialog): self.SetAutoLayout(TRUE) self.lst = lst self.Layout() - EVT_SIZE(self, self.OnSize) - - def OnSize(self, event): - self.Layout() def GetValue(self): return self.lbox.GetSelections() @@ -63,6 +51,7 @@ class wxMultipleChoiceDialog(wxDialog): val.append(self.lst[i]) return tuple(val) + if __name__ == '__main__': class MyFrame(wxFrame): def __init__(self): -- 2.47.2