Пример #1
0
    def information(
            self, message, title='Information', detail='', informative=''):
        """ Convenience method to show an information message dialog.

        Parameters
        ----------
        message : str
            The text of the message to display.
        title : str
            The text of the dialog title.
        detail : str
            Further details about the message.
        informative : str
            Explanatory text to display along with the message.

        """
        from message_dialog import information

        information(self.control, message, title, detail, informative)
Пример #2
0
    def information(self, message, title='Information'):
        """ Convenience method to show an information message dialog.

        Parameters
        ----------
        message : str
            The text of the message to display.
        title : str
            The text of the dialog title.
        """
        from message_dialog import information

        return information(self.control, message, title)
Пример #3
0
    def information(self, message, title='Information'):
        """ Convenience method to show an information message dialog. """

        from message_dialog import information

        return information(self.control, message, title)
Пример #4
0
    def information(self, message, title='Information'):
        """ Convenience method to show an information message dialog. """

        from message_dialog import information

        return information(self.control, message, title)