eric6/MicroPython/MicroPythonProgressInfoDialog.py

Tue, 02 Mar 2021 17:17:09 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 02 Mar 2021 17:17:09 +0100
changeset 8143
2c730d5fd177
parent 7923
91e843545d9a
child 8218
7c09585bd960
permissions
-rw-r--r--

Changed the use of PyQt enums because the way they were used previously is deprecated since two years and replaced some deprecated Qt stuff.

# -*- coding: utf-8 -*-

# Copyright (c) 2019 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing a dialog to show progress messages.
"""

from PyQt5.QtCore import pyqtSlot
from PyQt5.QtGui import QTextCursor
from PyQt5.QtWidgets import QDialog

from .Ui_MicroPythonProgressInfoDialog import Ui_MicroPythonProgressInfoDialog


class MicroPythonProgressInfoDialog(QDialog, Ui_MicroPythonProgressInfoDialog):
    """
    Class implementing a dialog to show progress messages.
    """
    def __init__(self, parent=None):
        """
        Constructor
        
        @param parent reference to the parent widget
        @type QWidget
        """
        super(MicroPythonProgressInfoDialog, self).__init__(parent)
        self.setupUi(self)
    
    @pyqtSlot(str)
    def addMessage(self, message):
        """
        Public slot to add a message to the progress display.
        
        @param message progress information to be shown
        @type str
        """
        tc = self.progressEdit.textCursor()
        tc.movePosition(QTextCursor.MoveOperation.End)
        self.progressEdit.setTextCursor(tc)
        self.progressEdit.appendHtml(message)
        self.progressEdit.ensureCursorVisible()

eric ide

mercurial