79 Constructor |
79 Constructor |
80 |
80 |
81 @param parent reference to the parent widget |
81 @param parent reference to the parent widget |
82 @type QWidget |
82 @type QWidget |
83 """ |
83 """ |
|
84 if parent is None: |
|
85 parent = QCoreApplication.instance().getMainWindow() |
|
86 |
84 super().__init__(parent) |
87 super().__init__(parent) |
85 |
88 |
86 def showMessage(self, message, msgType=""): |
89 def showMessage(self, message, msgType=""): |
87 """ |
90 """ |
88 Public method to show a message. |
91 Public method to show a message. |