44 self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel).setDefault(True) |
44 self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel).setDefault(True) |
45 |
45 |
46 self.__process = None |
46 self.__process = None |
47 self.__cmdname = cmdname # used for several outputs |
47 self.__cmdname = cmdname # used for several outputs |
48 |
48 |
49 def start(self, args, parms, project, script): |
49 def start(self, args, project, script): |
50 """ |
50 """ |
51 Public slot to start the packager command. |
51 Public slot to start the packager command. |
52 |
52 |
53 @param args command line arguments for packager program |
53 @param args command line arguments for packager program |
54 @type list of str |
54 @type list of str |
55 @param parms parameters got from the config dialog |
|
56 @type dict |
|
57 @param project reference to the project object |
55 @param project reference to the project object |
58 @type Project |
56 @type Project |
59 @param script script or spec file name to be processed by by the |
57 @param script script or spec file name to be processed by by the |
60 packager |
58 packager |
61 @type str |
59 @type str |