11 |
11 |
12 from .Ui_HgCommandDialog import Ui_HgCommandDialog |
12 from .Ui_HgCommandDialog import Ui_HgCommandDialog |
13 |
13 |
14 import Utilities |
14 import Utilities |
15 |
15 |
|
16 |
16 class HgCommandDialog(QDialog, Ui_HgCommandDialog): |
17 class HgCommandDialog(QDialog, Ui_HgCommandDialog): |
17 """ |
18 """ |
18 Class implementing the Mercurial command dialog. |
19 Class implementing the Mercurial command dialog. |
19 |
20 |
20 It implements a dialog that is used to enter an |
21 It implements a dialog that is used to enter an |
21 arbitrary Mercurial command. It asks the user to enter |
22 arbitrary Mercurial command. It asks the user to enter |
22 the commandline parameters. |
23 the commandline parameters. |
23 """ |
24 """ |
24 def __init__(self, argvList, ppath, parent = None): |
25 def __init__(self, argvList, ppath, parent=None): |
25 """ |
26 """ |
26 Constructor |
27 Constructor |
27 |
28 |
28 @param argvList history list of commandline arguments (list of strings) |
29 @param argvList history list of commandline arguments (list of strings) |
29 @param ppath pathname of the project directory (string) |
30 @param ppath pathname of the project directory (string) |