eric6/MicroPython/MicroPythonProgressInfoDialog.py

Thu, 25 Jul 2019 19:55:40 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 25 Jul 2019 19:55:40 +0200
branch
micropython
changeset 7083
217862c28319
child 7084
3eddfc540614
permissions
-rw-r--r--

MicroPython: continued implementing the file manager widget.

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

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

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

from PyQt5.QtCore import pyqtSlot
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
        """
        # TODO: not implemented yet

eric ide

mercurial