예제 #1
0
파일: i_window.py 프로젝트: zyex1108/pyface
    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
파일: i_window.py 프로젝트: fbender/pyface
    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
파일: i_window.py 프로젝트: jdmarch/pyface
    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)