4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing the Subversion command dialog. |
7 Module implementing the Subversion command dialog. |
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 E5Gui.E5Completers import E5DirCompleter |
15 from E5Gui.E5Completers import E5DirCompleter |
33 @param argvList history list of commandline arguments (list of strings) |
35 @param argvList history list of commandline arguments (list of strings) |
34 @param wdList history list of working directories (list of strings) |
36 @param wdList history list of working directories (list of strings) |
35 @param ppath pathname of the project directory (string) |
37 @param ppath pathname of the project directory (string) |
36 @param parent parent widget of this dialog (QWidget) |
38 @param parent parent widget of this dialog (QWidget) |
37 """ |
39 """ |
38 super().__init__(parent) |
40 super(SvnCommandDialog, self).__init__(parent) |
39 self.setupUi(self) |
41 self.setupUi(self) |
40 |
42 |
41 self.workdirCompleter = E5DirCompleter(self.workdirCombo) |
43 self.workdirCompleter = E5DirCompleter(self.workdirCombo) |
42 |
44 |
43 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
45 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |