4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to enter the data for a tagging operation. |
7 Module implementing a dialog to enter the data for a tagging operation. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
9 |
11 |
10 from PyQt4.QtCore import pyqtSlot |
12 from PyQt4.QtCore import pyqtSlot |
11 from PyQt4.QtGui import QDialog, QDialogButtonBox |
13 from PyQt4.QtGui import QDialog, QDialogButtonBox |
12 |
14 |
13 from .Ui_SvnTagDialog import Ui_SvnTagDialog |
15 from .Ui_SvnTagDialog import Ui_SvnTagDialog |
25 @param reposURL repository path (string) or None |
27 @param reposURL repository path (string) or None |
26 @param standardLayout flag indicating the layout of the |
28 @param standardLayout flag indicating the layout of the |
27 repository (boolean) |
29 repository (boolean) |
28 @param parent parent widget (QWidget) |
30 @param parent parent widget (QWidget) |
29 """ |
31 """ |
30 super().__init__(parent) |
32 super(SvnTagDialog, self).__init__(parent) |
31 self.setupUi(self) |
33 self.setupUi(self) |
32 |
34 |
33 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
35 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
34 self.okButton.setEnabled(False) |
36 self.okButton.setEnabled(False) |
35 |
37 |