eric7/MicroPython/MicroPythonProgressInfoDialog.py

Sat, 15 Jan 2022 18:42:21 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 15 Jan 2022 18:42:21 +0100
branch
eric7
changeset 8924
7f2cad9900cf
parent 8881
54e42bc2437a
permissions
-rw-r--r--

MicroPython
- added support for ESP32-C3, ESP32-S2 and ESP32-S3 chips

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

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

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

from PyQt6.QtCore import pyqtSlot
from PyQt6.QtGui import QTextCursor
from PyQt6.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().__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