src/eric7/MultiProject/PropertiesDialog.py

Fri, 15 Dec 2023 15:28:54 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 15 Dec 2023 15:28:54 +0100
branch
eric7
changeset 10410
da82156f44e9
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
permissions
-rw-r--r--

Multiproject
- Added the capability to indicate externally removed projects and actions to clear them out (see issue 522).

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

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

"""
Module implementing the multi project properties dialog.
"""

from PyQt6.QtWidgets import QDialog

from .Ui_PropertiesDialog import Ui_PropertiesDialog


class PropertiesDialog(QDialog, Ui_PropertiesDialog):
    """
    Class implementing the multi project properties dialog.
    """

    def __init__(self, multiProject, new=True, parent=None):
        """
        Constructor

        @param multiProject reference to the multi project object
        @type MultiProject
        @param new flag indicating the generation of a new multi project
            (defaults to True)
        @type bool (optional)
        @param parent reference to the parent widget (defaults to None)
        @type QWidget (optional)
        """
        super().__init__(parent)
        self.setupUi(self)

        self.multiProject = multiProject
        self.newMultiProject = new

        if not new:
            self.descriptionEdit.setPlainText(self.multiProject.description)

    def storeData(self):
        """
        Public method to store the entered/modified data.
        """
        self.multiProject.description = self.descriptionEdit.toPlainText()

eric ide

mercurial