Pop a MessageBox to the user, with the given text. Blocks until closed. Note: This function contains some of Karta's UI logic Args: text (str): text to be written to the UI message box
(self, text)
| 660 | |
| 661 | # Overridden base function |
| 662 | def messageBox(self, text): |
| 663 | """Pop a MessageBox to the user, with the given text. Blocks until closed. |
| 664 | |
| 665 | Note: |
| 666 | This function contains some of Karta's UI logic |
| 667 | |
| 668 | Args: |
| 669 | text (str): text to be written to the UI message box |
| 670 | """ |
| 671 | m = MessageBox(text) |
| 672 | m.Compile() |
| 673 | m.Execute() |
| 674 | |
| 675 | # Overridden base function |
| 676 | def configForm(self): |
no test coverage detected