41 |
class MainWindow(wxFrame): |
class MainWindow(wxFrame): |
42 |
|
|
43 |
def __init__(self, parent, ID, title, application, interactor, |
def __init__(self, parent, ID, title, application, interactor, |
44 |
initial_message = None): |
initial_message = None, size = wxSize(-1, -1)): |
45 |
wxFrame.__init__(self, parent, ID, title, wxDefaultPosition, |
wxFrame.__init__(self, parent, ID, title, wxDefaultPosition, size) |
|
wxSize(400, 300)) |
|
46 |
|
|
47 |
self.application = application |
self.application = application |
48 |
self.interactor = interactor |
self.interactor = interactor |