Thu, 22 Oct 2020 19:42:29 +0200
Added information about the directory the installation was done from.
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1 | # -*- coding: utf-8 -*- |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
2 | |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
3 | # Copyright (c) 2020 Detlev Offenbach <detlev@die-offenbachs.de> |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
4 | # |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
5 | |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
6 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
7 | Module implementing a dialog to show information about the installation. |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
8 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
9 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
10 | import json |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
11 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
12 | from PyQt5.QtCore import pyqtSlot |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
13 | from PyQt5.QtWidgets import QDialog |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
14 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
15 | from E5Gui import E5MessageBox |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
16 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
17 | from .Ui_InstallInfoDialog import Ui_InstallInfoDialog |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
18 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
19 | import Globals |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
20 | import UI.PixmapCache |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
21 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
22 | |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
23 | # TODO: add button to delete the info file |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
24 | class InstallInfoDialog(QDialog, Ui_InstallInfoDialog): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
25 | """ |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
26 | Class implementing a dialog to show information about the installation. |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
27 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
28 | def __init__(self, parent=None): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
29 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
30 | Constructor |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
31 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
32 | @param parent reference to the parent widget |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
33 | @type QWidget |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
34 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
35 | super(InstallInfoDialog, self).__init__(parent) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
36 | self.setupUi(self) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
37 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
38 | self.__edited = False |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
39 | self.__loaded = True |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
40 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
41 | self.editButton.setIcon(UI.PixmapCache.getIcon("infoEdit")) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
42 | self.saveButton.setIcon(UI.PixmapCache.getIcon("fileSave")) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
43 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
44 | infoFileName = Globals.getInstallInfoFilePath() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
45 | try: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
46 | with open(infoFileName, "r") as infoFile: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
47 | self.__info = json.load(infoFile) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
48 | |
7808
da107cd00f63
Install Information: added the installation date to the list of data.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7807
diff
changeset
|
49 | if Globals.isWindowsPlatform(): |
da107cd00f63
Install Information: added the installation date to the list of data.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7807
diff
changeset
|
50 | self.sudoLabel1.setText(self.tr("Installed as Administrator:")) |
da107cd00f63
Install Information: added the installation date to the list of data.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7807
diff
changeset
|
51 | else: |
da107cd00f63
Install Information: added the installation date to the list of data.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7807
diff
changeset
|
52 | self.sudoLabel1.setText(self.tr("Installed with sudo:")) |
da107cd00f63
Install Information: added the installation date to the list of data.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7807
diff
changeset
|
53 | self.sudoLabel2.setText( |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
54 | self.tr("Yes") if self.__info["sudo"] else self.tr("No")) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
55 | self.userLabel.setText(self.__info["user"]) |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
56 | self.installedFromEdit.setText(self.__info["install_cwd"]) |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
57 | self.interpreteEdit.setText(self.__info["exe"]) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
58 | self.commandEdit.setText(self.__info["argv"]) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
59 | self.installPathEdit.setText(self.__info["eric"]) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
60 | self.virtenvLabel.setText( |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
61 | self.tr("Yes") if self.__info["virtualenv"] else self.tr("No")) |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
62 | self.remarksEdit.setPlainText(self.__info["remarks"]) |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
63 | if self.__info["pip"]: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
64 | self.pipLabel.setText(self.tr( |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
65 | "'eric-ide' was installed from PyPI using the pip" |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
66 | " command.")) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
67 | else: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
68 | self.pipLabel.hide() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
69 | if self.__info["guessed"]: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
70 | self.guessLabel.setText(self.tr( |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
71 | "The information shown in this dialog was guessed at" |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
72 | " the first start of eric.")) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
73 | else: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
74 | self.guessLabel.hide() |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
75 | if self.__info["edited"]: |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
76 | self.userProvidedLabel.setText(self.tr( |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
77 | "The installation information was provided by the user." |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
78 | )) |
7808
da107cd00f63
Install Information: added the installation date to the list of data.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7807
diff
changeset
|
79 | else: |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
80 | self.userProvidedLabel.hide() |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
81 | if self.__info["installed_on"]: |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
82 | self.installDateTimeLabel.setText( |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
83 | self.__info["installed_on"] if self.__info["installed_on"] |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
84 | else self.tr("unknown")) |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
85 | except EnvironmentError as err: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
86 | E5MessageBox.critical( |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
87 | self, |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
88 | self.tr("Load Install Information"), |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
89 | self.tr("<p>The file containing the install information could" |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
90 | " not be read.</p><p>Reason: {0}</p>""") |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
91 | .format(str(err)) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
92 | ) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
93 | self.__loaded = False |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
94 | self.__info = {} |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
95 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
96 | def wasLoaded(self): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
97 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
98 | Public method to check, if the install data was loaded. |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
99 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
100 | @return flag indicating the data was loaded |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
101 | @rtype bool |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
102 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
103 | return self.__loaded |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
104 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
105 | @pyqtSlot(bool) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
106 | def on_editButton_toggled(self, checked): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
107 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
108 | Private slot to switch the dialog into edit mode. |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
109 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
110 | @param checked flag giving the button check state |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
111 | @type bool |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
112 | """ |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
113 | self.installedFromEdit.setReadOnly(not checked) |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
114 | self.interpreteEdit.setReadOnly(not checked) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
115 | self.commandEdit.setReadOnly(not checked) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
116 | self.installPathEdit.setReadOnly(not checked) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
117 | self.remarksEdit.setReadOnly(not checked) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
118 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
119 | if checked: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
120 | self.__edited = True |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
121 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
122 | @pyqtSlot() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
123 | def on_saveButton_clicked(self): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
124 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
125 | Private slot handling the save button press. |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
126 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
127 | if self.__edited: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
128 | self.__saveData() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
129 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
130 | @pyqtSlot() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
131 | def reject(self): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
132 | """ |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
133 | Public slot handling the closing of the dialog. |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
134 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
135 | if self.__edited: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
136 | yes = E5MessageBox.yesNo( |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
137 | self, |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
138 | self.tr("Install Information"), |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
139 | self.tr("""The install information was edited. Unsaved""" |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
140 | """ changes will be lost. Save first?"""), |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
141 | yesDefault=True) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
142 | if yes: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
143 | self.__saveData() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
144 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
145 | super(InstallInfoDialog, self).reject() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
146 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
147 | def __saveData(self): |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
148 | """ |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
149 | Private method to save the data. |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
150 | """ |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
151 | if self.installedFromEdit.text() != self.__info["install_cwd"]: |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
152 | self.__info["install_cwd"] = self.installedFromEdit.text() |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
153 | self.__info["install_cwd_edited"] = True |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
154 | if self.interpreteEdit.text() != self.__info["exe"]: |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
155 | self.__info["exe"] = self.interpreteEdit.text() |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
156 | self.__info["exe_edited"] = True |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
157 | if self.commandEdit.text() != self.__info["argv"]: |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
158 | self.__info["argv"] = self.commandEdit.text() |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
159 | self.__info["argv_edited"] = True |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
160 | if self.installPathEdit.text() != self.__info["eric"]: |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
161 | self.__info["eric"] = self.installPathEdit.text() |
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
162 | self.__info["eric_edited"] = True |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
163 | self.__info["remarks"] = self.remarksEdit.toPlainText() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
164 | self.__info["edited"] = True |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
165 | |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
166 | infoFileName = Globals.getInstallInfoFilePath() |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
167 | try: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
168 | with open(infoFileName, "w") as infoFile: |
7809
f5a61d073100
Added information about the directory the installation was done from.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7808
diff
changeset
|
169 | json.dump(self.__info, infoFile, indent=2) |
7806
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
170 | self.__edited = False |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
171 | self.editButton.setChecked(False) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
172 | except EnvironmentError as err: |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
173 | E5MessageBox.critical( |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
174 | self, |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
175 | self.tr("Save Install Information"), |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
176 | self.tr("<p>The file containing the install information could" |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
177 | " not be written.</p><p>Reason: {0}</p>""") |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
178 | .format(str(err)) |
b346755b09a1
Main Window: added a dialog showing information about the installation process.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
179 | ) |