MultiProject/PropertiesDialog.py

Sat, 01 Oct 2011 17:20:29 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 01 Oct 2011 17:20:29 +0200
branch
5_1_x
changeset 1347
c1f7967d062f
parent 791
9ec2ac20e54e
child 945
8cd4d08fa9f6
child 1510
e75ecf2bd9dd
permissions
-rw-r--r--

Fixed an issue in the install and uninstall scripts.
(transplanted from 8c9af7608afaa98608e72a74d0485197dd0503c4)

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

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

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

from PyQt4.QtGui 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
        @param new flag indicating the generation of a new multi project
        @param parent parent widget of this dialog (QWidget)
        """
        QDialog.__init__(self, 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