197 |
event.Check(command.Checked(self)) |
event.Check(command.Checked(self)) |
198 |
|
|
199 |
def RunMessageBox(self, title, text, flags = wxOK | wxICON_INFORMATION): |
def RunMessageBox(self, title, text, flags = wxOK | wxICON_INFORMATION): |
200 |
"""Run a modla message box with the given text, title and flags |
"""Run a modal message box with the given text, title and flags |
201 |
and return the result""" |
and return the result""" |
202 |
dlg = wxMessageDialog(self, text, title, flags) |
dlg = wxMessageDialog(self, text, title, flags) |
203 |
result = dlg.ShowModal() |
result = dlg.ShowModal() |