======================= MessageDialog (hwx.gui) ======================= A popup message dialog. Used to display messages to the user. Inherits: - :ref:`Widget (hwx.gui)` ---------- Properties ---------- +----------+----------+ | icon_ | message_ | +----------+----------+ -------------- Public Methods -------------- +----------------+ | get_ (self, v) | +----------------+ | set_ (self, v) | +----------------+ | show_ (self) | +----------------+ ---------------- Property Details ---------------- .. _icon: .. method:: icon The type of icon to be displayed. Valid choices are: - "noicon" - "informationicon" - "information" - "info" - "warningicon" - "warning" - "warn" - "erroricon" - "error" - "criticalicon" - "critical" - "questionicon" - "question" - "?" - "checkicon" - "check" - "redquestionicon" - "redquestion" - "redcheckicon" - "redcheck" .. _message: .. method:: message The text message to be displayed inside the dialog. -------------- Method Details -------------- .. _get: .. method:: get(self, v) Returns the message text. .. _set: .. method:: set(self, v) Sets the specified message. :param v: Message text to be displayed. :type v: str .. _show: .. method:: show(self) Displays the MessageDialog in the graphics window.