ProjectDjango/DjangoMakeMigrationsDialog.py

Mon, 13 Aug 2018 16:58:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 13 Aug 2018 16:58:11 +0200
changeset 140
a6c1fcaa2617
parent 125
d280acf98fb5
child 142
ecadd7fd0963
permissions
-rw-r--r--

DjangoDialog: fixed a bug causing sending some input to the Django process to fail.

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

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

"""
Module implementing a dialog to enter the data needed to make migrations.
"""

from __future__ import unicode_literals

from PyQt5.QtWidgets import QDialog

from .Ui_DjangoMakeMigrationsDialog import Ui_DjangoMakeMigrationsDialog


class DjangoMakeMigrationsDialog(QDialog, Ui_DjangoMakeMigrationsDialog):
    """
    Class implementing a dialog to enter the data needed to make migrations.
    """
    def __init__(self, recentApps, parent=None):
        """
        Constructor
        
        @param recentApps list of recently entered applications
        @type list of str
        @param parent reference to the parent widget
        @type QWidget
        """
        super(DjangoMakeMigrationsDialog, self).__init__(parent)
        self.setupUi(self)
        
        self.applicationsComboBox.addItems(recentApps)
    
    def getData(self):
        """
        Public method to get the data for the migration.
        
        @return tuple containing the application names, a migration name,
            the dry-run flag, a flag for an empty migration and a flag
            indicating to fix migration conflicts
        @rtype tuple of (str, str, bool, bool, bool)
        """
        return (
            self.applicationsComboBox.currentText(),
            self.nameEdit.text(),
            self.dryrunCheckBox.isChecked(),
            self.emptyCheckBox.isChecked(),
            self.mergeCheckBox.isChecked(),
        )

eric ide

mercurial