Wed, 01 Jan 2020 11:58:56 +0100
Updated copyright for 2020.
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1 | # -*- coding: utf-8 -*- |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
2 | |
26
e4135114d483
Updated copyright for 2020.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
25
diff
changeset
|
3 | # Copyright (c) 2018 - 2020 Detlev Offenbach <detlev@die-offenbachs.de> |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
4 | # |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
5 | |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
6 | """ |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
7 | Module implementing PyInstallerConfigDialog. |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
8 | """ |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
9 | |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
10 | from __future__ import unicode_literals |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
11 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
12 | import copy |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
13 | |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
14 | from PyQt5.QtCore import pyqtSlot |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
15 | from PyQt5.QtWidgets import QDialog, QDialogButtonBox |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
16 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
17 | from E5Gui.E5PathPicker import E5PathPickerModes |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
18 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
19 | from .Ui_PyInstallerConfigDialog import Ui_PyInstallerConfigDialog |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
20 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
21 | import Globals |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
22 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
23 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
24 | class PyInstallerConfigDialog(QDialog, Ui_PyInstallerConfigDialog): |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
25 | """ |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
26 | Class implementing a dialog to enter the parameters for pyinstaller |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
27 | and pyi-makespec. |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
28 | """ |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
29 | def __init__(self, project, executables, params=None, mode="installer", |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
30 | parent=None): |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
31 | """ |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
32 | Constructor |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
33 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
34 | @param project reference to the project object |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
35 | @type Project.Project |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
36 | @param executables names of the pyinstaller executables |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
37 | @type list of str |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
38 | @param params parameters to set in the dialog |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
39 | @type dict |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
40 | @param mode mode of the dialog |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
41 | @type str (one of 'installer' or 'spec') |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
42 | @param parent reference to the parent widget |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
43 | @type QWidget |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
44 | """ |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
45 | assert mode in ("installer", "spec") |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
46 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
47 | super(PyInstallerConfigDialog, self).__init__(parent) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
48 | self.setupUi(self) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
49 | |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
50 | self.__project = project |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
51 | self.__mode = mode |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
52 | |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
53 | self.inputFilePicker.setMode(E5PathPickerModes.OpenFileMode) |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
54 | self.inputFilePicker.setDefaultDirectory( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
55 | self.__project.getProjectPath()) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
56 | if self.__mode == "installer": |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
57 | self.inputFilePicker.setFilters(self.tr( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
58 | "Python Files (*.py *.py2 *.py3);;" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
59 | "Python GUI Files (*.pyw *.pyw2 *.pyw3);;" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
60 | "Spec Files (*.spec);;" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
61 | "All Files (*)" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
62 | )) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
63 | elif self.__mode == "spec": |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
64 | self.inputFilePicker.setFilters(self.tr( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
65 | "Python Files (*.py *.py2 *.py3);;" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
66 | "Python GUI Files (*.pyw *.pyw2 *.pyw3);;" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
67 | "All Files (*)" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
68 | )) |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
69 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
70 | self.executableCombo.addItems(executables) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
71 | |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
72 | if not bool(project.getMainScript()): |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
73 | # no main script defined |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
74 | self.selectedScriptButton.setChecked(True) |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
75 | self.mainScriptButton.setEnabled(False) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
76 | |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
77 | self.iconFilePicker.setMode(E5PathPickerModes.OpenFileMode) |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
78 | self.iconFilePicker.setDefaultDirectory( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
79 | self.__project.getProjectPath()) |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
80 | if Globals.isMacPlatform(): |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
81 | self.iconFilePicker.setFilters(self.tr( |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
82 | "Icon Files (*.icns);;" |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
83 | "All Files (*)" |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
84 | )) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
85 | elif Globals.isWindowsPlatform(): |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
86 | self.iconFilePicker.setFilters(self.tr( |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
87 | "Icon Files (*.ico);;" |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
88 | "Executable Files (*.exe);;" |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
89 | "All Files (*)" |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
90 | )) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
91 | |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
92 | # disable platform specific tabs |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
93 | self.tabWidget.setTabEnabled( |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
94 | self.tabWidget.indexOf(self.windowsMacTab), |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
95 | Globals.isMacPlatform() or Globals.isWindowsPlatform()) |
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
96 | self.tabWidget.setTabEnabled( |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
97 | self.tabWidget.indexOf(self.macTab), |
3
eb2d30b4d34e
Continued implementing the PyInstaller interface.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
98 | Globals.isMacPlatform()) |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
99 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
100 | self.__initializeDefaults() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
101 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
102 | # get a copy of the defaults to store the user settings |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
103 | self.__parameters = copy.deepcopy(self.__defaults) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
104 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
105 | # combine it with the values of params |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
106 | if params is not None: |
20
a7ac91a1a57e
Adjusted the code style checking parameters and fixed some code style issues.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6
diff
changeset
|
107 | self.__parameters.update(params) |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
108 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
109 | # initialize general tab |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
110 | if mode == "installer" and bool(self.__parameters["pyinstaller"]): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
111 | self.executableCombo.setCurrentIndex( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
112 | self.executableCombo.findText( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
113 | self.__parameters["pyinstaller"])) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
114 | elif mode == "spec" and bool(self.__parameters["pyi-makespec"]): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
115 | self.executableCombo.setCurrentIndex( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
116 | self.executableCombo.findText( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
117 | self.__parameters["pyi-makespec"])) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
118 | if self.__parameters["mainscript"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
119 | self.mainScriptButton.setChecked(True) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
120 | else: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
121 | self.selectedScriptButton.setChecked(True) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
122 | self.inputFilePicker.setText(self.__parameters["inputFile"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
123 | if self.__parameters["oneDirectory"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
124 | self.oneDirButton.setChecked(True) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
125 | else: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
126 | self.oneFileButton.setChecked(True) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
127 | self.nameEdit.setText(self.__parameters["name"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
128 | self.keyEdit.setText(self.__parameters["encryptionKey"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
129 | self.cleanCheckBox.setChecked(self.__parameters["cleanBeforeBuilding"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
130 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
131 | # initialize Windows and macOS tab |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
132 | if self.__parameters["consoleApplication"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
133 | self.consoleButton.setChecked(True) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
134 | else: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
135 | self.windowedButton.setChecked(True) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
136 | self.iconFilePicker.setText(self.__parameters["iconFile"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
137 | self.iconIdEdit.setText(self.__parameters["iconId"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
138 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
139 | # initialize maxOS specific tab |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
140 | self.bundleIdentifierEdit.setText( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
141 | self.__parameters["bundleIdentifier"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
142 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
143 | self.__updateOkButton() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
144 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
145 | msh = self.minimumSizeHint() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
146 | self.resize(max(self.width(), msh.width()), msh.height()) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
147 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
148 | def __initializeDefaults(self): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
149 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
150 | Private method to set the default values. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
151 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
152 | These are needed later on to generate the command line parameters. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
153 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
154 | self.__defaults = { |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
155 | # general options |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
156 | "pyinstaller": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
157 | "pyi-makespec": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
158 | "mainscript": bool(self.__project.getMainScript()), |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
159 | "inputFile": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
160 | "oneDirectory": True, |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
161 | "name": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
162 | "encryptionKey": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
163 | "cleanBeforeBuilding": False, |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
164 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
165 | # Windows and macOS options |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
166 | "consoleApplication": True, |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
167 | "iconFile": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
168 | "iconId": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
169 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
170 | # macOS specific options |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
171 | "bundleIdentifier": "", |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
172 | } |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
173 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
174 | def generateParameters(self): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
175 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
176 | Public method that generates the command line parameters. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
177 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
178 | It generates a list of strings to be used to set the QProcess arguments |
5
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
179 | for the pyinstaller/pyi-makespec call and a list containing the non |
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
180 | default parameters. The second list can be passed back upon object |
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
181 | generation to overwrite the default settings. |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
182 | |
5
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
183 | @return a tuple of the command line parameters, non default parameters |
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
184 | and the script path |
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
185 | @rtype tuple of (list of str, dict, str) |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
186 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
187 | parms = {} |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
188 | args = [] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
189 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
190 | # 1. the program name |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
191 | if self.__mode == "installer": |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
192 | args.append(self.__parameters["pyinstaller"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
193 | parms["pyinstaller"] = self.__parameters["pyinstaller"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
194 | elif self.__mode == "spec": |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
195 | args.append(self.__parameters["pyi-makespec"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
196 | parms["pyi-makespec"] = self.__parameters["pyi-makespec"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
197 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
198 | # 2. the commandline options |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
199 | # 2.1 general options, input |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
200 | if not self.__parameters["mainscript"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
201 | parms["mainscript"] = False |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
202 | parms["inputFile"] = self.__parameters["inputFile"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
203 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
204 | runWithSpec = self.__parameters["inputFile"].endswith(".spec") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
205 | if not runWithSpec: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
206 | # 2.2 general options, part 1 |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
207 | if not self.__parameters["oneDirectory"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
208 | parms["oneDirectory"] = self.__parameters["oneDirectory"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
209 | args.append("--onefile") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
210 | if self.__parameters["name"] != self.__defaults["name"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
211 | parms["name"] = self.__parameters["name"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
212 | args.append("--name") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
213 | args.append(self.__parameters["name"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
214 | if self.__parameters["encryptionKey"] != \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
215 | self.__defaults["encryptionKey"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
216 | parms["encryptionKey"] = self.__parameters["encryptionKey"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
217 | args.append("--key") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
218 | args.append(self.__parameters["encryptionKey"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
219 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
220 | # 2.3 Windows and macOS options |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
221 | if self.__parameters["consoleApplication"] != \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
222 | self.__defaults["consoleApplication"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
223 | parms["consoleApplication"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
224 | self.__parameters["consoleApplication"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
225 | args.append("--windowed") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
226 | if self.__parameters["iconFile"] != self.__defaults["iconFile"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
227 | parms["iconFile"] = self.__parameters["iconFile"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
228 | parms["iconId"] = self.__parameters["iconId"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
229 | args.append("--icon") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
230 | if self.__parameters["iconFile"].endswith(".exe"): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
231 | if bool(self.__parameters["iconId"]): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
232 | iconId = self.__parameters["iconId"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
233 | else: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
234 | iconId = "0" |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
235 | args.append("{0},{1}".format( |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
236 | self.__parameters["iconFile"], iconId)) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
237 | else: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
238 | args.append(self.__parameters["iconFile"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
239 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
240 | # 2.4 macOS specific options |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
241 | if self.__parameters["bundleIdentifier"] != \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
242 | self.__defaults["bundleIdentifier"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
243 | parms["bundleIdentifier"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
244 | self.__parameters["bundleIdentifier"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
245 | args.append("--osx-bundle-identifier") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
246 | args.append(self.__parameters["bundleIdentifier"]) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
247 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
248 | # 2.5 general options, part 2 |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
249 | if self.__parameters["cleanBeforeBuilding"] != \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
250 | self.__defaults["cleanBeforeBuilding"]: |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
251 | parms["cleanBeforeBuilding"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
252 | self.__parameters["cleanBeforeBuilding"] |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
253 | args.append("--clean") |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
254 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
255 | # 3. always add these arguments |
6
0f0f1598fc4a
Continued implementing the PyInstaller interface (implemented the pyi-makespec function).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
5
diff
changeset
|
256 | if self.__mode == "installer": |
0f0f1598fc4a
Continued implementing the PyInstaller interface (implemented the pyi-makespec function).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
5
diff
changeset
|
257 | args.append("--noconfirm") # don't ask the user |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
258 | |
5
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
259 | # determine the script to be processed |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
260 | if self.__parameters["mainscript"]: |
5
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
261 | script = self.__project.getMainScript() |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
262 | else: |
5
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
263 | script = self.__parameters["inputFile"] |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
264 | |
5
8c92d66d20e4
Continued implementing the PyInstaller interface (implemented the execution dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4
diff
changeset
|
265 | return args, parms, script |
4
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
266 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
267 | def accept(self): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
268 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
269 | Public method called by the Ok button. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
270 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
271 | It saves the values in the parameters dictionary. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
272 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
273 | # get data of general tab |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
274 | if self.__mode == "installer": |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
275 | self.__parameters["pyinstaller"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
276 | self.executableCombo.currentText() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
277 | elif self.__mode == "spec": |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
278 | self.__parameters["pyi-makespec"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
279 | self.executableCombo.currentText() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
280 | self.__parameters["mainscript"] = self.mainScriptButton.isChecked() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
281 | self.__parameters["inputFile"] = self.inputFilePicker.text() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
282 | self.__parameters["oneDirectory"] = self.oneDirButton.isChecked() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
283 | self.__parameters["name"] = self.nameEdit.text() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
284 | self.__parameters["encryptionKey"] = self.keyEdit.text() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
285 | self.__parameters["cleanBeforeBuilding"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
286 | self.cleanCheckBox.isChecked() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
287 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
288 | # get data of Windows and macOS tab |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
289 | self.__parameters["consoleApplication"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
290 | self.consoleButton.isChecked() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
291 | self.__parameters["iconFile"] = self.iconFilePicker.text() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
292 | self.__parameters["iconId"] = self.iconIdEdit.text() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
293 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
294 | # get data of macOS specific tab |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
295 | self.__parameters["bundleIdentifier"] = \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
296 | self.bundleIdentifierEdit.text() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
297 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
298 | # call the accept slot of the base class |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
299 | super(PyInstallerConfigDialog, self).accept() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
300 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
301 | def __updateOkButton(self): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
302 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
303 | Private method to update the enabled state of the OK button. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
304 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
305 | enable = True |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
306 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
307 | # If not to be run with the project main script, a script or |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
308 | # spec file must be selected. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
309 | if self.selectedScriptButton.isChecked() and \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
310 | not bool(self.inputFilePicker.text()): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
311 | enable = False |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
312 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
313 | # If the icon shall be picked from a .exe file, an icon ID |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
314 | # must be entered (Windows only). |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
315 | if self.iconFilePicker.text().endswith(".exe") and \ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
316 | not bool(self.iconIdEdit.text()): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
317 | enable = False |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
318 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
319 | self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(enable) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
320 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
321 | @pyqtSlot(bool) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
322 | def on_selectedScriptButton_toggled(self, checked): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
323 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
324 | Private slot to handle changes of the radio button state. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
325 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
326 | @param checked state of the radio button |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
327 | @type bool |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
328 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
329 | self.__updateOkButton() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
330 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
331 | @pyqtSlot(str) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
332 | def on_inputFilePicker_textChanged(self, txt): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
333 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
334 | Private slot to handle changes of the input file. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
335 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
336 | @param txt text of the file edit |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
337 | @type str |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
338 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
339 | self.__updateOkButton() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
340 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
341 | @pyqtSlot(str) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
342 | def on_iconFilePicker_textChanged(self, txt): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
343 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
344 | Private slot to handle changes of the icon file. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
345 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
346 | @param txt text of the file edit |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
347 | @type str |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
348 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
349 | self.iconIdEdit.setEnabled(txt.endswith(".exe")) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
350 | self.__updateOkButton() |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
351 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
352 | @pyqtSlot(str) |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
353 | def on_iconIdEdit_textChanged(self, txt): |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
354 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
355 | Private slot to handle changes of the icon ID. |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
356 | |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
357 | @param txt iconID |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
358 | @type str |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
359 | """ |
52f0572b5908
Continued implementing the PyInstaller interface (finished the config dialog).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
3
diff
changeset
|
360 | self.__updateOkButton() |